:root {
    --primary-color: #3498DB;
    /* Soft Blue */
    --primary-light: #EBF5FB;
    /* Very Light Blue */
    --secondary-color: #F1C40F;
    /* Vibrant Yellow */
    --secondary-dark: #F39C12;
    /* Darker Yellow/Orange */
    --text-color: #2C3E50;
    /* Dark Navy/Gray */
    --text-light: #7F8C8D;
    /* Light Gray */
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Open Sans', sans-serif;
}

/* Ideal For Section */
.ideal-for-section {
    background-color: var(--primary-light);
    padding: 3rem 1rem;
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ideal-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.ideal-card:hover {
    transform: translateY(-5px);
}

.ideal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ideal-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.ideal-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Detailed Offer List */
.detailed-offer-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.detailed-offer-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    color: var(--text-color);
}

.offer-group {
    background: #eef9ff;
    padding: 10px !important;
    border-radius: 8px;
    margin-bottom: 10px;
    border-bottom: none !important;
}

.offer-group strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.offer-bonus strong {
    color: #27ae60;
    /* Green for bonus */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

.text-center {
    text-align: center;
}

/* Typography Utilities */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.highlight {
    color: var(--secondary-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    touch-action: manipulation;
    /* Improves touch response time */
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 4px 0 var(--secondary-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--secondary-dark);
    background-color: #f4d03f;
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 var(--secondary-dark);
}

.btn-subtext {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.btn-large {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    width: 100%;
    max-width: 400px;
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Top Bar */
.top-bar {
    background-color: #C0392B;
    /* Strong Red for urgency */
    color: var(--white);
    text-align: center;
    padding: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.top-bar strong {
    color: #F1C40F;
    /* Yellow highlight */
    text-transform: uppercase;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    padding: 2rem 0;
    /* Reduced padding since we have the bar now */
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.hero-headline {
    font-size: 2.2rem;
    /* Mobile first */
    margin-bottom: 0.5rem;
    color: var(--text-color);
    max-width: 900px;
}

.hero-subheadline {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    max-width: 800px;
}

.hero-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.hero-image-container img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
    max-height: 500px;
    object-fit: contain;
    width: auto;
    /* Allow auto width to respect max-height */
    max-width: 100%;
}

.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Ensures centering on all screens */
    gap: 0;
    margin-top: 0;
    /* Remove top margin entirely */
}

.hero-social-faces {
    margin-bottom: -10px;
    /* Pull stars up */
    height: 80px;
    /* Increased from 40px for better mobile visibility */
    width: auto;
}

.hero-social-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.9rem;
    line-height: 1.2;
}

.hero-social-stars {
    display: none;
    /* Hide if old img is present */
}

.stars-text {
    color: #F1C40F;
    /* Gold color */
    letter-spacing: 2px;
    font-size: 1.2rem;
}

@media (min-width: 480px) {
    .hero-social-proof {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hero-social-faces {
        height: 70px;
        /* Adjusted for desktop balance */
    }

    .hero-social-text {
        align-items: flex-start;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3rem;
    }
}


/* Video Section Styles */
.video-section {
    margin: 2rem 0 0.5rem;
    /* Reduced bottom margin */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.attention-title {
    font-size: 1.4rem;
    color: #C0392B;
    /* Urgent Red */
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    /* Reduced bottom margin */
    line-height: 1.3;
    max-width: 700px;
}

.attention-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #FEF9E7;
    /* Light yellow bg to maintain attention */
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px dashed #F1C40F;
}

.video-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid #F1C40F;
}

.responsive-video {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .attention-title {
        font-size: 1.8rem;
    }
}

/* Offer Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge-img {
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.badge-safe {
    width: 250px;
    /* Make safe purchase badge prominent */
    max-width: 100%;
}

.badge-guarantee {
    width: 120px;
    /* Make guarantee badge smaller */
    max-width: 100%;
}


/* Authority Section */
.authority-section {
    background-color: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.authority-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.authority-icon {
    font-size: 1.5rem;
}

/* Pain Section */
.pain-section {
    padding: 4rem 0;
    background-color: #fff;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 900px;
        /* Constrain width for better reading */
        margin-left: auto;
        margin-right: auto;
    }
}

.comparison-column {
    padding: 2rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-column.pain {
    background-color: #FEF9E7;
    border: 2px solid #F9E79F;
}

.comparison-column.gain {
    background-color: #D6EAF8;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow);
    transform: scale(1.02);
}

.comparison-column h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.comparison-column ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.comparison-column ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Pain Points List */
.pain-points-list {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: left;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pain-points-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.pain-points-list li strong {
    color: var(--primary-color);
}

/* Product Section */
.product-section {
    background-color: var(--primary-light);
    padding: 4rem 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.game-list {
    text-align: left;
    margin-left: 1rem;
    list-style: none;
    /* Custom bullet */
}

.game-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-color);
}

.game-list li::before {
    content: "✔️";
    /* Checkmark or simple dot */
    position: absolute;
    left: 0;
    font-size: 0.9em;
    color: var(--secondary-dark);
}

.product-footer-text {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 2rem;
    color: var(--primary-color);
}

.total-count-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    margin-top: 1rem;
    box-shadow: var(--shadow);
}

/* Gallery Carousel Section */
.gallery-section {
    padding: 2rem 0 4rem;
    background-color: var(--white);
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 5%;
    /* Padding for swipe hint */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    scrollbar-width: none;
    /* Firefox */
    scroll-behavior: smooth;
    /* Smooth scrolling for buttons */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* @media (max-width: 480px) {
    .carousel-btn {
        display: none;
        
    }
} */

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.carousel-item {
    flex: 0 0 80%;
    /* Show part of next slide on mobile */
    max-width: 300px;
    scroll-snap-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    /* Square images by default */
}

.carousel-instruction {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 300px;
    }
}

/* Bonus Section */
.bonus-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: #FDFEFE;
    border: 2px dashed var(--secondary-color);
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;
}

.bonus-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

/* Social Proof */
.social-proof-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stars {
    color: #F1C40F;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    font-weight: 700;
    text-align: right;
    color: var(--primary-color);
}

/* Offer Section */
.offer-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.offer-section .section-title {
    color: var(--white);
}

.pricing-box {
    background: var(--white);
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius);
    padding: 3rem 2rem;
    color: var(--text-color);
    text-align: center;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.price-breakdown {
    margin-bottom: 2rem;
}

.strike {
    text-decoration: line-through;
    color: #E74C3C;
    margin-left: 5px;
}

.total-value {
    font-weight: 700;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.final-price {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.price-display {
    color: #27AE60;
    font-family: var(--font-heading);
    font-weight: 800;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.amount {
    font-size: 5rem;
    line-height: 1;
}

.payment-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge-img {
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.badge-safe {
    width: 280px;
    /* Make safe purchase badge prominent */
    max-width: 100%;
}

.badge-guarantee {
    width: 120px;
    /* Make guarantee badge smaller */
    max-width: 100%;
}

@media (min-width: 480px) {
    .trust-badges {
        flex-direction: row;
        justify-content: center;
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0.5rem;
}

/* --- RESPONSIVE DESIGN & MEDIA QUERIES --- */

/* Small Mobile Devices (e.g., iPhone SE, older Androids) */
@media (max-width: 375px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

    .btn-large {
        padding: 1.2rem 1.5rem;
        font-size: 1.2rem;
    }

    .amount {
        font-size: 3.5rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    /* Adjust trust badges for very small screens */
    .badge-safe {
        width: 100%;
        max-width: 220px;
    }
}

/* FAQ Section Styling */
.faq-section {
    padding: 4rem 1rem;
    background: #FFFEF9;
    /* Very light warm background */
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-badge {
    background: #FFF3CD;
    color: #856404;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--white);
    border: 1px solid #EAEAEA;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #F8F9FA;
}

.accordion-header .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #27ae60;
    /* Green accent */
}

.accordion-header.active {
    color: #27ae60;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.accordion-content p {
    padding: 0 1.2rem 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Devices (Portrait) */
@media (max-width: 480px) {
    .container {
        width: 92%;
        padding: 1.5rem 0;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-image img {
        max-height: 300px;
        /* Reduce height on mobile to keep content visible */
    }

    .pricing-box {
        padding: 2rem 1rem;
    }

    .pain-points-list {
        padding: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }
}

/* Tablets & Large Phones (Landscape) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2 columns on tablets */
    }
}

/* Desktop & Laptops */
@media (min-width: 769px) {
    .hero-container {
        /* User requested vertical stack for Mockup, so we keep column but ensure alignment */
        flex-direction: column;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-subheadline {
        font-size: 1.4rem;
        max-width: 800px;
    }

    /* Trust Badges - ensure they don't get too spread out */
    .trust-badges {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .btn:hover {
        transform: none;
        /* Disable hover float on touch devices */
        box-shadow: 0 4px 0 var(--secondary-dark);
        /* Keep original shadow */
    }

    .btn:active {
        background-color: #f4d03f;
    }
}

/* Security Features (Replaces Blurry Image) */
.security-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.security-icon {
    font-size: 1.2rem;
}

.security-text {
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: left;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
}