/* ===== TEZ888 LANDING PAGE STYLES ===== */
/* Version: 1.0 */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #E11E86;
    --primary-hover: #ff3399;
    --primary-glow: rgba(225, 30, 134, 0.5);
    --background: #080A52;
    --background-dark: #050730;
    --surface: #0d1066;
    --surface-glass: rgba(8, 10, 82, 0.95);
    --text: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --accent: #FAE9B3;
    --accent-dark: #640A56;
    --border: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(225, 30, 134, 0.3);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--background);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container { padding: 0 24px; }
}

.accent-text { color: var(--primary); }
.cream-text { color: var(--accent); }

.section-padding {
    padding: 48px 0;
}

@media (min-width: 768px) {
    .section-padding { padding: 80px 0; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 48px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #E11E86 0%, #ff3399 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(225, 30, 134, 0.4);
}

.btn-primary:hover, .btn-primary:active {
    box-shadow: 0 6px 28px rgba(225, 30, 134, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover, .btn-outline:active {
    background: rgba(250, 233, 179, 0.1);
}

.btn-large {
    padding: 16px 36px;
    font-size: 15px;
    min-height: 52px;
}

@media (max-width: 480px) {
    .btn { padding: 12px 20px; font-size: 13px; }
    .btn-large { padding: 14px 28px; font-size: 14px; }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
}

@media (min-width: 768px) {
    .logo { font-size: 28px; }
}

.header-cta {
    display: flex;
    gap: 8px;
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 12px;
    min-height: 40px;
}

@media (max-width: 480px) {
    .header-cta .btn-outline { display: none; }
    .header-cta .btn { padding: 10px 16px; }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,10,82,0.7) 0%, rgba(8,10,82,0.9) 50%, var(--background) 100%);
}

.hero-content {
    text-align: center;
    max-width: 700px;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(225, 30, 134, 0.2);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

@media (min-width: 480px) {
    .hero h1 { font-size: 40px; }
}

@media (min-width: 768px) {
    .hero h1 { font-size: 52px; }
}

@media (min-width: 1024px) {
    .hero h1 { font-size: 60px; }
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 17px; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

@media (min-width: 768px) {
    .stat-number { font-size: 36px; }
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .stat-label { font-size: 12px; }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: var(--surface);
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 30, 134, 0.15);
    border-radius: 10px;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.trust-text {
    font-size: 12px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .trust-text { font-size: 13px; }
}

/* ===== GAMES SECTION ===== */
.games-section {
    background: var(--background);
    position: relative;
}

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

@media (min-width: 768px) {
    .section-header { margin-bottom: 48px; }
}

.section-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .section-header h2 { font-size: 32px; }
}

.section-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }
}

.game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/10;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.game-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(225, 30, 134, 0.25);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover img {
    transform: scale(1.08);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(8,10,82,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.game-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
    color: #fff;
}

.game-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.game-card-stats {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.game-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--accent);
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--background);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.step-card {
    text-align: center;
    padding: 20px 12px;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.step-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.step-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== INTERACTIVE STEPS - ICON BASED ===== */
.steps-interactive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
}

@media (min-width: 640px) {
    .steps-interactive {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-interactive {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.step-interactive-card {
    position: relative;
    background: linear-gradient(145deg, rgba(13, 16, 102, 0.8) 0%, rgba(8, 10, 82, 0.95) 100%);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.step-interactive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step-interactive-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(225, 30, 134, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-interactive-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(225, 30, 134, 0.25);
}

.step-interactive-card:hover::before {
    transform: scaleX(1);
}

.step-interactive-card:hover::after {
    opacity: 1;
}

.step-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    z-index: 1;
}

.step-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(225, 30, 134, 0.2) 0%, rgba(100, 10, 86, 0.3) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.step-interactive-card:hover .step-icon-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    transform: rotate(45deg) scale(1.1);
}

.step-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.step-interactive-card:hover .step-icon {
    color: #fff;
    transform: scale(1.1);
}

.step-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(225, 30, 134, 0.4);
}

.step-info {
    position: relative;
    z-index: 1;
}

.step-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
    transition: color 0.3s ease;
}

.step-interactive-card:hover .step-info h3 {
    color: var(--primary);
}

.step-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.step-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.step-interactive-card:hover .step-cta {
    opacity: 1;
    transform: translateY(0);
}

.step-cta i {
    transition: transform 0.3s ease;
}

.step-interactive-card:hover .step-cta i {
    transform: translateX(4px);
}

@media (min-width: 1024px) {
    .steps-interactive::before {
        content: '';
        position: absolute;
        top: 72px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--border-accent), var(--border-accent), transparent);
        z-index: 0;
    }
}

/* ===== BONUS SECTION ===== */
.bonus-section {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.bonus-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px;
    background: linear-gradient(135deg, rgba(100, 10, 86, 0.4) 0%, rgba(13, 16, 102, 0.6) 100%);
    border: 1px solid var(--border-accent);
    border-radius: 20px;
    align-items: center;
}

@media (min-width: 768px) {
    .bonus-card {
        grid-template-columns: 1fr auto;
        padding: 48px;
        gap: 40px;
    }
}

.bonus-content { text-align: center; }

@media (min-width: 768px) {
    .bonus-content { text-align: left; }
}

.bonus-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .bonus-card h2 { font-size: 32px; }
}

.bonus-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.bonus-image {
    max-width: 160px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bonus-image { max-width: 200px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--surface);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 16px;
    animation: scroll-marquee 18s linear infinite;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    flex-shrink: 0;
}

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

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 12px;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-accent);
}

.testimonial-name {
    font-weight: 600;
    font-size: 13px;
}

.testimonial-location {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== PAYMENTS ===== */
.payments-section {
    background: var(--background);
}

.payments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-item:hover {
    opacity: 1;
    border-color: var(--border-accent);
}

.payment-icon {
    font-size: 24px;
    color: var(--accent);
}

.payment-name {
    font-size: 11px;
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--surface);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    gap: 12px;
}

.faq-question:hover { color: var(--primary); }

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.active .faq-question { color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-content {
    padding-bottom: 18px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(180deg, var(--surface) 0%, var(--background-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 30, 134, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-content { position: relative; z-index: 1; }

.final-cta h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .final-cta h2 { font-size: 40px; }
}

.final-cta p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--background-dark);
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.footer-content { text-align: center; }

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

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

.footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--primary); }

.footer-copy {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== LIVE TICKER ===== */
.live-ticker {
    position: fixed;
    bottom: 80px;
    left: 12px;
    z-index: 900;
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.live-ticker.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.ticker-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.ticker-content { flex: 1; min-width: 0; }

.ticker-message {
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-time {
    font-size: 10px;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .live-ticker {
        left: 8px;
        right: 8px;
        max-width: none;
        bottom: 72px;
    }
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 950;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    width: 100%;
    box-shadow: 0 4px 24px rgba(225, 30, 134, 0.5);
}

@media (min-width: 768px) {
    .sticky-cta {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 24px;
    }
    .sticky-cta .btn { width: auto; }
}

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 48, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: var(--surface);
    border: 1px solid var(--border-accent);
    border-radius: 20px;
    padding: 32px 24px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.exit-popup-overlay.show .exit-popup { transform: scale(1); }

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.exit-popup-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
}

.exit-popup h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.exit-popup p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 13px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 18+ Badge */
.age-badge {
    position: fixed;
    top: 72px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    z-index: 800;
}

@media (min-width: 768px) {
    .age-badge {
        bottom: 24px;
        right: 24px;
        top: auto;
        width: 44px;
        height: 44px;
        font-size: 13px;
    }
}
