:root {
    --primary-red: #D50000;
    --primary-green: #00C853;
    --accent-blue: #00C853;
    --dark-bg-start: #02050a;
    --dark-bg-end: #0a1120;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;

    /* Solid Dark Background with emphasized Green Lateral Details */
    background-color: #050505;
    /* Deep black */
    background-image:
        /* Left Side Glow - Stronger and clearly lateral */
        radial-gradient(circle at 0% 30%, rgba(0, 230, 118, 0.25) 0%, transparent 40%),
        /* Right Side Glow */
        radial-gradient(circle at 100% 70%, rgba(0, 230, 118, 0.20) 0%, transparent 40%);
    background-attachment: fixed;
}

.top-banner {
    background-color: var(--primary-red);
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    position: relative;
}

/* Removed previous diagonal lines container::before */

.content {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.brand-logo {
    max-width: 140px;
    /* Reduced from 180px */
    width: 40%;
    /* Reduced from 60% */
    height: auto;
    display: block;
    margin-bottom: -10px;
    /* Slight visual pull closer to title */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

h1 {
    font-size: 1.8rem;
    /* Increased from 1.4rem */
    /* Adjusted for better 2-line fit on mobile */
    font-weight: 800;
    /* Bolder */
    line-height: 1.2;
    color: white;
    text-shadow: none;
    /* Removing drop shadow to make gradient pop */
    margin: 10px 0;
    /* Added spacing */
}

.text-gradient {
    background: linear-gradient(90deg, #A7FFEB, var(--primary-green));
    /* Green gradient as requested */
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property for compatibility */
    -webkit-text-fill-color: transparent;
    color: var(--primary-green);
    /* Fallback */
    font-weight: 900;
    display: inline-block;
    /* Helps with gradient rendering */
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.image-frame {
    border: 3px solid var(--accent-blue);
    padding: 0;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
    background-color: #000;
    /* Ensure image fits nicely */
    line-height: 0;
    max-width: 85%;
    /* Reduced from 100% to make it smaller as requested */
    margin: 0 auto;
    /* center it */
}

.image-frame img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cta-button {
    background-color: #00E676;
    /* Solid bright green */
    color: black;
    /* Dark text for contrast like reference */
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 4px;
    /* Slightly squarer like reference */
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 90%;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    /* Centered with margin */
    animation: pulse 2s infinite;
    /* Pulsing effect */
}

.cta-button:hover {
    transform: scale(1.05);
    animation: none;
    /* Stop pulsing on hover if desired, or keep it. Let's keep hover effect simple */
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.8);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 200, 83, 0);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
        transform: scale(1);
    }
}

.member-count {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsiveness for larger screens */
@media (min-width: 768px) {
    h1 {
        font-size: 2.8rem;
        /* Increased from 2rem for high emphasis */
    }

    .top-banner {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1.4rem;
    }
}

/* Carousel Styles */
.carousel-section {
    width: 100vw;
    margin-left: -20px;
    /* Counteract container padding on mobile */
    margin-right: -20px;
    margin-top: 40px;
    padding: 30px 0;
    overflow: hidden;
    background: transparent;
}

.carousel-section h2 {
    text-align: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    padding: 0 20px;
}

.highlight-cyan {
    color: #69F0AE;
    /* Cyan matching the reference */
    font-weight: 700;
}

.carousel-window {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 10px;
    /* Space for shadow */
}

.carousel-track {
    display: flex;
    width: fit-content;
    gap: 30px;
    /* Increased gap */
    animation: scroll 40s linear infinite;
    /* Adjusted speed */
    padding-left: 30px;
}

.product-card {
    background: linear-gradient(180deg, #09101a 0%, #05080d 100%);
    border: 1px solid #142834;
    /* Darker border base */
    border-top: 1px solid #1e4028;
    /* Slight highlight top */
    /* User requested lighter green margin, interpreting as the border color or glow */
    border: 1px solid rgba(0, 200, 83, 0.3);
    /* Cyan/Greenish tint matching instructions */
    border-radius: 12px;
    width: 280px;
    /* Increased width */
    height: 380px;
    /* Increased height */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
    position: relative;
}

.product-card img {
    max-width: 90%;
    max-height: 200px;
    /* Increased image size */
    object-fit: contain;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-card p {
    font-size: 0.9rem;
    color: #888;
}

/* Infinite Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* 9 items * (280px + 30px) = 2790px */
        transform: translateX(-2790px);
    }
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .carousel-section h2 {
        font-size: 2.2rem;
        /* Even larger title */
    }

    .product-card {
        width: 320px;
        height: 420px;
    }

    .product-card img {
        max-height: 220px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            /* 9 items * (320px + 30px) = 3150px */
            transform: translateX(-3150px);
        }
    }
}

/* Access Section Styles */
.access-section {
    margin-top: 50px;
    padding-top: 50px;
    /* Space for the border */
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* White separator line */
}

.access-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature-card {
    background: #020303;
    /* Match theme background or slightly lighter if desired, reference looks transparent/dark */
    border: 1px solid rgba(0, 200, 83, 0.3);
    /* Cyan border */
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align left like reference, looks left aligned in 2nd crop? actually centered in first crop reference. Let's stick to flex-start with icon left */
    text-align: left;
    position: relative;
    /* Inner shadow or gradient if needed, keeping simple first */
}

/* Update: Reference shows a vertical stack: Icon -> Title -> Description */
.feature-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(180deg, rgba(9, 16, 26, 0.6) 0%, rgba(5, 8, 13, 0.6) 100%);
    /* Ensuring cards stretch nicely */
    width: 95%;
    /* Increased from 90% */
    max-width: 800px;
    /* Increased from 600px */
    margin: 0 auto;
    /* Center the card itself */
}

.feature-card .icon-box {
    background: rgba(0, 200, 83, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    /* Bold title */
    color: white;
    line-height: 1.3;
    margin: 0;
}

.feature-card p {
    font-size: 0.95rem;
    color: #a0a0a0;
    /* Gray description */
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (min-width: 768px) {
    .access-section h2 {
        font-size: 2.2rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }
}

/* Details Section (Lower part of page) */
.details-section {
    /* Cleaner, slightly lighter dark base (Deep Dark Green/Black) */
    background-color: #010502;

    /* Soft Green Glows to match the "clean" reference style */
    background-image:
        radial-gradient(circle at 15% 10%, rgba(0, 230, 118, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(0, 230, 118, 0.12) 0%, transparent 50%);

    /* Add a subtle top border or shadow to separate from hero */
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
    /* Ensure it sits on top if needed */
    width: 100%;
    padding-bottom: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* White separator line */
}

/* Feedback Container Section (Distinct Hero) */
.feedback-container-section {
    background-color: #0b0e0b;
    /* Slightly lighter/different tone */
    background-image: linear-gradient(to bottom, #000000 0%, #0b140b 100%);
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    border-top: 1px solid rgba(0, 230, 118, 0.2);
    /* Green separator */
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
}

/* Feedback Section adjustments */
.feedback-section {
    width: 100%;
    max-width: 1200px;
    margin: 0;
    /* Remove previous margins/flex props that might conflict */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback-header h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: none;
    line-height: 1.2;
    width: 100%;
    max-width: 600px;
    /* Tighter width to match carousel */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 15px;
}

.highlight-blue {
    color: #448AFF;
    /* A distinct blue for this section title to match ref */
    font-weight: 700;
}

.feedback-carousel-container {
    background-color: #1e2126;
    /* Cinza chumbo dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    width: 95%;
    max-width: 500px;
    /* Card size similar to reference */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

.feedback-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* Smooth transition for JS */
    width: 100%;
    /* We will handle width via JS or assume all items are 100% */
}

.feedback-item {
    min-width: 100%;
    /* Ensure it strictly takes full width */
    flex: 0 0 100%;
    /* Prevent shrinking/growing */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e2126;
    /* Match container background for seamless look */
    height: 450px;
    /* Fixed height for the viewing area */
}

.feedback-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show the FULL image, don't crop */
    border-radius: 8px;
    display: block;
}

.feedback-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: 0.2s;
    user-select: none;
}

.feedback-arrow:hover {
    opacity: 1;
    color: var(--primary-green);
}

.feedback-arrow.left {
    left: 15px;
}

.feedback-arrow.right {
    right: 15px;
}

/* Final CTA Section Styles */
.final-cta-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #0b140b 0%, #050505 100%);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    /* Above footer */
}

.final-cta-card {
    background: #0e1217;
    /* Dark card background */
    border: 1px solid #1a2233;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(0, 200, 83, 0.1);
    position: relative;
}

/* Optional: Add a subtle glow/border effect like the reference */
.final-cta-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, rgba(0, 200, 83, 0), rgba(0, 200, 83, 0.5), rgba(0, 200, 83, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.limited-offer {
    color: #a0a0a0;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.price-display {
    margin: 20px 0;
}

.price-value {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    /* Bright green for price */
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
}

.community-invite {
    font-size: 1.1rem;
    color: white;
    margin: 20px 0;
    font-weight: 600;
    /* Slightly less than bold */
}

.benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 30px 0;
    display: inline-block;
    /* Center the list block */
    width: 100%;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #d0d0d0;
}

/* Use the SVG icons inline, or style bullet points if I didn't add SVGs options.
   I added SVGs in the HTML directly. */

.rounded-btn {
    border-radius: 50px !important;
    /* Fully rounded pill shape */
    width: 100%;
    /* Full width in card */
    max-width: none;
    /* Reset max-width if needed */
    font-size: 1rem;
    /* Slightly smaller text for long label */
    padding: 20px;
}

.security-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Footer Styles */
footer {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #111;
    color: #555;
    font-size: 0.85rem;
}

footer p {
    margin: 5px 0;
}