        :root {
            --bg-primary: #0a0e27;
            --bg-secondary: #151935;
            --bg-card: rgba(255, 255, 255, 0.03);
            --bg-card-hover: rgba(255, 255, 255, 0.06);
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            /* --accent-primary: #3b82f6;
            --accent-secondary: #60a5fa; */
            --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
            --border-color: rgba(255, 255, 255, 0.1);
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
            --header-height: 70px;
            --max-width: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
            animation: gradientShift 20s ease infinite;
        }

        /* Subtle transform-based animation to avoid sliding */
        @keyframes gradientShift {
            0% {
                transform: scale(1) translateX(0);
                opacity: 1;
            }

            50% {
                transform: scale(1.5) translateX(10px);
                opacity: 0.9;
            }

            100% {
                transform: scale(1) translateX(0);
                opacity: 1;
            }
        }

        /* Header with glassmorphism */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-height);
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            height: 60px;
            background: rgba(10, 14, 39, 0.95);
        }

        .header-content {
            max-width: var(--max-width);
            margin: 0 auto;
            height: 100%;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--text-primary);
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        /* Main content */
        main {
            margin-top: var(--header-height);
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
        }

        /* Legal content container */
        .legal-container {
            max-width: 800px;
            width: 100%;
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            animation: fadeInUp 0.8s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .legal-container h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 3rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .legal-container h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2.5rem 0 1rem;
            color: var(--text-primary);
            position: relative;
            padding-left: 1rem;
        }

        .legal-container h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        .legal-container h2:first-of-type {
            margin-top: 0;
        }

        .legal-container h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
            color: var(--accent-secondary);
        }

        .legal-container p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .legal-container address {
            font-style: normal;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: rgba(59, 130, 246, 0.05);
            border-left: 3px solid var(--accent-primary);
            border-radius: 8px;
        }

        .legal-container strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .legal-container a {
            color: var(--accent-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .legal-container a:hover {
            color: var(--accent-primary);
            text-decoration: underline;
        }

        .update-info {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .update-info time {
            font-family: 'JetBrains Mono', monospace;
            color: var(--accent-secondary);
        }

        /* Footer */
        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 2rem;
            text-align: center;
            color: var(--text-secondary);
            position: relative;
            z-index: 2;
        }

        footer a {
            color: var(--accent-secondary);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        footer a:hover {
            opacity: 0.8;
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }



        /* inter-700 - latin */
        @font-face {
            font-display: swap;
            /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Inter';
            font-style: normal;
            font-weight: 700;
            src: url('../fonts/inter-v19-latin-700.woff2') format('woff2');
            /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }


        /* jetbrains-mono-regular - latin */
        @font-face {
            font-display: swap;
            /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'JetBrains Mono';
            font-style: normal;
            font-weight: 400;
            src: url('../fonts/jetbrains-mono-v23-latin-regular.woff2') format('woff2');
            /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }

        /* jetbrains-mono-600 - latin */
        @font-face {
            font-display: swap;
            /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'JetBrains Mono';
            font-style: normal;
            font-weight: 600;
            src: url('../fonts/jetbrains-mono-v23-latin-600.woff2') format('woff2');
            /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }


        /* space-grotesk-regular - latin */
        @font-face {
            font-display: swap;
            /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Space Grotesk';
            font-style: normal;
            font-weight: 400;
            src: url('../fonts/space-grotesk-v21-latin-regular.woff2') format('woff2');
            /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }

        /* space-grotesk-500 - latin */
        @font-face {
            font-display: swap;
            /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Space Grotesk';
            font-style: normal;
            font-weight: 500;
            src: url('../fonts/space-grotesk-v21-latin-500.woff2') format('woff2');
            /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }

        /* space-grotesk-700 - latin */
        @font-face {
            font-display: swap;
            /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Space Grotesk';
            font-style: normal;
            font-weight: 700;
            src: url('../fonts/space-grotesk-v21-latin-700.woff2') format('woff2');
            /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }

            nav {
                position: fixed;
                top: var(--header-height);
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - var(--header-height));
                background: var(--bg-secondary);
                padding: 2rem;
                transition: right 0.3s ease;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 2rem;
                align-items: flex-start;
            }

            .legal-container {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }

            .legal-container h1 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .legal-container h2 {
                font-size: 1.3rem;
            }

            main {
                padding: 2rem 1rem;
            }
        }