:root {
            --p-base: #C700FF;
            --b-base: #2A41E5;
            --dark: #0A0A0E;
            --card-bg: rgba(255, 255, 255, 0.02);
            --glass-border: rgba(255, 255, 255, 0.05);
            --text-light: #F3F4F6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--dark);
            color: var(--text-light);
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(199, 0, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(42, 65, 229, 0.05) 0%, transparent 40%);
        }

        header {
            border-bottom: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-box {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
        }

        .logo-box img {
            width: 32px;
            height: 32px;
        }

        .logo-box h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .logo-box span {
            background: linear-gradient(135deg, var(--p-base) 0%, var(--b-base) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .back-btn {
            color: white;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            opacity: 0.7;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .back-btn:hover {
            opacity: 1;
            transform: translateX(-2px);
        }

        .legal-container {
            max-width: 800px;
            margin: 4rem auto 8rem auto;
            padding: 0 5%;
        }

        .legal-card {
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            padding: 3rem;
            border-radius: 28px;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .last-updated {
            font-size: 0.85rem;
            opacity: 0.5;
            margin-bottom: 2.5rem;
        }

        h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: white;
            border-bottom: 1px solid var(--glass-border);
            padding-bottom: 0.5rem;
        }

        p {
            font-size: 0.95rem;
            line-height: 1.7;
            opacity: 0.75;
            margin-bottom: 1.5rem;
        }

        ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        li {
            font-size: 0.95rem;
            line-height: 1.7;
            opacity: 0.75;
            margin-bottom: 0.5rem;
        }

        .alert-box {
            background: rgba(199, 0, 255, 0.05);
            border: 1px solid rgba(199, 0, 255, 0.2);
            padding: 1.2rem;
            border-radius: 16px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        footer {
            border-top: 1px solid var(--glass-border);
            padding: 3rem 5%;
            text-align: center;
            font-size: 0.8rem;
            opacity: 0.4;
        }