/* ============================================================
   MAKE HER CHASE YOU — MAIN STYLESHEET
   Edit the :root variables below to change colours & fonts
   ============================================================ */

/* ── DESIGN TOKENS — EDIT HERE ───────────────────────────── */
:root {
  --black:       #080808;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #222222;
  --red:         #9B1C1C;
  --red-light:   #C23B3B;
  --gold:        #C9973A;
  --gold-light:  #E8B860;
  --white:       #F5F0E8;
  --white-dim:   #B8B0A0;
  --grey:        #666666;
  --green:       #4CAF50;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ────────────────────────────────────────────── */
.container { width: 100%; max-width: 780px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-red { color: var(--red-light); }
.text-gold { color: var(--gold); }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.mhcy-announcement {
  background: var(--red);
  padding: 10px 20px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}
.mhcy-announcement span { color: var(--gold-light); }

/* ── COUNTDOWN TIMER ──────────────────────────────────────── */
.mhcy-timer-bar {
  background: var(--dark-2);
  border-bottom: 1px solid #2a2a2a;
  padding: 14px 20px;
  text-align: center;
}
.mhcy-timer-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  margin-bottom: 8px;
}
.mhcy-timer-units {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.mhcy-timer-block { display: flex; flex-direction: column; align-items: center; }
.mhcy-timer-num {
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  width: 56px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  letter-spacing: -0.02em;
}
.mhcy-timer-unit-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); margin-top: 4px; }
.mhcy-timer-sep { font-size: 1.6rem; font-weight: 700; color: var(--red); margin-bottom: 18px; padding: 0 2px; }

/* ── HERO ─────────────────────────────────────────────────── */
.mhcy-hero {
  background: var(--dark);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mhcy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(155,28,28,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,151,58,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.mhcy-hero-eyebrow {
  display: inline-block;
  background: rgba(155,28,28,0.2);
  border: 1px solid rgba(155,28,28,0.4);
  color: var(--red-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.mhcy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
.mhcy-hero h1 em { font-style: italic; color: var(--gold); }
.mhcy-hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.18rem);
  color: var(--white-dim);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.7;
}
.mhcy-hero-subtitle strong { color: var(--white); }
.mhcy-hero-subtitle em { color: var(--gold-light); font-style: italic; }

/* ── CTA BUTTONS ──────────────────────────────────────────── */
.mhcy-btn-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}
.mhcy-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-align: center;
  width: 100%;
  max-width: 440px;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.mhcy-btn-primary:hover { background: var(--red-light); transform: translateY(-2px); }
.mhcy-btn-primary .price-tag { background: rgba(255,255,255,0.15); padding: 2px 10px; border-radius: 2px; font-size: 0.9em; }
.mhcy-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1.5px solid #333;
  color: var(--white-dim);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
  max-width: 440px;
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
}
.mhcy-btn-whatsapp:hover { border-color: #25D366; color: #25D366; }
.mhcy-hero-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 4px;
}

/* ── SECTION BASE ─────────────────────────────────────────── */
.mhcy-section-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-light); margin-bottom: 16px; }
.mhcy-section-title { font-family: var(--font-display); font-size: clamp(1.7rem, 5vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--white); margin-bottom: 24px; letter-spacing: -0.01em; }
.mhcy-section-title em { font-style: italic; color: var(--gold); }

/* ── PROOF STRIP ──────────────────────────────────────────── */
.mhcy-proof-strip { background: var(--dark-3); padding: 20px; text-align: center; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; }
.mhcy-proof-strip-text { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); margin-bottom: 14px; }
.mhcy-proof-numbers { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.mhcy-proof-number { display: flex; flex-direction: column; align-items: center; }
.mhcy-proof-number strong { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.mhcy-proof-number span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); margin-top: 4px; }

/* ── PAIN SECTION ─────────────────────────────────────────── */
.mhcy-pain { background: var(--dark-2); padding: 70px 20px; border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; }
.mhcy-pain-story { font-size: 1.05rem; line-height: 1.85; color: var(--white-dim); margin-bottom: 20px; }
.mhcy-pain-story strong { color: var(--white); font-weight: 600; }
.mhcy-pain-callout { background: rgba(155,28,28,0.12); border-left: 3px solid var(--red); padding: 22px 24px; margin: 32px 0; border-radius: 0 4px 4px 0; }
.mhcy-pain-callout p { font-family: var(--font-display); font-size: 1.12rem; font-style: italic; color: var(--white); line-height: 1.65; }

/* ── FEAR SECTION ─────────────────────────────────────────── */
.mhcy-fear-section { background: #0a0404; padding: 60px 20px; border-top: 1px solid rgba(155,28,28,0.2); }
.mhcy-fear-box { background: rgba(155,28,28,0.08); border: 1px solid rgba(155,28,28,0.25); border-radius: 6px; padding: 36px 28px; }
.mhcy-fear-title { font-family: var(--font-display); font-size: clamp(1.3rem, 4vw, 1.9rem); font-weight: 700; color: var(--white); margin-bottom: 24px; line-height: 1.3; }
.mhcy-fear-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mhcy-fear-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.95rem; color: var(--white-dim); line-height: 1.6; }
.mhcy-fear-list li::before { content: '✗'; color: var(--red-light); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ── BENEFITS ─────────────────────────────────────────────── */
.mhcy-benefits { background: var(--dark-2); padding: 70px 20px; border-top: 1px solid #1e1e1e; }
.mhcy-benefits-intro { font-size: 1.05rem; color: var(--white-dim); margin-bottom: 40px; line-height: 1.8; }
.mhcy-benefit-item { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid #1e1e1e; }
.mhcy-benefit-item:last-child { border-bottom: none; }
.mhcy-benefit-icon { width: 44px; height: 44px; border-radius: 8px; background: rgba(155,28,28,0.15); border: 1px solid rgba(155,28,28,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.mhcy-benefit-title { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.mhcy-benefit-desc { font-size: 0.9rem; color: var(--white-dim); line-height: 1.65; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.mhcy-testimonials { padding: 70px 20px; background: var(--dark); }
.mhcy-testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
.mhcy-testimonial-card { background: var(--dark-2); border: 1px solid #2a2a2a; border-radius: 6px; padding: 28px 24px; position: relative; }
.mhcy-testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-size: 5rem; color: rgba(155,28,28,0.15); line-height: 1; }
.mhcy-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.mhcy-testimonial-text { font-size: 0.95rem; line-height: 1.75; color: var(--white-dim); margin-bottom: 18px; font-style: italic; }
.mhcy-testimonial-author { display: flex; align-items: center; gap: 12px; }
.mhcy-author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--dark-3); border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--red-light); flex-shrink: 0; }
.mhcy-author-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.mhcy-author-detail { font-size: 0.75rem; color: var(--grey); }
.mhcy-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 0.7rem; color: var(--green); font-weight: 600; margin-left: 6px; }

/* ── BONUSES ──────────────────────────────────────────────── */
.mhcy-bonuses { background: var(--dark); padding: 70px 20px; }
.mhcy-bonus-card { background: var(--dark-2); border: 1px solid #2a2a2a; border-radius: 6px; padding: 24px 22px; margin-bottom: 16px; display: flex; gap: 18px; align-items: flex-start; transition: border-color 0.2s; }
.mhcy-bonus-card:hover { border-color: rgba(201,151,58,0.4); }
.mhcy-bonus-badge { background: linear-gradient(135deg, var(--gold), #a07020); color: #000; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 2px; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
.mhcy-bonus-title { font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 6px; }
.mhcy-bonus-desc { font-size: 0.87rem; color: var(--white-dim); line-height: 1.6; }

/* ── PRICING ──────────────────────────────────────────────── */
.mhcy-pricing { background: var(--dark-2); padding: 70px 20px; border-top: 1px solid #1e1e1e; text-align: center; }
.mhcy-pricing-card { background: var(--dark); border: 1.5px solid var(--red); border-radius: 8px; padding: 40px 28px; max-width: 500px; margin: 0 auto; position: relative; overflow: hidden; }
.mhcy-pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--gold), var(--red)); }
.mhcy-pricing-badge { display: inline-block; background: var(--red); color: #fff; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 16px; border-radius: 2px; margin-bottom: 24px; }
.mhcy-pricing-original { font-size: 1rem; color: var(--grey); text-decoration: line-through; margin-bottom: 6px; }
.mhcy-pricing-current { font-family: var(--font-display); font-size: clamp(3rem, 10vw, 4.5rem); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.mhcy-pricing-current sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.8rem; color: var(--gold); }
.mhcy-pricing-note { font-size: 0.82rem; color: var(--grey); margin-bottom: 32px; font-style: italic; }
.mhcy-pricing-includes { text-align: left; list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.mhcy-pricing-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--white-dim); }
.mhcy-pricing-includes li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.mhcy-pricing-divider { border: none; border-top: 1px solid #2a2a2a; margin: 24px 0; }
.mhcy-pricing-footnote { font-size: 0.75rem; color: var(--grey); margin-top: 18px; line-height: 1.6; }

/* ── GUARANTEE ────────────────────────────────────────────── */
.mhcy-guarantee { background: var(--dark); padding: 60px 20px; text-align: center; border-top: 1px solid #1e1e1e; }
.mhcy-guarantee-box { max-width: 560px; margin: 0 auto; background: var(--dark-2); border: 1px solid #2a2a2a; border-radius: 8px; padding: 36px 28px; }
.mhcy-guarantee-icon { font-size: 3.5rem; margin-bottom: 16px; }
.mhcy-guarantee-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.mhcy-guarantee-text { font-size: 0.95rem; color: var(--white-dim); line-height: 1.75; }
.mhcy-guarantee-text strong { color: var(--white); }

/* ── FAQ ──────────────────────────────────────────────────── */
.mhcy-faq { background: var(--dark-2); padding: 70px 20px; border-top: 1px solid #1e1e1e; }
.mhcy-faq-item { border-bottom: 1px solid #2a2a2a; padding: 22px 0; cursor: pointer; }
.mhcy-faq-question { font-weight: 600; font-size: 0.98rem; color: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.mhcy-faq-toggle { color: var(--red-light); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.3s; }
.mhcy-faq-answer { font-size: 0.9rem; color: var(--white-dim); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.mhcy-faq-item.open .mhcy-faq-answer { max-height: 400px; padding-top: 14px; }
.mhcy-faq-item.open .mhcy-faq-toggle { transform: rotate(45deg); }

/* ── FINAL CTA ────────────────────────────────────────────── */
.mhcy-final-cta { background: var(--dark); padding: 80px 20px; text-align: center; position: relative; overflow: hidden; }
.mhcy-final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(155,28,28,0.18) 0%, transparent 70%); pointer-events: none; }
.mhcy-final-cta-text { font-size: 1.05rem; color: var(--white-dim); max-width: 520px; margin: 0 auto 36px; line-height: 1.75; }
.mhcy-final-footnote { font-size: 0.8rem; color: var(--grey); margin-top: 20px; }

/* ── STICKY MOBILE CTA ────────────────────────────────────── */
.mhcy-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark-2); border-top: 1px solid #2a2a2a; padding: 12px 16px; z-index: 998; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mhcy-sticky-price .label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey); display: block; }
.mhcy-sticky-price .amount { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.mhcy-sticky-btn { flex: 1; background: var(--red); color: #fff; font-weight: 700; font-size: 0.9rem; padding: 14px 16px; border-radius: 3px; text-align: center; text-transform: uppercase; letter-spacing: 0.04em; border: none; cursor: pointer; transition: background 0.2s; display: block; }
.mhcy-sticky-btn:hover { background: var(--red-light); color: #fff; }

/* ── FOOTER ───────────────────────────────────────────────── */
.mhcy-footer { background: #080808; padding: 30px 20px 100px; text-align: center; border-top: 1px solid #1a1a1a; }
.mhcy-footer p { font-size: 0.78rem; color: #444; line-height: 1.7; }
.mhcy-footer .brand { color: #555; font-weight: 700; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes mhcy-fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.mhcy-hero h1, .mhcy-hero-subtitle, .mhcy-btn-group { animation: mhcy-fadeInUp 0.7s ease forwards; opacity: 0; }
.mhcy-hero-subtitle { animation-delay: 0.15s; }
.mhcy-btn-group { animation-delay: 0.3s; }
.mhcy-animate { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.mhcy-animate.in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (min-width: 600px) {
  .mhcy-testimonial-grid { grid-template-columns: 1fr 1fr; }
  .mhcy-btn-group { flex-direction: row; }
  .mhcy-btn-primary, .mhcy-btn-whatsapp { max-width: none; }
}
@media (min-width: 768px) {
  .mhcy-sticky-cta { display: none; }
  .mhcy-footer { padding-bottom: 40px; }
}

/* ══════════════════════════════════════════════════════════════
   IMAGE PROOF GALLERY — Added v2
   ══════════════════════════════════════════════════════════════ */
.mhcy-proof-gallery {
  background: var(--dark-2);
  padding: 56px 20px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.mhcy-proof-gallery-header {
  text-align: center;
  margin-bottom: 36px;
}
.mhcy-proof-gallery-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.mhcy-proof-gallery-sub {
  font-size: 0.9rem;
  color: var(--white-dim);
}
.mhcy-proof-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.mhcy-proof-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  background: var(--dark-3);
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.mhcy-proof-img-wrap:hover {
  transform: translateY(-4px);
  border-color: rgba(201,151,58,0.5);
}
.mhcy-proof-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mhcy-proof-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey);
  font-size: 0.8rem;
  text-align: center;
  padding: 16px;
}
.mhcy-proof-img-placeholder span {
  font-size: 2rem;
}
.mhcy-proof-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 20px 12px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}
/* Lightbox overlay */
.mhcy-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mhcy-lightbox.open { display: flex; }
.mhcy-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #333;
}
.mhcy-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 4px 8px;
}
@media (max-width: 480px) {
  .mhcy-proof-gallery-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .mhcy-proof-img-wrap { aspect-ratio: 3/2; }
}

/* ══════════════════════════════════════════════════════════════
   YOUTUBE VIDEO TESTIMONIALS — Added v2
   ══════════════════════════════════════════════════════════════ */
.mhcy-video-section {
  background: var(--dark);
  padding: 60px 20px;
  border-top: 1px solid #1e1e1e;
}
.mhcy-video-section-header {
  text-align: center;
  margin-bottom: 36px;
}
.mhcy-video-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.mhcy-video-section-sub {
  font-size: 0.9rem;
  color: var(--white-dim);
}
.mhcy-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.mhcy-video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mhcy-video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--dark-3);
  border: 1px solid #2a2a2a;
}
.mhcy-video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mhcy-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--grey);
  font-size: 0.78rem;
  text-align: center;
  padding: 12px;
}
.mhcy-video-placeholder span { font-size: 2.2rem; }
.mhcy-video-label {
  font-size: 0.83rem;
  color: var(--white-dim);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
  padding: 0 4px;
}
@media (max-width: 640px) {
  .mhcy-video-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
@media (min-width: 641px) and (max-width: 900px) {
  .mhcy-video-grid { grid-template-columns: 1fr 1fr; }
}
