/* ===========================
   CSS RESET & VARIABLES
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a28;
    --bg-card-hover: #222236;

    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a82;

    --accent: #e84393;
    --accent-glow: rgba(232, 67, 147, 0.4);
    --accent-hover: #fd79a8;
    --accent-dark: #c0245e;

    --gradient-primary: linear-gradient(135deg, #e84393 0%, #fd79a8 50%, #fab1d0 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, rgba(10, 10, 15, 0.6) 40%, rgba(10, 10, 15, 0.95) 100%);
    --gradient-cta: linear-gradient(135deg, #e84393 0%, #c0245e 100%);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--accent-glow);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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


/* ===========================
   AGE VERIFICATION POPUP
   =========================== */
.age-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.4s ease;
}

.age-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.age-modal {
    background: rgba(18, 18, 26, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(232, 67, 147, 0.15);
    animation: modalIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.age-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 67, 147, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.age-modal p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.age-question {
    font-size: 16px !important;
    font-weight: 600;
    color: var(--text-primary) !important;
    margin-top: 16px !important;
    margin-bottom: 20px !important;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-age-yes, .btn-age-no {
    border: none;
    border-radius: var(--radius-full);
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
}

.btn-age-yes {
    background: var(--gradient-cta);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--accent-glow);
}

.btn-age-no {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-age-no:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}


/* ===========================
   HEADER
   =========================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 20px;
    transition: var(--transition);
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
}

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

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-header-cta {
    background: var(--gradient-cta);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(232, 67, 147, 0.25);
}

.btn-header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 25px rgba(232, 67, 147, 0.4);
}


/* ===========================
   HERO + SLIDESHOW
   =========================== */
.hero {
    position: relative;
    padding: 32px 0 48px;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.slideshow-container {
    position: relative;
    width: 90%;
    max-width: 672px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 50px rgba(232, 67, 147, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 4 / 3;
}


.slideshow {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.slide-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    transform: scale(1.2);
}

.hero-content {
    text-align: center;
    margin-top: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
    color: var(--text-primary);
}

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

/* Hero Social Proof (next to CTA) */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.hero-stars svg {
    filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.4));
}

.hero-rating {
    font-size: 15px;
    font-weight: 700;
    color: #FBBF24;
    margin-left: 2px;
}

.hero-rating-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}


/* ===========================
   SOCIAL PROOF
   =========================== */
.social-proof {
    padding: 48px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

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

.proof-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.proof-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.proof-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.proof-card:hover::before {
    opacity: 1;
}

.proof-card:hover {
    border-color: rgba(232, 67, 147, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(232, 67, 147, 0.06);
}

.proof-icon {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    opacity: 0.25;
}

.proof-number {
    font-size: 36px;
    font-weight: 800;
    display: inline;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.proof-suffix {
    display: inline;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-left: 2px;
    position: relative;
    top: -4px;
}

.proof-card .proof-number,
.proof-card .proof-suffix {
    display: inline-block;
    vertical-align: baseline;
}

.proof-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.proof-card:nth-child(1) { transition-delay: 0.05s; }
.proof-card:nth-child(2) { transition-delay: 0.15s; }
.proof-card:nth-child(3) { transition-delay: 0.25s; }


/* ===========================
   BUTTONS (CTA)
   =========================== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--accent-glow), var(--shadow-md);
}

.btn-cta-primary:active {
    transform: translateY(-1px);
}

.btn-cta-glow {
    background: var(--gradient-cta);
    color: white;
    box-shadow: var(--shadow-glow);
    font-size: 18px;
    padding: 16px 40px;
    animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(232, 67, 147, 0.2); }
}

.btn-cta-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px var(--accent-glow), 0 0 80px rgba(232, 67, 147, 0.15);
}


/* ===========================
   FEATURES SECTION
   =========================== */
.features {
    padding: 64px 0;
    background: var(--bg-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.features h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 36px;
    color: var(--text-primary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(232, 67, 147, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(232, 67, 147, 0.05);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
}


/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
    padding: 64px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 67, 147, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-banner h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.cta-banner p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.cta-small {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    margin-top: 16px !important;
}


/* ===========================
   TRUST BADGES
   =========================== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.trust-badges.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(232, 67, 147, 0.25);
    transform: translateY(-2px);
}

.trust-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--accent);
}

.trust-badge span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}


/* ===========================
   PAYMENT LOGOS
   =========================== */
.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.payment-logo {
    width: 48px;
    opacity: 0.45;
    transition: var(--transition);
    border-radius: 4px;
    overflow: hidden;
}

.payment-logo:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.payment-logo svg {
    width: 100%;
    height: auto;
    display: block;
}


/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0 24px;
}

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

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

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

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

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

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


/* ===========================
   RESPONSIVE - TABLET
   =========================== */
@media (min-width: 600px) {
    .age-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .slideshow-container {
        width: 70%;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .social-proof-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .proof-number {
        font-size: 42px;
    }

    .proof-suffix {
        font-size: 32px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .feature-card h3 {
        font-size: 17px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .trust-badges {
        gap: 12px;
    }

    .trust-badge {
        padding: 10px 16px;
    }

    .trust-icon {
        width: 20px;
        height: 20px;
    }

    .trust-badge span {
        font-size: 13px;
    }

    .payment-logo {
        width: 56px;
    }
}


/* ===========================
   RESPONSIVE - DESKTOP
   =========================== */
@media (min-width: 900px) {
    .hero {
        padding: 48px 0 64px;
    }

    .hero-wrapper {
        display: flex;
        align-items: center;
        gap: 40px;
        max-width: 1100px;
    }

    .hero-left {
        flex: 0 0 55%;
        max-width: 55%;
    }

    .slideshow-container {
        width: 100%;
        max-width: none;
    }

    .slideshow-dots {
        margin-top: 14px;
    }

    .hero-content {
        text-align: left;
        margin-top: 0;
        flex: 1;
        max-width: none;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-description {
        font-size: 16px;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-social-proof {
        justify-content: flex-start;
    }

    .slide-label {
        top: 16px;
        left: 16px;
        font-size: 14px;
    }

    .social-proof {
        padding: 56px 0;
    }

    .social-proof-grid {
        gap: 28px;
    }

    .proof-card {
        padding: 32px 24px;
    }

    .proof-number {
        font-size: 48px;
    }

    .proof-suffix {
        font-size: 36px;
    }

    .proof-label {
        font-size: 15px;
    }

    .features {
        padding: 80px 0;
    }

    .features h2 {
        font-size: 30px;
        margin-bottom: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .cta-banner {
        padding: 80px 0;
    }

    .cta-banner h2 {
        font-size: 36px;
    }

    .cta-banner p {
        font-size: 17px;
    }

    .trust-badge {
        padding: 10px 18px;
    }

    .payment-logo {
        width: 60px;
    }
}

/* ===========================
   ANIMATIONS FOR FEATURE CARDS
   =========================== */
.feature-card:nth-child(1) { transition-delay: 0.05s; }
.feature-card:nth-child(2) { transition-delay: 0.15s; }
.feature-card:nth-child(3) { transition-delay: 0.25s; }
.feature-card:nth-child(4) { transition-delay: 0.35s; }

.feature-card {
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
