/* ---------------------------------------------------
   Global Dark Neon Theme
--------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Playfair+Display:wght@500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: radial-gradient(circle at center, #1a0024, #000000 80%);
    min-height: 100vh;
    color: #ffdfff;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Glow background overlay */
.background-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url('../images/backgrounds/dark-neon-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    z-index: -1;
    filter: blur(2px);
}

/* ---------------------------------------------------
   Header / Hero
--------------------------------------------------- */
.hero-header {
    text-align: center;
    padding: 55px 20px 30px;
}

.logo {
    width: 70px;
    filter: drop-shadow(0 0 14px #ff2bd5);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.8rem;
    font-family: "Playfair Display", serif;
    color: #ffb9ff;
    text-shadow: 0 0 14px #ff2bd5, 0 0 25px #ff0099;
}

.hero-subtitle {
    margin-top: 8px;
    font-size: 1.15rem;
    opacity: 0.85;
    color: #ffd9ff;
}

/* ---------------------------------------------------
   Preview Cards (Audio + Chat)
--------------------------------------------------- */
.preview-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    padding: 20px;
}

.preview-card {
    width: 300px;
    padding: 26px;
    text-align: center;

    background: rgba(255, 0, 150, 0.07);
    border: 1px solid rgba(255, 120, 255, 0.33);
    backdrop-filter: blur(18px);

    border-radius: 26px;
    box-shadow:
        0 0 22px rgba(255, 0, 200, 0.45),
        inset 0 0 22px rgba(255, 0, 150, 0.22);

    transition: 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 0 40px rgba(255, 0, 200, 0.9),
        inset 0 0 28px rgba(255, 0, 180, 0.3);
}

/* Avatar */
.avatar {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    margin-bottom: 15px;
    border: 4px solid rgba(255, 150, 255, 0.5);
    box-shadow: 0 0 20px #ff29e2;
}

/* Feature Icons */
.feature-icon {
    width: 164px;
    height: 110px;
    /* padding: 16px; */
    object-fit: contain;

    margin-bottom: 15px;
    border-radius: 22px;

    background: rgba(255, 0, 140, 0.12);
    border: 2px solid rgba(255, 100, 255, 0.45);

    box-shadow:
        0 0 20px rgba(255, 20, 200, 0.55),
        inset 0 0 18px rgba(255, 0, 150, 0.2);

    transition: 0.25s ease;
}

.feature-icon:hover {
    transform: scale(1.08);
    box-shadow:
        0 0 38px rgba(255, 0, 200, 0.9),
        inset 0 0 38px rgba(255, 0, 170, 0.33);
}

/* Titles + Text */
.card-title {
    font-size: 1.45rem;
    color: #ffc9ff;
    margin-bottom: 6px;
}

.card-text {
    font-size: 1rem;
    opacity: 0.85;
    color: #ffe4ff;
}

/* ---------------------------------------------------
   Divider Line
--------------------------------------------------- */
.divider {
    width: 80%;
    height: 1px;
    margin: 25px auto 15px;
    background: linear-gradient(90deg, transparent, #ff00c8, transparent);
    opacity: 0.35;
}

/* ---------------------------------------------------
   Pricing Section
--------------------------------------------------- */
.pricing-section {
    text-align: center;
    padding: 10px 20px 0;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff7bda;
    text-shadow: 0 0 12px rgba(255, 0, 180, 0.6);
    margin-bottom: 12px;
}

.pricing-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;

    padding: 14px 24px;
    max-width: 420px;
    margin: 0 auto 10px;

    background: rgba(255, 0, 120, 0.10);
    border: 1px solid rgba(255, 120, 255, 0.4);
    border-radius: 16px;

    box-shadow:
        0 0 22px rgba(255, 0, 200, 0.4),
        inset 0 0 20px rgba(255, 0, 150, 0.2);
}

.old-price {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: #b07fb0;
}

.new-price {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ff2bd6, #ffc7ff);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 25px #ff2bd5, 0 0 45px #ff0099;
}

.price-desc {
    font-size: 1.1rem;
    color: #ffe7ff;
}

.pricing-note {
    color: #ffcff9;
    font-size: 1rem;
    margin-top: 5px;
    opacity: 0.9;
}

/* ---------------------------------------------------
   CTA Button
--------------------------------------------------- */
.cta-container {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 45px;
}

.start-btn {
    background: linear-gradient(135deg, #ff4f9a, #ff2e6e);
    color: white;
    padding: 15px 38px;
    border-radius: 100px;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    cursor: pointer;

    /* Soft subtle glow */
    box-shadow:
        0 4px 12px rgba(255, 60, 140, 0.35),
        inset 0 0 8px rgba(255, 255, 255, 0.15);

    transition: 0.25s ease;
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 16px rgba(255, 60, 140, 0.45),
        inset 0 0 10px rgba(255, 255, 255, 0.20);
}

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
.footer {
    margin-top: auto;
    text-align: center;
    padding: 20px 0;
    opacity: 0.8;
    color: #ffb7ff;
}

/* NAVBAR STYLING */
.navbar {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 0, 128, 0.2);
    position: fixed;
    top: 0;
    z-index: 999;
}

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

.nav-logo {
    width: 40px;
    height: 40px;
}

.nav-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff69b4;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #ff69b4;
}

.nav-cta {
    padding: 8px 18px;
    background: #ff69b4;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.nav-cta:hover {
    background: #ff2d92;
}

/* MOBILE */
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.8);
        flex-direction: column;
        padding: 20px 0;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

body {
    margin: 0;
    padding-top: 50px; /* space for navbar */
}


.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.age-box {
    background: #fff;
    color: #222;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 300px;
}
.age-box button {
    margin-top: 15px;
    background: #ff3d7d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.card-bullets {
    text-align: left;
    margin: 10px 0;
    padding-left: 30px;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-bullets li {
    margin-bottom: 6px;
}

.unlock-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.timer-animate {
    display: inline-block;
    transition: color 0.3s ease;
}

@keyframes pulseTimer {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.timer-pulse {
    animation: pulseTimer 0.75s ease;
}
