:root {
    --bg-color: #000000;
    --primary-color: #8A2BE2;
    --secondary-color: #00FF00;
    --text-color: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
}

.top-banner {
    background-color: #ff0000;
    color: #ffffff;
    text-align: center;
    padding: 15px 10px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.banner-text {
    letter-spacing: 1px;
}

.banner-date {
    font-size: 1.6rem;
    opacity: 1;
}

.timer-wrapper-plan {
    display: flex;
    justify-content: center;
    margin-bottom: -15px;
    position: relative;
    z-index: 10;
}

.timer-plan-box {
    background: linear-gradient(135deg, #ff0000 0%, #990000 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 15px;
    border: 3px solid #ff4444;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    animation: pulse-timer 1.5s infinite ease-in-out;
}

.timer-title {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.timer-countdown {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@keyframes pulse-timer {
    0% { transform: scale(1); box-shadow: 0 0 25px rgba(255, 0, 0, 0.6); }
    50% { transform: scale(1.03); box-shadow: 0 0 40px rgba(255, 0, 0, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 25px rgba(255, 0, 0, 0.6); }
}

@media (max-width: 768px) {
    .top-banner {
        font-size: 1.8rem;
        padding: 12px 10px;
    }
    
    .banner-date {
        font-size: 1.4rem;
    }

    .social-proof {
        top: 150px;
    }
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

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

/* 1. Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.headline {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, #FFF, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.sub-headline {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.highlight {
    color: #FFFFFF;
    font-weight: bold;
}

.vsl-container {
    max-width: 800px;
    margin: 0 auto 40px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.video-aspect-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #000;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    transition: transform 0.3s;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 255, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(0, 255, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 255, 0, 0.4); }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* 2. Carousel */
.carousel-section {
    padding: 60px 0;
    background: #000;
}

.carousel-title {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.7;
}

.infinite-carousel {
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: inline-block;
    animation: scroll 30s linear infinite; /* Faster scroll */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.game-card {
    display: inline-block;
    width: 180px;
    margin: 0 15px;
    vertical-align: middle;
}

.game-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}

.game-card:hover img {
    transform: scale(1.05);
}

.carousel-subtitle {
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.plan-card del {
    opacity: 0.6;
}

.plan-card strong {
    color: #fff;
}

.plan-card li {
    padding: 12px 0;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-card li:last-child {
    border-bottom: none;
}

.how-it-works {
    padding: 60px 0 20px 0; /* Reduced bottom padding */
}

.demo-video {
    margin-bottom: 20px; /* Reduced margin after video */
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.benefits {
    padding-top: 20px; /* Reduced gap from video section above */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.glass-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.bonus-card {
    background: #111;
    border: 1px dashed var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.5;
}

.free-badge {
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 10px;
}

/* 4. Pricing */
.pricing {
    padding-top: 100px;
    padding-bottom: 60px;
    background: #000;
}

.plans-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.plan-card {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
}

.plan-card.premium.featured {
    border: 3px solid #8A2BE2; /* Linha roxa em volta */
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    position: relative;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8A2BE2;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.no-monthly {
    text-align: center;
    color: #ffff00;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.plan-card ul {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.plan-card li {
    padding: 8px 0;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-card li:last-child {
    border-bottom: none;
}

.plan-card li i {
    margin-right: 10px;
}

.plan-card li.locked {
    opacity: 0.4;
}

.plan-card li.locked i {
    color: #FF0000;
}

.plan-btn {
    display: block;
    background: var(--primary-color);
    color: #FFF;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

/* 5. FAQ */
.faq { 
    padding: 60px 0;
    background: #000;
}

.accordion-item {
    background: #111;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #FFF;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-content {
    padding: 0 20px 20px;
    display: none;
    opacity: 0.8;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

/* 5.5. Guarantee */
.guarantee {
    padding: 60px 0;
    background: #000;
}

.guarantee-card {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.2);
}

.guarantee-seal {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

.guarantee-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .guarantee-seal {
        width: 140px;
    }
    
    .guarantee-content h2 {
        font-size: 1.5rem;
    }
}


/* 6. Social Proof Popup */
.social-proof {
    position: fixed;
    top: 80px;
    right: -400px;
    left: auto;
    background: rgba(20, 20, 20, 0.95);
    border-right: 4px solid var(--primary-color);
    border-left: none;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    transition: right 0.5s ease;
    max-width: 320px;
    backdrop-filter: blur(10px);
}

.social-proof.active {
    right: 20px;
    left: auto;
}

.social-proof-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-proof-content i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.social-proof-content p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    color: #eee;
}

@media (max-width: 768px) {
    .top-banner {
        flex-direction: column;
        gap: 8px;
        padding: 12px 10px;
        font-size: 1.3rem;
    }

    .banner-item {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .banner-item i {
        font-size: 1.2rem;
    }

    .timer-highlight {
        padding: 6px 15px;
        width: 90%;
        margin: 2px auto;
    }

    .headline {
        font-size: 1.6rem;
        background: linear-gradient(to right, #FFF, #a855f7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
        display: block;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
        line-height: 1.3;
    }

    .sub-headline {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .social-proof {
        top: 150px;
        right: -100%;
        left: auto;
        width: calc(100% - 20px);
        max-width: 300px;
        padding: 10px 15px;
    }

    .social-proof.active {
        right: 10px;
        left: auto;
    }

    .social-proof-content p {
        font-size: 0.8rem;
    }
}

/* 7. Footer */
.footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    font-family: 'Rajdhani', sans-serif;
}

.footer-bottom {
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
    line-height: 1.6;
}