/* --- Variables & Reset --- */
:root {
    --primary-gold: #FFD700;
    --secondary-gold: #B8860B;
    --bg-dark: #0f0518; /* Deep Midnight Purple */
    --bg-card: #1a0b2e; 
    --bg-gradient: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
    --text-white: #f0f0f0;
    --text-gray: #ccc;
    --accent-glow: rgba(255, 215, 0, 0.3);
    --success: #00ff88;
    --danger: #ff4444;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.5;
    padding-bottom: 120px; /* Space for sticky footer */
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    width: 90%;
    max-width: 600px; /* Mobile first constrained width */
    margin: 0 auto;
}

/* --- Typography & Utilities --- */
.highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--accent-glow);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    border-bottom: 2px solid var(--secondary-gold);
    display: inline-block;
    padding-bottom: 5px;
}

.text-center { text-align: center; }
.section { padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dark-bg { background-color: #08020d; }
.gradient-bg { background: var(--bg-gradient); }

/* --- Grids --- */
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.grid-3-col { display: grid; grid-template-columns: 1fr; gap: 15px; }
.dense-grid { gap: 8px; }

/* --- Hero --- */
.hero-section {
    background: radial-gradient(circle at center, #2d1b4e 0%, #0f0518 70%);
    padding: 2rem 0 3rem 0;
    text-align: center;
}

.main-title { font-size: 2.8rem; line-height: 1.1; margin-bottom: 0.5rem; }
.subtitle { font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 1.5rem; color: #e0e0e0; }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border: 2px solid var(--secondary-gold);
    border-radius: 8px;
    box-shadow: 0 0 20px var(--accent-glow);
    margin-bottom: 1rem;
}

.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.hero-dates {
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid var(--secondary-gold);
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-extra-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    animation: fadeIn 2s ease;
}

/* --- Cards --- */
.card {
    background: var(--bg-card);
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
}
.icon-card i { font-size: 1.5rem; color: var(--primary-gold); margin-bottom: 8px; }
.icon-card p { font-size: 0.9rem; line-height: 1.3; }

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-left: 4px solid var(--primary-gold);
    margin-top: 20px;
    text-align: left;
    font-size: 1.1rem;
}

/* --- Host Section (New) --- */
.host-section { background: linear-gradient(to right, #10051b, #1d0c2e); }
.host-container { text-align: center; }
.host-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}
.host-img { width: 100%; height: 100%; object-fit: cover; }
.host-info h3 { font-size: 1.8rem; color: #fff; margin-bottom: 5px; }
.host-desig { color: var(--primary-gold); font-weight: bold; margin-bottom: 15px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.host-bio { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 20px; }

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
}
.badge {
    background: rgba(255, 215, 0, 0.05);
    padding: 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    border-left: 2px solid var(--secondary-gold);
    display: flex;
    align-items: center;
    gap: 8px;
}
.badge i { color: var(--primary-gold); }

/* --- Science Grid --- */
.science-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; text-align: center; }
.chem-box { background: #151515; padding: 10px 5px; border-radius: 6px; }
.chem-box h4 { font-size: 0.9rem; margin-bottom: 5px; color: #fff; }
.chem-box p { font-size: 0.75rem; color: #aaa; margin-bottom: 5px; }
.red-glow { border-top: 3px solid var(--danger); }
.green-glow { border-top: 3px solid var(--success); }
.blue-glow { border-top: 3px solid #00ccff; }
.arrow-down { color: var(--danger); font-size: 0.75rem; font-weight: bold; }
.arrow-up { color: var(--success); font-size: 0.75rem; font-weight: bold; }

/* --- Roadmap --- */
.roadmap { display: flex; flex-direction: column; gap: 10px; }
.phase {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}
.phase-icon {
    width: 40px; height: 40px;
    background: var(--secondary-gold);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #000;
    flex-shrink: 0;
}
.phase h4 { margin: 0; font-size: 1.1rem; color: var(--primary-gold); }
.phase p { margin: 0; font-size: 0.85rem; color: #ccc; }
.phase-connector { height: 15px; width: 2px; background: var(--secondary-gold); margin-left: 34px; opacity: 0.5; }

/* --- Detailed Results --- */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.result-item {
    background: #222;
    padding: 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #ddd;
    border: 1px solid #333;
}
.result-item i { color: var(--primary-gold); }

/* --- Lists & Steps --- */
.list-layout { display: flex; flex-direction: column; gap: 15px; }
.list-item { display: flex; align-items: center; gap: 15px; background: rgba(0,0,0,0.3); padding: 10px; border-radius: 6px; }
.list-item i { color: var(--primary-gold); font-size: 1.5rem; min-width: 40px; text-align: center; }
.list-item h4 { margin-bottom: 2px; color: #fff; font-size: 1.1rem; }
.list-item p { font-size: 0.9rem; color: var(--text-gray); }

.step-card {
    background: var(--bg-card); padding: 20px; position: relative; border-radius: 8px; overflow: hidden;
    border-top: 2px solid var(--secondary-gold);
}
.step-num { position: absolute; top: 0px; right: 10px; font-size: 3rem; font-weight: bold; color: rgba(255, 255, 255, 0.05); font-family: 'Oswald'; }

/* --- Bonus & Shorts --- */
.bonus-section {
    text-align: center; background: linear-gradient(to bottom, #1a0b2e, #4b2a75);
    border: 2px solid var(--primary-gold); margin: 20px 0; border-radius: 10px;
}
.bonus-badge {
    background: var(--primary-gold); color: #000; display: inline-block; padding: 5px 15px;
    font-weight: bold; border-radius: 0 0 10px 10px; margin-top: -48px; margin-bottom: 15px;
}
.shorts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.short-video { padding-bottom: 177.77%; }

/* --- Price --- */
.price-section { text-align: center; }
.price-box { margin: 15px 0; font-family: 'Oswald', sans-serif; }
.old-price { font-size: 1.5rem; text-decoration: line-through; color: #777; margin-right: 10px; }
.new-price { font-size: 4rem; color: var(--primary-gold); font-weight: bold; }
.period { font-size: 1rem; color: #fff; margin-top: -10px; }
.urgency-box {
    background: rgba(255, 0, 0, 0.1); border: 1px solid #ff4444; padding: 10px;
    margin-top: 20px; border-radius: 5px; font-size: 0.9rem; color: #ffcccc;
}

/* --- FAQ --- */
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.accordion-header {
    width: 100%; background: none; border: none; padding: 15px 0; color: #fff; text-align: left;
    font-size: 1.1rem; display: flex; justify-content: space-between; cursor: pointer;
}
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text-gray); }

/* --- OPTIMIZED STICKY FOOTER --- */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #000; z-index: 1000;
    border-top: 2px solid var(--primary-gold);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.9);
}

.countdown-strip {
    background: #1a1a1a; color: #fff; padding: 4px;
    text-align: center; font-size: 0.75rem;
    display: flex; justify-content: center; gap: 10px; align-items: center;
}
.timer { display: flex; gap: 6px; color: var(--primary-gold); font-weight: bold; font-family: 'Oswald'; }

.cta-row {
    display: flex; padding: 8px 15px 12px 15px;
    align-items: center; justify-content: space-between; gap: 15px;
    background: #111;
}

.price-container { display: flex; flex-direction: column; align-items: flex-start; }
.striked-price { font-size: 0.85rem; text-decoration: line-through; color: #888; }
.main-price { font-size: 1.8rem; font-weight: bold; color: #fff; font-family: 'Oswald'; line-height: 1; }

.cta-button {
    background: linear-gradient(to right, #B8860B, #FFD700, #B8860B);
    background-size: 200%; color: #000; text-decoration: none;
    padding: 12px 0; border-radius: 6px; font-weight: 800;
    font-size: 1.1rem; text-transform: uppercase;
    flex-grow: 1; text-align: center; transition: 0.3s;
    animation: pulse 2s infinite; font-family: 'Oswald';
}
.cta-button:hover { background-position: right center; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
    100% { transform: scale(1); }
}

/* Desktop Tweaks */
@media (min-width: 768px) {
    .grid-3-col { grid-template-columns: 1fr 1fr 1fr; }
    .shorts-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .cta-row { justify-content: center; gap: 50px; }
    .cta-button { flex-grow: 0; width: 350px; }
    .host-container { display: flex; align-items: center; gap: 30px; text-align: left; }
    .host-img-wrapper { margin: 0; flex-shrink: 0; width: 200px; height: 200px; }
    .video-wrapper { max-height: 450px; }
}