:root {
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    --text-color: #ffffff;
    --text-secondary: #b0b0b0;
    --gold: #FFD700;
    --gold-dim: #C5A000;
    --neon-gold: #ffe600;
    --urgency: #ff3300;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 215, 0, 0.15);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
    padding-bottom: 80px;
    /* Space for sticky bar */
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 51, 0, 0.03) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Scarcity Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--urgency);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(255, 51, 0, 0.2);
    transform: translateY(100%);
    animation: slideUp 0.5s ease-out 2s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.timer-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

#countdown {
    color: var(--urgency);
    font-family: monospace;
    font-size: 1.1rem;
}

.cta-button-sticky {
    background: var(--urgency);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 51, 0, 0.5);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 900;
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.beta-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--gold);
    vertical-align: middle;
    margin-left: 5px;
}

/* Hero */
.hero {
    padding: 40px 0 60px;
    text-align: center;
}

.hero-badge-pulse {
    display: inline-block;
    background: rgba(255, 51, 0, 0.1);
    color: var(--urgency);
    border: 1px solid var(--urgency);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 51, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 0, 0);
    }
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.highlight-red {
    color: #ff6b6b;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 107, 107, 0.3);
}

/* Video */
.video-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.video-border-wrapper {
    border: 1px solid var(--gold-dim);
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    background: #000;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.9;
}

.video-text {
    margin-top: 10px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.verified-badge {
    display: inline-block;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00ff88;
    margin-top: -15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Price & CTA */
.price-display {
    margin: 25px 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #666;
    font-size: 0.9rem;
}

.new-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.cta-button-neon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(90deg, #ffaa00, #ffcc00);
    color: #000;
    padding: 20px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
    transition: all 0.3s;
    border: 2px solid #ffe600;
    text-align: center;
}

.cta-button-neon:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 170, 0, 0.6);
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

.scarcity-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Truth Section */
.truth-section {
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.impact-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.pain-points {
    list-style: none;
    margin: 20px 0;
}

.pain-points li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ccc;
}

.profit-box {
    margin-top: 25px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px dashed #00ff88;
    padding: 15px;
    border-radius: 8px;
    color: #00ff88;
    font-weight: 600;
    text-align: center;
}

/* Offer Card */
.offer {
    padding: 40px 0;
}

.offer-card {
    background: #0a0a0a;
    border: 1px solid var(--gold-dim);
    border-radius: 16px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.neon-border {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.discount-badge {
    background: var(--urgency);
    color: #fff;
    padding: 5px 10px;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.stack-list {
    margin: 30px 0;
}

.stack-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stack-item.bonus {
    background: rgba(255, 215, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.check {
    font-size: 1.2rem;
    min-width: 25px;
}

.desc {
    font-size: 0.95rem;
    color: #ddd;
}

.desc strong {
    color: var(--gold);
}

.guarantee-box-gold {
    text-align: center;
    border: 2px solid var(--gold);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: rgba(255, 215, 0, 0.05);
}

.guarantee-box-gold h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.price-area {
    text-align: center;
    margin-bottom: 25px;
}

.price-tag-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.installments {
    color: #888;
    font-size: 1rem;
}

.pulse-animation {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0.7);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(255, 170, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0);
    }
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* FAQ */
.faq {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-grid {
    display: grid;
    gap: 15px;
}

.faq-item {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #222;
}

.faq-item h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 1rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: #aaa;
}

footer {
    padding: 40px 0;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    text-align: center;
}

.pain-points {
    list-style: none;
    margin: 20px 0;
}

.pain-points li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ccc;
}

.profit-box {
    margin-top: 25px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px dashed #00ff88;
    padding: 15px;
    border-radius: 8px;
    color: #00ff88;
    font-weight: 600;
    text-align: center;
}

/* Offer Card */
.offer {
    padding: 40px 0;
}

.offer-card {
    background: #0a0a0a;
    border: 1px solid var(--gold-dim);
    border-radius: 16px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.neon-border {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.discount-badge {
    background: var(--urgency);
    color: #fff;
    padding: 5px 10px;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.stack-list {
    margin: 30px 0;
}

.stack-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stack-item.bonus {
    background: rgba(255, 215, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.check {
    font-size: 1.2rem;
    min-width: 25px;
}

.desc {
    font-size: 0.95rem;
    color: #ddd;
}

.desc strong {
    color: var(--gold);
}

.guarantee-box-gold {
    text-align: center;
    border: 2px solid var(--gold);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: rgba(255, 215, 0, 0.05);
}

.guarantee-box-gold h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.price-area {
    text-align: center;
    margin-bottom: 25px;
}

.price-tag-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.installments {
    color: #888;
    font-size: 1rem;
}

.pulse-animation {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0.7);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(255, 170, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0);
    }
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* FAQ */
.faq {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-grid {
    display: grid;
    gap: 15px;
}

.faq-item {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #222;
}

.faq-item h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 1rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: #aaa;
}

footer {
    padding: 40px 0;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

}

.notification-toast {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    backdrop-filter: blur(5px);
    margin-top: 10px;
    pointer-events: auto;
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-icon {
    font-size: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.notification-message {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.2;
}

.notification-time {
    font-size: 0.7rem;
    color: #888;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .notification-container {
        bottom: 80px;
        /* Above sticky bar */
        right: 0;
        left: 0;
        display: flex;
        justify-content: center;
    }

    .notification-toast {
        min-width: auto;
        width: 90%;
        margin: 0 auto;
    }
}