:root {
            --bg-dark: #0b0f19;
            --bg-card: rgba(23, 32, 53, 0.7);
            --accent-cyan: #00f2ff;
            --accent-blue: #0076ff;
            --text-main: #e2e8f0;
            --text-dim: #94a3b8;
            --text-heading: #ffffff;
            --gradient-primary: linear-gradient(135deg, #00f2ff 0%, #0076ff 100%);
            --header-blur: rgba(11, 15, 25, 0.85);
            --border-glow: rgba(0, 242, 255, 0.2);
            --danger: #ff4d4d;
            --success: #10b981;
            --shadow-glow: 0 0 20px rgba(0, 242, 255, 0.15);
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        h1, h2, h3, h4 {
            font-family: 'Lexend', sans-serif;
            color: var(--text-heading);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

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

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

        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }

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

        /* HEADER */
        .headersite-jfIw0W-main {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--header-blur);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
        }

        .headersite-jfIw0W-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logosite-jfIw0W-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--text-heading);
            font-family: 'Lexend', sans-serif;
        }

        .logosite-jfIw0W-icon {
            font-size: 1.8rem;
        }

        .logosite-jfIw0W-span {
            color: var(--accent-cyan);
        }

        .navsite-jfIw0W-desktop {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .navsite-jfIw0W-desktop a {
            color: var(--text-main);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .ctasite-jfIw0W-header {
            background: var(--gradient-primary);
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-glow);
            transition: 0.3s;
        }

        .ctasite-jfIw0W-header:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .hamburger__cls {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1100;
        }

        .hamburger__cls span {
            width: 25px;
            height: 2px;
            background: white;
            transition: 0.3s;
        }

        /* HERO SECTION */
        .herosite-jfIw0W-privacy {
            padding: 160px 0 80px;
            text-align: center;
            background: radial-gradient(circle at top, rgba(0, 118, 255, 0.15) 0%, transparent 60%);
        }

        .herosite-jfIw0W-privacy h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .herosite-jfIw0W-privacy p {
            font-size: 1.2rem;
            color: var(--text-dim);
            max-width: 700px;
            margin: 0 auto;
        }

        .badgesite-jfIw0W-date {
            display: inline-block;
            background: rgba(0, 242, 255, 0.1);
            color: var(--accent-cyan);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 1px solid var(--border-glow);
        }

        /* CONTENT LAYOUT */
        .contentsite-jfIw0W-grid {
            padding: 60px 0;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 60px;
        }

        .sidebarsite-jfIw0W-nav {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .sidebarsite-jfIw0W-nav ul {
            list-style: none;
        }

        .sidebarsite-jfIw0W-nav li {
            margin-bottom: 0.8rem;
        }

        .sidebarsite-jfIw0W-nav a {
            color: var(--text-dim);
            font-size: 0.9rem;
            display: block;
            padding: 8px 16px;
            border-left: 2px solid transparent;
        }

        .sidebarsite-jfIw0W-nav a:hover, .sidebarsite-jfIw0W-nav a.active {
            color: var(--accent-cyan);
            border-left-color: var(--accent-cyan);
            background: linear-gradient(90deg, rgba(0, 242, 255, 0.05) 0%, transparent 100%);
        }

        /* POLICY ARTICLES */
        .policysite-jfIw0W-body {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 60px;
            backdrop-filter: blur(10px);
        }

        .policysite-jfIw0W-section {
            margin-bottom: 4rem;
        }

        .policysite-jfIw0W-section h2 {
            font-size: 1.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }

        .policysite-jfIw0W-section p {
            margin-bottom: 1.2rem;
            color: var(--text-main);
        }

        .policysite-jfIw0W-section ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .policysite-jfIw0W-section li {
            margin-bottom: 0.8rem;
        }

        .policysite-jfIw0W-card {
            background: rgba(0, 0, 0, 0.2);
            padding: 24px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin: 2rem 0;
        }

        .iconsite-jfIw0W-box {
            font-size: 2rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        /* TABLE */
        .tablesite-jfIw0W-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            text-align: left;
        }

        th {
            background: rgba(255, 255, 255, 0.05);
            padding: 16px;
            font-weight: 600;
            color: var(--accent-cyan);
        }

        td {
            padding: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }

        /* CALL TO ACTION */
        .ctasite-jfIw0W-footer_section {
            text-align: center;
            padding: 80px 0;
            background: linear-gradient(0deg, rgba(0, 118, 255, 0.1) 0%, transparent 100%);
        }

        .ctasite-jfIw0W-btn_big {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--gradient-primary);
            color: white;
            padding: 18px 48px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
        }

        .ctasite-jfIw0W-btn_big:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4);
        }

        /* FOOTER */
        footer {
            background: #05070a;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .footersite-jfIw0W-brand p {
            margin-top: 1rem;
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .footersite-jfIw0W-titles {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footersite-jfIw0W-links {
            list-style: none;
        }

        .footersite-jfIw0W-links li {
            margin-bottom: 0.8rem;
        }

        .footersite-jfIw0W-links a {
            color: var(--text-dim);
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .footersite-jfIw0W-links a:hover {
            color: var(--accent-cyan);
            padding-left: 5px;
        }

        .footersite-jfIw0W-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-dim);
            font-size: 0.8rem;
        }

        .agesite-jfIw0W-tag {
            border: 2px solid var(--danger);
            color: var(--danger);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 800;
            margin-right: 15px;
        }

        /* MOBILE NAV */
        .mobilesite-jfIw0W-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: var(--bg-dark);
            z-index: 1050;
            padding: 100px 40px;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            transition: 0.4s ease;
            box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        }

        .mobilesite-jfIw0W-menu.active {
            right: 0;
        }

        .mobilesite-jfIw0W-menu a {
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .herosite-jfIw0W-privacy h1 { font-size: 2.8rem; }
            .contentsite-jfIw0W-grid { grid-template-columns: 1fr; }
            .sidebarsite-jfIw0W-nav { display: none; }
            .footersite-jfIw0W-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .navsite-jfIw0W-desktop { display: none; }
            .hamburger__cls { display: flex; }
            .herosite-jfIw0W-privacy { padding: 120px 0 40px; }
            .herosite-jfIw0W-privacy h1 { font-size: 2.2rem; }
            .policysite-jfIw0W-body { padding: 30px 20px; }
            .footersite-jfIw0W-grid { grid-template-columns: 1fr; text-align: center; }
            .footersite-jfIw0W-bottom { flex-direction: column; gap: 20px; text-align: center; }
        }

._extracted-style--QvW { border-left: 4px solid var(--danger); }

._extracted-style-KB5D { margin-bottom: 2rem; color: var(--text-dim); }

._extracted-style-wyMa { display: flex; align-items: center; margin-bottom: 15px; }

._extracted-style-fWjp { font-size: 0.8rem; }

._extracted-style-Qkxv { font-size: 0.8rem; color: var(--text-dim); }