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

        :root {
            --bg-deep: #0a050f;
            --bg-card: rgba(30, 15, 45, 0.7);
            --primary: #ff2e88; /* Rabbit Pink */
            --secondary: #9d4edd; /* Magic Purple */
            --accent: #00f2ff; /* Neon Cyan */
            --text-main: #f8f9fa;
            --text-muted: #b0a8ba;
            --glass-border: rgba(255, 46, 136, 0.2);
            --gradient: linear-gradient(135deg, #ff2e88 0%, #9d4edd 100%);
            --header-bg: rgba(10, 5, 15, 0.9);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

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

        h1, h2, h3, h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #fff;
        }

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

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

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- Header --- */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--header-bg);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--glass-border);
            height: 80px;
            display: flex;
            align-items: center;
        }

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

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
        }

        .logo span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav__links {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .nav__links { display: none; }
        }

        .btn-cta {
            background: var(--gradient);
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 46, 136, 0.4);
        }

        /* --- Hero --- */
        .hero {
            padding: 120px 0 60px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 16px;
            line-height: 1.1;
        }

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

        /* --- Content Layout --- */
        .legal-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 48px;
            padding: 60px 0;
        }

        @media (max-width: 1024px) {
            .legal-layout { grid-template-columns: 1fr; }
            .sidebar { display: none; }
        }

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

        .sidebar h4 {
            margin-bottom: 20px;
            font-size: 0.9rem;
            text-transform: uppercase;
            color: var(--primary);
            letter-spacing: 0.1em;
        }

        .sidebar ul {
            list-style: none;
        }

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

        .sidebar a {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .sidebar a:hover {
            color: #fff;
            padding-left: 5px;
        }

        /* --- Main Content --- */
        .content-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 48px;
            backdrop-filter: blur(8px);
        }

        @media (max-width: 768px) {
            .content-card { padding: 24px; }
        }

        section {
            margin-bottom: 40px;
        }

        section:last-child {
            margin-bottom: 0;
        }

        section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        p {
            margin-bottom: 20px;
            color: var(--text-muted);
        }

        strong {
            color: #fff;
        }

        .highlight-box {
            background: rgba(255, 46, 136, 0.1);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }

        .highlight-box p {
            margin-bottom: 0;
            color: var(--text-main);
            font-weight: 500;
        }

        .list-styled {
            list-style: none;
            margin-bottom: 24px;
        }

        .list-styled li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            color: var(--text-muted);
        }

        .list-styled li::before {
            content: '🐰';
            position: absolute;
            left: 0;
            font-size: 0.9rem;
        }

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

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

        @media (max-width: 768px) {
            .footer__grid { grid-template-columns: 1fr; gap: 40px; }
        }

        .footer__about p {
            max-width: 400px;
            margin-top: 16px;
        }

        .footer__links h4 {
            margin-bottom: 24px;
        }

        .footer__links ul {
            list-style: none;
        }

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

        .footer__bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .badge-18 {
            display: inline-block;
            border: 2px solid #ff4d4d;
            color: #ff4d4d;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            line-height: 28px;
            text-align: center;
            font-weight: 800;
            margin-right: 12px;
        }

        /* Float Button */
        .btn-sticky {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

._extracted-style-paxU { border-left-color: var(--accent); }

._extracted-style-ayi- { margin-top: 20px; }

._extracted-style-0ry4 { font-size: 0.8rem; vertical-align: middle; }

._extracted-style--abA { margin-top: 10px; font-size: 0.75rem; }