@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Plus+Jakarta+Sans:wght@400;500;700&display=swap');

        :root {
            --bg-deep: #0a0a0c;
            --bg-card: rgba(255, 255, 255, 0.03);
            --accent-primary: #ef4444;
            --accent-secondary: #f97316;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-neon: 0 0 20px rgba(239, 68, 68, 0.2);
            --header-h: 80px;
            --container: 1100px;
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: var(--bg-deep);
            color: var(--text-main);
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Outfit', sans-serif;
            color: white;
            line-height: 1.2;
        }

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

        a:hover {
            color: var(--accent-secondary);
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Nav */
        header {
            height: var(--header-h);
            background: rgba(10, 10, 12, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--glass-border);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        .header__wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
        }

        .logo span {
            color: var(--accent-primary);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        nav a {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .nav__cta {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            padding: 10px 24px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-neon);
        }

        /* Hero */
        .hero {
            padding: 160px 0 80px;
            text-align: center;
            background: radial-gradient(circle at top center, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 16px;
        }

        .hero p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Legal Content */
        .legal {
            padding-bottom: 100px;
        }

        .legal__grid {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 60px;
        }

        /* Sidebar sticky links */
        .legal__sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .legal__sidebar ul {
            list-style: none;
            border-left: 1px solid var(--glass-border);
        }

        .legal__sidebar li a {
            display: block;
            padding: 12px 20px;
            color: var(--text-muted);
            font-size: 0.9rem;
            border-left: 2px solid transparent;
            margin-left: -1px;
        }

        .legal__sidebar li a:hover,
        .legal__sidebar li a.active {
            color: var(--accent-primary);
            border-left-color: var(--accent-primary);
        }

        /* Article body */
        article section {
            margin-bottom: 48px;
            scroll-margin-top: 120px;
        }

        article section h2 {
            font-size: 1.75rem;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        article section h2::before {
            content: '';
            width: 4px;
            height: 24px;
            background: var(--accent-primary);
            border-radius: 2px;
        }

        article p, article ul {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        article ul {
            padding-left: 20px;
        }

        article li {
            margin-bottom: 12px;
        }

        .card-bg {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            padding: 32px;
            border-radius: 20px;
            margin-top: 24px;
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--glass-border);
            padding: 80px 0 40px;
            background: #050507;
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer__brand p {
            color: var(--text-muted);
            margin: 20px 0;
            max-width: 300px;
        }

        .footer__links h4 {
            margin-bottom: 24px;
            font-size: 1.1rem;
        }

        .footer__links ul {
            list-style: none;
        }

        .footer__links li {
            margin-bottom: 12px;
        }

        .footer__links a {
            color: var(--text-muted);
        }

        .footer__bottom {
            padding-top: 40px;
            border-top: 1px solid var(--glass-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .age-badge {
            border: 1px solid #ff4444;
            color: #ff4444;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: bold;
            display: inline-block;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 1024px) {
            .legal__grid {
                grid-template-columns: 1fr;
            }
            .legal__sidebar {
                display: none;
            }
            .footer__grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: var(--header-h);
                left: 0;
                width: 100%;
                background: var(--bg-deep);
                padding: 40px 24px;
                border-bottom: 1px solid var(--glass-border);
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                gap: 24px;
            }

            .hamburger {
                display: block;
            }

            .footer__grid {
                grid-template-columns: 1fr;
            }

            .footer__bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

._extracted-style-OhgY { margin-top: 20px; font-size: 0.8rem; color: var(--text-muted); }

._extracted-style-T8va { border-left: 4px solid var(--accent-primary); }