/* --- RESET & VARIABLES --- */
:root {
    --bg-dark: #0a0f1d;
    --bg-card: #151b2e;
    --primary-red: #ff0000;
    --neon-red: #ff3333;
    --action-gold: #ffcc00;
    --trust-blue: #0066cc;
    --text-white: #ffffff;
    --text-gray: #d1d5db;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg-dark); color: var(--text-gray); overflow-x: hidden; padding-top: 40px; }

/* --- ANIMATIONS --- */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(-1deg); }
    75% { transform: translateX(5px) rotate(1deg); }
    100% { transform: translateX(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateY(20px); }
}

/* --- UTILITY CLASSES --- */
.pulse-anim { animation: pulse 1.5s infinite; }
.shake-anim { animation: shake 3s infinite; }
.bounce-anim { animation: bounce 2s infinite; }
.text-red { color: var(--neon-red); }
.text-white { color: var(--text-white); }
.text-center { text-align: center; }
.container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0; border-bottom: 1px solid #333; }
.bg-blue { background: #0c1836; }
.bg-red { background: #800000; }
.bg-dark { background: var(--bg-dark); }

/* --- STICKY TOP BAR --- */
.sticky-bar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: var(--action-gold); color: #000;
    text-align: center; padding: 10px; font-weight: bold;
    z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('https://placehold.co/1200x600/000000/333333?text=Stress+Dark+Bg');
    background-size: cover; padding: 20px 0; text-align: center; position: relative;
}
h1 { font-family: 'Anton', sans-serif; font-size: 3.5rem; color: white; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.sub-head { font-size: 1.2rem; margin-bottom: 30px; color: #ddd; }

/* VIDEO CONTAINER */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 20px auto;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.discount-badge {
    display: inline-block; background: var(--primary-red); color: white;
    padding: 5px 15px; font-weight: bold; transform: rotate(-2deg);
    margin-bottom: 15px; border: 2px solid white;
}

/* --- PRICE BOX --- */
.price-box { margin: 30px 0; }
.old-price { text-decoration: line-through; color: #888; font-size: 1.5rem; display: block; }
.new-price { color: var(--action-gold); font-size: 3rem; font-weight: 900; display: block; text-shadow: 0 0 10px rgba(255, 204, 0, 0.5); }

/* --- CTA BUTTON --- */
.cta-btn {
    background: var(--primary-red); color: white;
    font-size: 1.5rem; font-weight: bold;
    padding: 20px 40px; border: none; border-radius: 50px;
    cursor: pointer; width: 100%; max-width: 500px;
    text-transform: uppercase; letter-spacing: 1px;
    transition: background 0.3s;
}
.cta-btn:hover { background: #cc0000; }

/* --- PIZZA COMPARISON --- */
.comparison-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.compare-card {
    background: var(--bg-card); padding: 30px; border-radius: 10px;
    width: 45%; min-width: 300px; border: 2px solid #333;
}
.compare-card.loser { border-color: #555; opacity: 0.8; }
.compare-card.winner { border-color: var(--action-gold); box-shadow: 0 0 20px rgba(255, 204, 0, 0.2); transform: scale(1.05); }
.compare-card ul { text-align: left; margin-top: 15px; padding-left: 20px; }
.compare-card li { margin-bottom: 10px; }

/* --- MODULES --- */
.module-box {
    background: var(--bg-card); padding: 25px; margin-bottom: 20px;
    border-left: 5px solid var(--trust-blue); position: relative;
}
.day-tag {
    position: absolute; top: -10px; left: 20px; background: var(--trust-blue);
    color: white; padding: 2px 10px; font-weight: bold; font-size: 0.8rem;
}
.module-box h3 { color: white; margin-bottom: 10px; }

/* COACH SECTION */
.coach-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    margin-top: 30px;
}
.coach-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--action-gold);
    object-fit: cover;
}
.coach-bio { text-align: left; }
.coach-stats { margin-top: 15px; list-style: none; padding: 0; }
.coach-stats li { margin-bottom: 5px; color: #ddd; }

/* --- BONUSES --- */
.bonus-list { list-style: none; text-align: left; max-width: 600px; margin: 0 auto; }
.bonus-list li { font-size: 1.2rem; padding: 15px; border-bottom: 1px solid #333; }
.checkmark { color: var(--action-gold); font-weight: bold; margin-right: 10px; }
.total-value { font-size: 2rem; font-weight: 900; margin-top: 30px; color: white; border: 2px dashed white; padding: 20px; }

/* --- TOAST NOTIFICATION --- */
#toast-container { position: fixed; bottom: 20px; left: 20px; z-index: 9999; }
.toast {
    background: white; color: black; padding: 15px 20px; margin-top: 10px;
    border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex; align-items: center; gap: 15px; border-left: 5px solid var(--primary-red);
    animation: slideInRight 0.5s ease-out forwards; width: 320px;
}
.toast img { width: 40px; height: 40px; border-radius: 50%; background: #ccc; }

/* --- MODAL --- */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 2000; justify-content: center; align-items: center;
}
.modal-box {
    background: white; color: black; padding: 30px; width: 90%; max-width: 450px;
    border-radius: 10px; position: relative; border-top: 10px solid var(--primary-red);
    animation: bounce 0.5s ease-out;
}
.close-modal { position: absolute; top: 10px; right: 20px; font-size: 2rem; cursor: pointer; }
.modal-header { text-align: center; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
input { width: 100%; padding: 12px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 5px; }
.order-summary { display: flex; justify-content: space-between; font-weight: bold; margin: 15px 0; padding: 10px; background: #f9f9f9; }
.secure-text { text-align: center; font-size: 0.8rem; margin-top: 10px; color: #555; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .compare-card { width: 100%; transform: none !important; }
    .coach-box { flex-direction: column; text-align: center; }
    .coach-bio { text-align: center; }
}