/* ============================================================
   Cheers Go — Cyberpunk Neon
   Sistema de diseño de docs/diseno/DESIGN.md, el mismo que usan
   las apps: magenta -> cian sobre negro, glassmorphism y glow.
   ============================================================ */

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

:root {
    /* Paleta cyberpunk */
    --neon-cyan: #00E5FF;
    --neon-magenta: #FF00FF;
    --gradient-brand: linear-gradient(135deg, var(--neon-magenta), var(--neon-cyan));
    --neon-glow: rgba(0, 229, 255, 0.4);
    --magenta-glow: rgba(255, 0, 255, 0.3);

    /* Superficies */
    --bg-primary: #050505;
    --bg-secondary: #0F0F14;
    --bg-card: #0F0F14;
    --surface-glass: rgba(15, 15, 20, 0.4);
    --text-primary: #FFFFFF;
    --text-secondary: #A0AAB2;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Color legible SOBRE una superficie de acento */
    --on-accent: #050505;

    /* Alias de la paleta vieja: privacy.html y terms.html siguen
       usándolos, así heredan la identidad nueva sin tocarlos. */
    --accent-orange: var(--neon-cyan);
    --accent-turquoise: var(--neon-cyan);
    --accent-blue: var(--neon-magenta);

    /* Tipografía */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', 'Outfit', var(--font-family);
    --font-brush: 'Dancing Script', 'Permanent Marker', cursive;

    /* Radios */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
}

[data-theme="light"] {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F4F5F7;
    --bg-card: #FFFFFF;
    --surface-glass: rgba(255, 255, 255, 0.65);
    --text-primary: #0A0A0F;
    --text-secondary: #5A6570;
    --border-color: rgba(10, 10, 15, 0.12);
    --on-accent: #FFFFFF;
    /* En claro el cian puro no contrasta contra blanco: se oscurece. */
    --neon-cyan: #0090A8;
    --neon-magenta: #C400C4;
    --neon-glow: rgba(0, 144, 168, 0.25);
    --magenta-glow: rgba(196, 0, 196, 0.2);
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Palabra de marca en cursiva neón. Reservada para la marca,
   nunca para UI (regla del design system). */
.brand-word {
    font-family: var(--font-brush);
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 24px var(--neon-glow);
}

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

/* ---------- Header ---------- */
.header {
    background-color: color-mix(in srgb, var(--bg-primary) 80%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 12px var(--neon-glow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: var(--neon-cyan);
}

/* ---------- Theme toggle ---------- */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--r-sm);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: var(--text-primary);
    padding: 0;
}

.theme-toggle:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 16px var(--neon-glow);
}

.theme-icon {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-sun { display: block; }
.theme-icon-moon { display: none; }
[data-theme="light"] .theme-icon-sun { display: none; }
[data-theme="light"] .theme-icon-moon { display: block; }

/* ---------- Language switcher ---------- */
.lang-switcher {
    display: flex;
    gap: 4px;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--r-sm);
    padding: 4px;
}

.lang-btn {
    padding: 0.4rem 0.85rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active,
.lang-btn[aria-pressed="true"] {
    background: var(--gradient-brand);
    color: #FFFFFF;
    box-shadow: 0 0 14px var(--neon-glow);
}

/* ---------- Botones ---------- */
.btn {
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font-family);
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #FFFFFF;
}

.btn-primary:hover {
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.6), 0 0 48px rgba(255, 0, 255, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-glow);
    transform: translateY(-1px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

/* ---------- Badges de las tiendas ---------- */
.store-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    text-decoration: none;
    min-width: 180px;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

[data-theme="light"] .store-badge {
    border-color: rgba(0, 0, 0, 0.2);
}

.store-badge:hover {
    box-shadow: 0 0 20px var(--neon-glow);
    transform: translateY(-2px);
}

.store-badge svg {
    flex-shrink: 0;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}

.store-badge-small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.store-badge-big {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
    padding: 90px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Luces neón detrás del contenido: es lo que el blur de las
   glass-card dispersa para lograr el "frosted neon". */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    background: var(--neon-magenta);
    top: -160px;
    left: -120px;
}

.hero::after {
    background: var(--neon-cyan);
    bottom: -200px;
    right: -120px;
}

[data-theme="light"] .hero::before,
[data-theme="light"] .hero::after {
    opacity: 0.18;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-icon {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 108px;
    height: 108px;
    object-fit: contain;
    border-radius: 26px;
    filter: drop-shadow(0 0 32px var(--neon-glow));
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.title-accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* ---------- Secciones ---------- */
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
}

/* Tarjeta de vidrio: la superficie base de todo el sitio */
.glass-card {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--r-lg);
    padding: 32px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.glass-card:hover {
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 0 32px var(--neon-glow);
    transform: translateY(-6px);
}

/* ---------- Características ---------- */
.why-choose-us {
    padding: 90px 0;
    background-color: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 34px 28px;
    border-radius: var(--r-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 0 32px var(--neon-glow);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-md);
    color: var(--neon-cyan);
}

.feature-icon-orange,
.feature-icon-blue,
.feature-icon-green {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
}

.feature-icon-blue {
    background: rgba(255, 0, 255, 0.08);
    border-color: rgba(255, 0, 255, 0.25);
    color: var(--neon-magenta);
}

[data-theme="light"] .feature-icon-orange,
[data-theme="light"] .feature-icon-green {
    background: rgba(0, 144, 168, 0.1);
}

[data-theme="light"] .feature-icon-blue {
    background: rgba(196, 0, 196, 0.1);
}

.feature-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---------- Categorías ---------- */
.categories {
    padding: 90px 0;
    background-color: var(--bg-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 255, 0.35);
    box-shadow: 0 0 32px var(--magenta-glow);
}

.category-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-md);
    background: rgba(255, 0, 255, 0.08);
    border: 1px solid rgba(255, 0, 255, 0.25);
    color: var(--neon-magenta);
}

[data-theme="light"] .category-icon {
    background: rgba(196, 0, 196, 0.1);
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.category-description {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ---------- Pasos ---------- */
.how-it-works {
    padding: 90px 0;
    background-color: var(--bg-primary);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 auto 20px;
    background: var(--gradient-brand);
    box-shadow: 0 0 28px var(--neon-glow);
    border: none;
}

.step-number-orange,
.step-number-turquoise {
    background: var(--gradient-brand);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---------- Bloque para negocios ---------- */
.business {
    padding: 90px 0;
    background-color: var(--bg-secondary);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.business-card {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.business-card:hover {
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 0 32px var(--neon-glow);
}

.business-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.business-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.business-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---------- Descarga ---------- */
.download {
    padding: 90px 0;
    background-color: var(--bg-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: var(--neon-magenta);
    filter: blur(140px);
    opacity: 0.22;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

[data-theme="light"] .download::before {
    opacity: 0.1;
}

.download-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.download-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 22px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 28px var(--neon-glow));
}

/* ---------- CTA final ---------- */
.final-cta {
    padding: 90px 0;
    background-color: var(--bg-secondary);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.cta-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--bg-primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

[data-theme="light"] .footer {
    background-color: var(--bg-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badges .store-badge {
    min-width: 0;
    padding: 8px 14px;
}

.footer-badges .store-badge-big {
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.footer-legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--neon-cyan);
}

/* ---------- Responsive ---------- */
@media (max-width: 968px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px 24px;
        margin-top: 16px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 34px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 30px;
    }

    .cta-title {
        font-size: 30px;
    }

    .features-grid,
    .categories-grid,
    .steps-container,
    .business-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 14px 18px;
    }

    .nav-link {
        font-size: 14px;
    }

    .header-actions {
        gap: 10px;
    }

    .login-link {
        font-size: 14px;
    }

    .btn-small {
        padding: 8px 16px;
        font-size: 13px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .lang-switcher {
        padding: 2px;
    }

    .lang-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
    }

    .store-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .store-badge {
        justify-content: center;
    }

    .why-choose-us,
    .how-it-works,
    .categories,
    .business,
    .download,
    .final-cta {
        padding: 60px 0;
    }
}

/* ============================================================
   Páginas legales — privacy.html y terms.html usan solo estas
   clases, sin <style> propio. Heredan la paleta por los alias
   --accent-* definidos arriba.
   ============================================================ */
.privacy-policy {
    padding: 40px 0 80px;
    background-color: var(--bg-primary);
    min-height: 100vh;
}

.privacy-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.privacy-title-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.privacy-icon {
    flex-shrink: 0;
    color: var(--neon-cyan);
}

.privacy-main-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.privacy-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.privacy-date {
    font-size: 15px;
    color: var(--text-secondary);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.privacy-section {
    margin-bottom: 48px;
}

.section-header-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--neon-cyan);
}

.section-header-with-icon svg {
    flex-shrink: 0;
}

.section-title-uppercase {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-content-card {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.privacy-subheading {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.privacy-subheading:first-child {
    margin-top: 0;
}

.privacy-list-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-list li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 20px;
}

.privacy-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.verification-consent {
    background-color: rgba(0, 229, 255, 0.08);
    border-left: 4px solid var(--neon-cyan);
    padding: 20px 24px;
    border-radius: var(--r-sm);
    margin-top: 24px;
}

.verification-consent .privacy-list-title {
    margin-top: 0;
    color: var(--text-primary);
}

.no-sell-notice {
    background-color: rgba(255, 0, 255, 0.08);
    border-left: 4px solid var(--neon-magenta);
    padding: 20px 24px;
    border-radius: var(--r-sm);
    margin-bottom: 24px;
}

.no-sell-notice .privacy-list-title {
    margin-top: 0;
    color: var(--text-primary);
}

.privacy-final-notice {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 32px var(--neon-glow);
    border-radius: var(--r-lg);
    padding: 32px;
    margin-top: 48px;
}

.final-notice-content {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.final-notice-date,
.final-notice-version,
.final-notice-category {
    color: var(--text-primary);
    font-size: 15px;
    margin-bottom: 8px;
}

.final-notice-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.final-notice-text strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-main-title {
        font-size: 34px;
    }

    .section-title-uppercase {
        font-size: 22px;
    }

    .privacy-content-card {
        padding: 24px;
    }

    .privacy-header {
        flex-direction: column;
    }

    .btn-back {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .privacy-main-title {
        font-size: 26px;
    }

    .privacy-subtitle {
        font-size: 15px;
    }

    .privacy-date {
        font-size: 14px;
    }

    .section-title-uppercase {
        font-size: 19px;
    }

    .privacy-content-card {
        padding: 20px;
    }

    .privacy-subheading {
        font-size: 19px;
    }

    .privacy-list-title {
        font-size: 15px;
    }

    .privacy-text,
    .privacy-list li {
        font-size: 14px;
    }
}
