:root {
    --bg-dark: #07090F;
    --bg-card: rgba(15, 20, 35, 0.6);
    --primary: #FF1040;
    --primary-glow: rgba(255, 16, 64, 0.4);
    --secondary: #00F0FF;
    --secondary-glow: rgba(0, 240, 255, 0.4);
    --text-main: #FFFFFF;
    --text-muted: #A0A5B5;
    --success: #00FF66;
    --border-glass: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

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

.section {
    padding: 100px 0;
    position: relative;
}

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

.glassmorphism {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* NAVBAR */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

#promo-banner {
    width: 100%;
    background: linear-gradient(90deg, #FF1040, #B30024);
    text-align: center;
    padding: 10px 15px;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 16, 64, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

#countdown-timer {
    background: rgba(0,0,0,0.4);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 1.1rem;
}

.navbar {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(7, 9, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700 !important;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-nav:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--primary-glow);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 140px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 16, 64, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 16, 64, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF1040, #B30024);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 16, 64, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 16, 64, 0.6);
}

.btn-large {
    width: 100%;
    max-width: 400px;
    text-align: center;
    font-size: 1.1rem;
    padding: 20px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 16, 64, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 16, 64, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 16, 64, 0); }
}

.secure-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    border-top: 1px solid var(--border-glass);
    padding-top: 40px;
}

.stat h3 {
    font-size: 2rem;
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary-glow);
}

.stat p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* VIDEO PLAYER */
.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 800px;
    margin: 30px auto 30px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
    border: 2px solid rgba(255, 16, 64, 0.3);
    background: #000;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* SECTIONS COMMON */
.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* PROBLEM & SOLUTION */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.card {
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.card-dark {
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-neon {
    background: rgba(0, 255, 102, 0.05);
    border: 1px solid rgba(0, 255, 102, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.05) inset;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-dark ul li::before {
    content: "✗";
    color: var(--primary);
    font-weight: bold;
}

.card-neon ul li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px var(--secondary-glow));
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-box p {
    color: var(--text-muted);
}

/* SHOWCASE */
.showcase-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.showcase-text {
    flex: 1;
}

.showcase-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 20px 0;
}

.showcase-list {
    list-style: none;
}

.showcase-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.showcase-list li span {
    color: var(--secondary);
    font-weight: bold;
}

.showcase-image-wrapper {
    flex: 1;
    position: relative;
}

.game-mockup {
    padding: 30px;
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 1px solid var(--secondary);
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.15);
}

.game-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-weight: bold;
}

.mockup-lives { font-size: 1.2rem; }
.mockup-timer { color: var(--secondary); font-size: 1.5rem; }
.mockup-score { color: #FFD700; }

.mockup-question {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.mockup-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-opt {
    padding: 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.highlight-wrong {
    background: rgba(255,0,0,0.2);
    border-color: var(--primary);
    color: #ff8888;
}

.mockup-ninja {
    font-size: 4rem;
    position: absolute;
    bottom: -20px;
    right: -20px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

/* TESTIMONIALS */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 30px;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.user-info span {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary);
}

/* OFFER SECTION */
.offer {
    background: linear-gradient(to bottom, transparent, rgba(255, 16, 64, 0.05));
}

.offer-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 50px rgba(255, 16, 64, 0.15);
}

.offer-box-layout {
    max-width: 900px !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
}

.offer-left {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    border-right: 1px solid var(--border-glass);
    background: linear-gradient(180deg, rgba(20, 25, 40, 0.8) 0%, rgba(255, 16, 64, 0.05) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transform: scale(1.05);
}

.offer-benefits-title {
    margin-bottom: 20px;
    color: var(--secondary);
    align-self: flex-start;
    width: 100%;
}

.offer-benefits-list {
    text-align: left;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.offer-benefits-list li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 10px 0;
    font-size: 1.1rem;
}

.offer-benefits-list li.no-border {
    border-bottom: none;
}

.check-icon {
    color: var(--success);
    font-weight: bold;
    margin-right: 10px;
}

.offer-right {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.pricing-label {
    font-weight: 800;
    margin-top: 15px;
    color: var(--text-main);
    font-size: 1rem;
    letter-spacing: 1px;
}

.price-current .period {
    font-size: 1.2rem;
    font-weight: 400;
    align-self: flex-end;
    margin-bottom: 15px;
    margin-left: 5px;
}

.btn-checkout {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 16, 64, 0.5);
    display: inline-block;
    box-sizing: border-box;
}

.offer-disclaimer {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

.guarantee-layout {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    gap: 15px;
}

.guarantee-layout strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .offer-left {
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
        padding: 30px 20px;
    }
    .offer-right {
        padding: 30px 20px;
    }
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 20px;
}

.offer-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.offer-header p {
    color: var(--secondary);
    font-weight: bold;
    text-transform: uppercase;
}

.pricing {
    text-align: center;
    margin-bottom: 30px;
}

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

.price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--success);
    line-height: 1;
    margin: 10px 0;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

.currency {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
}

.value {
    font-size: 6rem;
    font-weight: 900;
}

.cents {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
}

.price-payment {
    display: block;
    color: var(--text-main);
    font-size: 1.2rem;
}

.offer-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.offer-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.1rem;
}

.guarantee {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    background: rgba(15, 20, 35, 0.4);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FOOTER */
.footer {
    background: #030408;
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; }
    .showcase-content { flex-direction: column; }
    .hero-title { font-size: 3rem; }
    .hero-stats { flex-wrap: wrap; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Could add hamburger menu later */
    .navbar { justify-content: center; }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .offer-box { padding: 30px 20px; }
    .value { font-size: 4rem; }
    .guarantee { flex-direction: column; text-align: center; }
    .video-wrapper { 
        aspect-ratio: 9 / 16; 
        max-width: 350px; 
        border-radius: 12px;
    }
}

/* SALES NOTIFICATIONS */
.sales-notification {
    position: fixed;
    bottom: -100px; /* Hidden initially */
    left: 20px;
    background: rgba(15, 20, 35, 0.95);
    border: 1px solid var(--primary);
    box-shadow: 0 5px 20px rgba(255, 16, 64, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.sales-notification.show {
    bottom: 20px;
}

.sn-icon {
    font-size: 1.5rem;
    background: rgba(255, 16, 64, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sn-content {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.3;
}

.sn-content strong {
    color: var(--primary);
}

.sn-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .sales-notification {
        left: 10px;
        right: 10px;
        bottom: -100px;
    }
    .sales-notification.show {
        bottom: 10px;
    }
}
