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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #dc2626;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.alert-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight {
    color: #dc2626;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #e5e7eb;
}

.bold-red {
    color: #ff4444;
    font-weight: bold;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    color: #d1d5db;
    line-height: 1.8;
}

.cta-button {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary {
    background-color: #dc2626;
    color: white;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    margin-bottom: 30px;
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-primary:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.8);
}

.urgency-timer {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
    margin-top: 30px;
    display: inline-block;
}

.timer-label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.timer-display {
    font-size: 48px;
    font-weight: 900;
    color: #dc2626;
    font-family: 'Courier New', monospace;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.timer-spots {
    font-size: 12px;
    color: #6b7280;
}

/* PAIN SECTION */
.pain-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    border-top: 3px solid #dc2626;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pain-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 2px solid #7f1d1d;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.pain-card:hover {
    border-color: #dc2626;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    transform: translateY(-5px);
}

.pain-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.pain-title {
    font-size: 22px;
    font-weight: bold;
    color: #ff4444;
    margin-bottom: 15px;
}

.pain-text {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 15px;
    line-height: 1.6;
}

.pain-source {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
}

/* SOLUTION SECTION */
.solution-section {
    background: linear-gradient(135deg, #1a1a00 0%, #2d2d00 50%, #1a1a00 100%);
    padding: 80px 0;
    border-top: 3px solid #eab308;
}

.solution-title {
    color: #ffffff;
}

.solution-subtitle {
    text-align: center;
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bold-yellow {
    color: #eab308;
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid #7f7f00;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #eab308;
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-card p {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
}

.cta-secondary {
    background-color: #eab308;
    color: #000000;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.4);
}

.cta-secondary:hover {
    background-color: #ca8a04;
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(234, 179, 8, 0.6);
}

/* URGENCY SECTION */
.urgency-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    border-top: 3px solid #dc2626;
}

.urgency-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(139, 139, 0, 0.3) 100%);
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.urgency-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.urgency-subtext {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 30px;
}

.urgency-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: #dc2626;
    font-family: 'Courier New', monospace;
}

.cta-final {
    background-color: #dc2626;
    color: white;
    display: block;
    margin: 0 auto 20px;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
    animation: pulse-button 2s infinite;
}

.cta-final:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(220, 38, 38, 0.8);
}

.cta-disclaimer {
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
}

/* CHECKOUT SECTION */
.checkout-section {
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
    padding: 80px 0;
    border-top: 3px solid #dc2626;
}

.checkout-box {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.3);
}

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

.checkout-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #ffffff;
}

.price-section {
    background-color: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.price-label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 5px;
}

.price-original {
    font-size: 20px;
    color: #6b7280;
    text-decoration: line-through;
    margin-bottom: 15px;
}

.price-discount {
    font-size: 16px;
    color: #10b981;
    font-weight: bold;
    margin-bottom: 20px;
}

.price-final {
    font-size: 48px;
    font-weight: 900;
    color: #dc2626;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.currency {
    font-size: 28px;
    vertical-align: super;
}

.amount {
    font-family: 'Courier New', monospace;
}

.includes-box {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.includes-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.includes-list li {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 10px;
    padding-left: 20px;
}

.includes-list li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
    margin-left: -20px;
    margin-right: 10px;
}

.cta-checkout {
    background-color: #dc2626;
    color: white;
    width: 100%;
    font-size: 20px;
    padding: 20px;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
    margin-bottom: 15px;
}

.cta-checkout:hover {
    background-color: #b91c1c;
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(220, 38, 38, 0.8);
}

.checkout-security {
    font-size: 14px;
    color: #9ca3af;
}

/* FOOTER */
.footer {
    background-color: #000000;
    border-top: 1px solid #1f2937;
    padding: 30px 0;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-stats {
        grid-template-columns: 1fr;
    }
    
    .checkout-box {
        padding: 30px;
    }
    
    .price-final {
        font-size: 36px;
    }
    
    .timer-display {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }
}

