:root {
    --primary-color: #FF0054;
    /* Vibrant Red-Pink */
    --primary-hover: #C90043;
    /* Deeper Red */
    --secondary-pink: #FF5C8A;
    /* Bright Pink */
    --vibrant-red: #E01E37;
    /* Rich Red */
    --accent-pink: #FF85A1;
    /* Soft Rose Pink */
    --highlight-bg: #FFB3C1;
    /* Pastel Highlight Pink */
    --secondary-bg: #FFF0F3;
    /* Blush Background */
    --text-color: #2D3436;
    --light-text: #636E72;
    --danger-color: #FF0054;
    --white: #FFFFFF;
    --soft-pink: #FFEAEE;
    /* Light Soft Pink */
    --container-width: 600px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;
    --shadow-premium: 0 10px 30px rgba(255, 0, 84, 0.1);
}

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

body {
    font-family: var(--font-body);
    background-color: #FFF5F7;
    /* Pale Pink BG */
    background-image: radial-gradient(#FFB3C1 1px, transparent 1px);
    background-size: 20px 20px;
    /* Playful dot pattern */
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.main-container {
    max-width: var(--container-width);
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    padding-bottom: 80px;
    /* Space for sticky footer */
}

section {
    padding: 30px 20px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-align: center;
    line-height: 1.3;
}

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

.highlight {
    background-color: var(--highlight-bg);
    padding: 2px 5px;
    font-weight: bold;
}

.btn {
    display: block;
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    /* Rounder for kids vibe */
    font-weight: bold;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(255, 0, 84, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Header/Hero */
.hero {
    background-color: var(--white);
    padding-top: 40px;
}

.hero h1 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.hero .hero-image {
    max-width: 90%;
    margin-bottom: 20px;
    border-radius: 12px;
}

.hero p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: var(--light-text);
}

/* Problem Section */
.problem-section {
    background-color: var(--soft-pink);
}

.problem-list {
    list-style: none;
    margin-top: 20px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1rem;
}

.problem-item i {
    color: var(--danger-color);
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Topics Grid */
.topics-section h2 {
    margin-bottom: 30px;
}

.topic-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.topic-item {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.topic-item:nth-child(odd) {
    border-left: 5px solid var(--secondary-pink);
}

.topic-item:nth-child(even) {
    border-left: 5px solid var(--accent-pink);
}

.topic-item:nth-child(3n) {
    border-left: 5px solid var(--vibrant-red);
}

.topic-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.topic-item .check {
    color: var(--primary-color);
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Video Preview Section */
.video-preview-section {
    background-color: var(--white);
    padding-bottom: 40px;
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-caption {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    background: var(--soft-pink);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--secondary-bg);
}

.price-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px dashed var(--primary-color);
}

.old-price {
    text-decoration: line-through;
    color: var(--light-text);
    font-size: 1.2rem;
}

.new-price {
    color: var(--danger-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin: 10px 0;
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.countdown-box {
    background: linear-gradient(135deg, #FF0054, #E01E37);
    color: var(--white);
    padding: 15px 12px;
    border-radius: 15px;
    min-width: 80px;
    box-shadow: 0 8px 25px rgba(255, 0, 84, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.countdown-box:hover {
    transform: scale(1.05);
}

.countdown-box span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.countdown-box label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Checkout Form */
.checkout-section h2 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Upsell Box */
.upsell-box {
    background: var(--soft-pink);
    border: 2px dashed #ffc107;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Payment Methods */
.payment-methods {
    margin-top: 30px;
}

.payment-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.payment-item:hover {
    border-color: var(--primary-color);
}

.payment-item input {
    margin-right: 15px;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: bottom 0.3s ease;
}

.sticky-footer.visible {
    bottom: 0;
}

.sticky-footer .btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Notification Popup */
.notif-popup {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: var(--white);
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notif-popup.visible {
    transform: translateX(0);
}

.notif-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.notif-text {
    font-size: 0.8rem;
}

.notif-text b {
    display: block;
}

/* Text Testimonials */
.testimonial-text-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-card-text {
    background: #FFF9FA;
    border: 1px solid var(--highlight-bg);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.stars {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

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

.user-name {
    font-weight: bold;
    font-size: 0.95rem;
    color: var(--text-color);
}

.testimony-content {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.5;
    font-style: italic;
}

/* FAQ Accordion Styling */
.faq-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background: #000;
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
}

.faq-question i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    background: #fff;
    color: #333;
    padding: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    border-top: 1px solid #000;
}

@media (max-width: 600px) {
    .main-container {
        width: 100%;
        box-shadow: none;
    }
}