        :root {
            --primary: #00f3ff;
            --secondary: #7b00ff;
            --dark: #0a0a1a;
            --darker: #050510;
            --light: #f0f8ff;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(28, 0, 58, 0.4) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(0, 179, 255, 0.3) 0%, transparent 25%);
            min-height: 100vh;
        }

        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Header */
        .header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
        }

        .logo {
            font-family: 'Share Tech Mono', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .logo-dot {
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--primary);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            text-align: center;
            margin-bottom: 2rem;
        }

        /* Terms Content */
        .terms-content {
            background: rgba(10, 10, 26, 0.8);
            border: 1px solid rgba(0, 243, 255, 0.3);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            margin-bottom: 2rem;
        }

        .last-updated {
            text-align: center;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(0, 243, 255, 0.1);
            border-radius: 10px;
        }

        .section {
            margin-bottom: 3rem;
        }

        h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid rgba(0, 243, 255, 0.3);
            padding-bottom: 0.5rem;
        }

        h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin: 1.5rem 0 1rem 0;
        }

        p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        ul, ol {
            margin: 1rem 0;
            padding-left: 2rem;
        }

        li {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .highlight {
            background: rgba(0, 243, 255, 0.1);
            border-left: 4px solid var(--primary);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }

        .definition {
            background: rgba(123, 0, 255, 0.1);
            border: 1px solid rgba(123, 0, 255, 0.3);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .definition strong {
            color: var(--primary);
        }

        /* Navigation */
        .nav-toc {
            background: rgba(10, 10, 26, 0.8);
            border: 1px solid rgba(0, 243, 255, 0.3);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .nav-toc h3 {
            margin-top: 0;
            color: var(--primary);
        }

        .toc-list {
            list-style: none;
            padding: 0;
        }

        .toc-list li {
            margin-bottom: 0.5rem;
        }

        .toc-list a {
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            padding: 0.5rem;
            border-radius: 5px;
        }

        .toc-list a:hover {
            background: rgba(0, 243, 255, 0.1);
            color: var(--primary);
        }

        /* Acceptance Section */
        .acceptance-box {
            background: rgba(0, 243, 255, 0.1);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            margin: 3rem 0;
        }

        .acceptance-box h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1.1rem;
            border: 2px solid transparent;
            cursor: pointer;
            font-family: 'Exo 2', sans-serif;
            margin: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--darker);
            box-shadow: 0 4px 20px rgba(0, 243, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 243, 255, 0.4);
        }

        .btn-secondary {
            border-color: var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-secondary:hover {
            background: rgba(0, 243, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 1px solid rgba(0, 243, 255, 0.2);
        }

        .contact-info {
            margin-top: 1rem;
        }

        .contact-info a {
            color: var(--primary);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            h1 {
                font-size: 2rem;
            }

            .terms-content {
                padding: 1.5rem;
            }

            .logo {
                font-size: 2rem;
            }
        }

        /* Print Styles */
        @media print {
            body {
                background: white !important;
                color: black !important;
            }

            .terms-content {
                background: white !important;
                border: 1px solid #ccc !important;
            }

            h1, h2, h3 {
                color: black !important;
            }

            .btn {
                display: none !important;
            }

            #particles-js {
                display: none !important;
            }
        }

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--primary);
            color: var(--darker);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 20px rgba(0, 243, 255, 0.3);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 243, 255, 0.4);
        }

        /* Privacy Policy Specific Styles */
.gdpr-right {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.gdpr-right h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.data-protection-officer {
    background: rgba(0, 243, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.compliance-badge {
    display: inline-block;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--primary);
    margin: 0.5rem 0;
}