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

        :root {
            --bg-deep: #0a0a0b;
            --bg-card: rgba(30, 30, 35, 0.7);
            --primary-gold: #f3c35b;
            --primary-red: #d32f2f;
            --accent-green: #10b981;
            --text-main: #e2e8f0;
            --text-muted: #94a3b8;
            --white: #ffffff;
            --border-glow: rgba(243, 195, 91, 0.2);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --container-max: 1100px;
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline-color: var(--primary-gold);
        }

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

        /* Typography */
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-gold);
            line-height: 1.2;
        }

        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--white);
        }

        /* Layout */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 10, 11, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-glow);
            padding: 1rem 0;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--white);
        }

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

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

        .btn-cta {
            background: linear-gradient(135deg, var(--primary-gold), #b38a2d);
            color: #000 !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(243, 195, 91, 0.3);
        }

        /* Hero */
        .legal-hero {
            padding: 6rem 0 4rem;
            text-align: center;
            background: radial-gradient(circle at center, rgba(211, 47, 47, 0.15) 0%, transparent 70%);
        }

        .legal-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .update-date {
            color: var(--text-muted);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Terms Content */
        .content-section {
            padding: 4rem 0;
        }

        .terms-grid {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 4rem;
        }

        .sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .sidebar ul {
            list-style: none;
            border-left: 2px solid var(--bg-card);
        }

        .sidebar li a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .sidebar li a:hover, .sidebar li a.active {
            color: var(--primary-gold);
            border-left: 2px solid var(--primary-gold);
            margin-left: -2px;
            background: rgba(243, 195, 91, 0.05);
        }

        article {
            background: var(--bg-card);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .legal-block {
            margin-bottom: 3rem;
        }

        .legal-block:last-child { margin-bottom: 0; }

        .legal-block h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .legal-block h2::before {
            content: '';
            width: 20px;
            height: 2px;
            background: var(--primary-red);
            display: block;
        }

        .legal-block p {
            margin-bottom: 1.2rem;
            color: var(--text-main);
        }

        .alert-box {
            background: rgba(211, 47, 47, 0.1);
            border-left: 4px solid var(--primary-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }

        .alert-box strong { color: var(--primary-red); }

        ul.legal-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        ul.legal-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
        }

        ul.legal-list li::before {
            content: '•';
            color: var(--primary-gold);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Contact Section */
        .contact-card {
            background: linear-gradient(145deg, rgba(30, 30, 35, 0.9), rgba(15, 15, 20, 0.9));
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 4rem;
            border: 1px solid var(--border-glow);
        }

        /* Footer */
        footer {
            background: #050505;
            padding: 5rem 0 2rem;
            border-top: 1px solid var(--bg-card);
            margin-top: 5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand p {
            margin-top: 1rem;
            color: var(--text-muted);
            max-width: 400px;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li { margin-bottom: 0.75rem; }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .age-badge {
            background: var(--primary-red);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-weight: 700;
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .terms-grid { grid-template-columns: 1fr; }
            .sidebar { display: none; }
            .legal-hero h1 { font-size: 2.5rem; }
        }

        @media (max-width: 768px) {
            nav { display: none; }
            .mobile-toggle { display: block; }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
            article { padding: 1.5rem; }
        }

._extracted-style-nfD0 { display:none; position: fixed; inset: 0; background: var(--bg-deep); z-index: 2000; padding: 2rem; }

._extracted-style-Bpq8 { position: absolute; right: 2rem; top: 1.5rem; background: none; border: none; color: white; font-size: 2rem; }

._extracted-style-ZV-e { list-style: none; margin-top: 4rem; display: flex; flex-direction: column; gap: 2rem; font-size: 1.5rem; text-align: center; }

._extracted-style-PUel { width: 100%; }