:root {
    --primary-gold: #D4AF37;
    --light-gold: #F3E5AB;
    --dark-brown: #4A3B32;
    --cream: #FFFBF0;
    --white: #FFFFFF;
    --red-cta: #C0392B;
    --green-success: #27ae60;
    --text-color: #333;
    --border-radius: 12px;
    
    /* Chakra Colors */
    --root: #FF5252;
    --sacral: #FF9800;
    --solar: #FFEB3B;
    --heart: #4CAF50;
    --throat: #03A9F4;
    --third: #3F51B5;
    --crown: #9C27B0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--text-color);
    line-height: 1.5;
    font-size: 15px;
    padding-bottom: 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
}

.container {
    padding: 0 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    text-align: center;
    padding: 40px 0 30px;
    background: radial-gradient(circle at center, #fff 0%, var(--light-gold) 100%);
    overflow: hidden;
}

.mandala-bg {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 100%;
    background-image: 
        radial-gradient(circle, transparent 20%, var(--light-gold) 20%, var(--light-gold) 21%, transparent 21%),
        radial-gradient(circle, transparent 30%, var(--primary-gold) 30%, var(--primary-gold) 31%, transparent 31%);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: rotate 60s linear infinite;
}

@keyframes rotate { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(360deg); } }

.live-badge {
    display: inline-block;
    background: var(--red-cta);
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.blink { animation: blinker 1.5s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }

.tag {
    display: block;
    color: var(--dark-brown);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 700;
}

h1 {
    font-size: 28px;
    margin: 10px 0 10px;
    line-height: 1.2;
}

.subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: #000;
    margin-bottom: 20px;
    z-index: 1;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    background: var(--white);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.detail-box {
    display: flex;
    align-items: center;
    gap: 6px;
}
.detail-box i { color: var(--red-cta); }

/* Sections General */
.section { padding: 40px 0; }
.light-bg { background-color: rgba(255, 255, 255, 0.6); }
.gold-bg { background: linear-gradient(135deg, var(--light-gold) 0%, #fff 100%); }

h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
    margin: 10px auto 25px;
}

.section-desc {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: -15px;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Grids */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Problem Cards */
.card-problem {
    background: var(--white);
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.card-problem i { font-size: 22px; color: var(--dark-brown); margin-bottom: 8px; }
.card-problem p { font-size: 13px; font-weight: 700; margin: 0; }

/* Science Section */
.science-grid { display: flex; flex-direction: column; gap: 15px; }
.science-card {
    background: white;
    padding: 15px;
    border-left: 5px solid var(--third);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.science-card i { color: var(--third); font-size: 24px; margin-bottom: 5px; }
.science-card h4 { margin-bottom: 5px; font-size: 16px; }
.science-card p { font-size: 13px; color: #555; margin: 0; }

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 13px;
}
.comp-header, .comp-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    padding: 12px 10px;
    align-items: center;
}
.comp-header {
    background: var(--dark-brown);
    color: var(--primary-gold);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}
.comp-row { border-bottom: 1px solid #eee; }
.comp-row:last-child { border-bottom: none; }
.c-area { font-weight: bold; color: var(--dark-brown); display: flex; align-items: center; gap: 5px; }
.c-bad { color: #7f8c8d; }
.c-good { color: var(--green-success); font-weight: bold; }

/* Features */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    border: 1px solid #f0f0f0;
}
.feature-item i { color: var(--primary-gold); font-size: 20px; margin-bottom: 8px; }

/* Chakra List */
.chakra-list { display: flex; flex-direction: column; gap: 10px; }
.chakra-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.c-icon { margin-right: 12px; font-size: 12px; }
.c-root .c-icon { color: var(--root); }
.c-sacral .c-icon { color: var(--sacral); }
.c-solar .c-icon { color: var(--solar); }
.c-heart .c-icon { color: var(--heart); }
.c-throat .c-icon { color: var(--throat); }
.c-third .c-icon { color: var(--third); }
.c-crown .c-icon { color: var(--crown); }

/* Bonuses */
.bonus-wrapper { display: flex; gap: 15px; }
.bonus-card {
    flex: 1;
    background: #fdf2f2; /* Light reddish tint */
    border: 1px dashed var(--red-cta);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}
.bonus-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--red-cta);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}
.bonus-card i { font-size: 24px; color: var(--red-cta); margin-bottom: 5px; }
.bonus-card h4 { font-size: 14px; margin-bottom: 2px; }
.bonus-card p { font-size: 11px; color: #666; }

/* Shorts Grid - 2 columns */
.shorts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.short-container {
    position: relative;
    padding-bottom: 177.77%; /* 9:16 aspect ratio */
    height: 0;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.short-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Instructor */
.instructor-card {
    text-align: center;
    background: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}
.img-placeholder { font-size: 70px; color: var(--primary-gold); margin-bottom: 10px; }
.bio { font-size: 14px; color: #555; margin: 15px 0; }
.trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 12px; font-weight: bold; color: var(--dark-brown); }

/* FAQ */
.faq-item { margin-bottom: 10px; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.faq-btn {
    width: 100%; text-align: left; padding: 15px; background: none; border: none;
    font-weight: 700; font-family: 'Lato', sans-serif; font-size: 14px;
    display: flex; justify-content: space-between; cursor: pointer; color: var(--dark-brown);
}
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 15px; font-size: 14px; color: #555; }
.faq-content.active { max-height: 100px; padding-bottom: 15px; }

/* ==================
   STICKY FOOTER V2
   ================== */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

/* Urgency Top Bar */
.urgency-bar {
    background: #FFE082;
    padding: 6px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #5D4037;
    font-weight: 700;
}
.urgency-text i { color: #d32f2f; margin-right: 4px; }
.progress-bg {
    width: 80px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 3px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    width: 80%; /* JavaScript will animate this */
    background: #d32f2f;
    border-radius: 3px;
}

/* Footer Main Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px 14px;
    background: var(--white);
    gap: 8px; /* Prevents overlapping */
}

.timer-column {
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevents flex blowout on mobile */
}

.offer-text { 
    font-size: 10px; 
    text-transform: uppercase; 
    color: #888; 
    font-weight: 700; 
    white-space: nowrap; /* Keeps text on one line */
}

.timer-digits { 
    font-family: 'Lato', sans-serif; 
    font-weight: 900; 
    font-size: 14px; /* Slightly reduced for mobile */
    color: var(--dark-brown); 
    letter-spacing: 0px; 
    white-space: nowrap; /* Keeps timer on one line */
}

.cta-column {
    display: flex;
    align-items: center;
    gap: 10px; /* Reduced gap to save space */
    flex-shrink: 0; /* Protects button from being squished */
}

.price-stack {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.1;
}

.old-price { 
    font-size: 10px; 
    text-decoration: line-through; 
    color: #999; 
}

.new-price { 
    font-size: 18px; /* Slightly reduced for mobile */
    font-weight: 800; 
    color: var(--dark-brown); 
}

.cta-btn {
    background: linear-gradient(45deg, var(--red-cta), #e74c3c);
    color: white;
    text-decoration: none;
    padding: 10px 16px; /* Reduced side padding */
    border-radius: 30px;
    font-weight: 800;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(192, 57, 43, 0.4);
    animation: pulse-border 1.5s infinite;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap; /* Keeps button text from wrapping */
}

/* Fallback for extremely small phones (like iPhone SE) */
@media (max-width: 360px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
    .timer-column {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .cta-column {
        width: 100%;
        justify-content: space-between;
    }
}
@keyframes pulse-border {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(192, 57, 43, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

/* =========================================
   IMPORTED "BRAIN GYM" STYLES (ADAPTED)
   ========================================= */

/* Records Section */
.records-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.record-card { border-radius: var(--border-radius); overflow: hidden; border: 1px solid var(--primary-gold); background: var(--white); transition: transform 0.3s; }
.record-card:hover { transform: translateY(-4px); }
.record-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.record-label { padding: 8px; font-weight: 700; font-size: 11px; color: var(--dark-brown); text-align: center; background: var(--light-gold); }

/* Meet Your Mentor */
.host-container { text-align: center; background: var(--white); padding: 25px; border-radius: var(--border-radius); border: 2px solid var(--primary-gold); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15); }
.host-img-wrapper { width: 140px; height: 140px; margin: 0 auto 20px; border-radius: 50%; border: 3px solid var(--primary-gold); overflow: hidden; position: relative; }
.host-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.host-info h3 { font-size: 24px; color: var(--dark-brown); margin-bottom: 4px; }
.host-desig { color: var(--red-cta); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: block; }
.host-bio { font-size: 14px; color: #555; margin-bottom: 20px; line-height: 1.6; }
.achievements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; text-align: left; }
.badge { background: var(--light-gold); padding: 8px 10px; border-radius: 6px; font-size: 11px; border-left: 2px solid var(--primary-gold); color: var(--dark-brown); font-weight: bold; }

/* Featured At & Reviews */
.featured-grid-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.featured-logo { width: 100%; height: auto; aspect-ratio: 130/70; border-radius: 6px; overflow: hidden; border: 1px solid #ddd; background: var(--white); display: flex; align-items: center; justify-content: center; padding: 5px;}
.featured-logo img { width: 100%; height: 100%; object-fit: contain; transition: filter 0.3s; }
.featured-logo:hover img { filter: grayscale(0%); }

.review-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.review-tile { border-radius: 8px; overflow: hidden; border: 1px solid #eee; cursor: pointer; transition: transform 0.2s; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.review-tile:hover { transform: scale(1.02); }
.review-tile img { width: 100%; display: block; }
.review-tile.hidden { display: none; }
.show-more-wrapper { text-align: center; margin-top: 25px; }

@media (min-width: 600px) {
    .host-container { display: flex; align-items: flex-start; gap: 30px; text-align: left; }
    .host-img-wrapper { margin: 0; flex-shrink: 0; width: 160px; height: 160px; }
    .featured-grid-container { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 16px; }
}