/* THE HEMPIRE v2 — current-Rust in-game menu design language.
   v2 after boss review + his in-game reference shot:
   - nav = near-invisible translucent strip, icon+label items, active = SOLID RED BLOCK
   - brand = Hempire logo image
   - hero video = true 16:9, zero crop
   - hero copy centered: WELCOME TO (white) / THE HEMPIRE (red)
   - QUICK JOIN panel overlays the scene like the in-game server list */

:root {
  --red: #cd412b;
  --red-hot: #e5502f;
  --ink: #e6e2dc;
  --ink-dim: #9a958d;
  --panel: rgba(11, 13, 15, 0.82);
  --panel-line: rgba(230, 226, 220, 0.09);
  --bg: #0b0d0f;
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Roboto Condensed', sans-serif;
  --nav-h: 70px;
  --social-h: 73px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--font-body); font-weight: 300; }
a { text-decoration: none; color: inherit; }

/* ===== top menu bar — barely-there translucent strip, like the game ===== */
#menubar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: stretch; padding: 0;
  background: rgba(10, 12, 14, 0.38);
  backdrop-filter: blur(3px);
}
.brand {
  display: flex; align-items: center; justify-content: center;
  width: var(--nav-h); flex: 0 0 auto; margin-left: var(--nav-h);
  background: linear-gradient(180deg, rgba(205,65,43,0.05) 0%, rgba(205,65,43,0.55) 45%, rgba(205,65,43,0.85) 100%);
}
.brand img { height: 43px; width: 43px; object-fit: contain; }
.nav-spacer { flex: 0.7; }
#mainnav { display: flex; align-items: stretch; gap: 2px; }
#mainnav a, .nav-util {
  display: flex; align-items: center; gap: 8px; padding: 0 18px;
  font-size: 1.06rem; font-weight: 700; letter-spacing: 0.14em; color: rgba(230,226,220,0.72);
  transition: color .12s, background .12s;
}
#mainnav svg, .nav-util svg { width: 20px; height: 20px; fill: currentColor; opacity: 0.9; }
#mainnav a:hover, .nav-util:hover { color: #fff; background: rgba(230,226,220,0.08); }
#mainnav a.active { color: #fff; background: linear-gradient(180deg, rgba(205,65,43,0.05) 0%, rgba(205,65,43,0.55) 45%, rgba(205,65,43,0.85) 100%); }
.nav-right { display: flex; align-items: stretch; gap: 2px; flex: 1; justify-content: flex-end; padding-right: 6px; }
.nav-divider { width: 1px; margin: 20px 10px; background: rgba(230,226,220,0.14); }

/* ===== hero — true 16:9, zero crop ===== */
#hero {
  position: relative; width: 100%; height: calc(100vh - var(--social-h));
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
#hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%; background: var(--bg);
  filter: brightness(0.9);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,13,15,0.5) 0%, rgba(11,13,15,0.05) 22%, rgba(11,13,15,0.05) 62%, rgba(11,13,15,0.85) 100%);
}
.hero-copy {
  position: absolute; z-index: 2; right: 72px; bottom: 7.2vh;
  text-align: right; width: auto; max-width: min(900px, 62vw);
}
.hero-date { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-bottom: 12px; }
#hero-date-text { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.22em; color: #ffffff; text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
.date-chip { background: #6f9c2f; color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; padding: 4px 10px; }
.hero-copy h1 {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.9rem, 6.8vw, 5.6rem); line-height: 1; letter-spacing: 0.04em; white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0,0,0,0.65);
}
.line-white { color: #fff; }
.line-red { color: var(--red-hot); }
.hero-tagline {
  margin-top: 12px; font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-weight: 400;
  color: #ffffff; text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.hero-sub { margin-top: 16px; font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: var(--ink); font-weight: 400; text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
.hero-cta { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 24px;
  font-size: 0.86rem; font-weight: 700; letter-spacing: 0.14em; transition: .15s;
}
.btn svg { width: 15px; height: 15px; fill: currentColor; }
.btn-amber { background: #e0a52e; color: #1a1408; }
.btn-amber:hover { background: #f0b83e; transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hot); transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(230,226,220,0.4); color: var(--ink); background: rgba(11,13,15,0.35); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(11,13,15,0.6); }

/* QUICK JOIN — in-game server panel, right side of the scene */
#quickjoin {
  position: absolute; right: 72px; top: calc(var(--nav-h) + 64px); z-index: 2;
  width: 540px; background: transparent;
}
.qj-head {
  display: flex; align-items: center; gap: 7px;
  padding: 4px 2px 10px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.22em;
  color: rgba(230,226,220,0.9); text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.qj-head svg { width: 13px; height: 13px; fill: currentColor; }
.srow {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px 12px 16px; margin-bottom: 6px;
  background: rgba(12, 14, 17, 0.82);
  transition: background .12s; position: relative;
}
.srow::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: transparent; transition: background .12s;
}
.srow:hover { background: rgba(205, 65, 43, 0.14); }
.srow:hover::before { background: var(--red); }
.s-main { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.s-name {
  font-weight: 700; font-size: 1.02rem; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.s-meta { display: flex; align-items: center; gap: 5px; }
.s-meta em {
  font-style: normal; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  color: rgba(230,226,220,0.55); background: rgba(230,226,220,0.1); padding: 2px 7px;
}
.s-age {
  display: flex; align-items: center; gap: 4px; margin-left: 4px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(230,226,220,0.45);
}
.s-age svg { width: 10px; height: 10px; fill: currentColor; }
.s-go {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(230,226,220,0.3); color: rgba(230,226,220,0.75);
  display: flex; align-items: center; justify-content: center; transition: .12s;
}
.s-go svg { width: 12px; height: 12px; fill: currentColor; }
.srow:hover .s-go { border-color: var(--red-hot); color: var(--red-hot); }

/* ===== sections ===== */
.panel-section { padding: 64px 6vw; max-width: 1280px; margin: 0 auto; }
.panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.fpanel {
  background: var(--panel); border: 1px solid var(--panel-line); padding: 28px 26px 24px;
  display: flex; flex-direction: column; gap: 12px; transition: .15s; position: relative; overflow: hidden;
}
.fpanel::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.fpanel:hover::after { transform: scaleX(1); }
.fpanel:hover { border-color: rgba(205,65,43,0.4); }
.fpanel h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.05em; }
.fpanel p { color: var(--ink-dim); font-size: 0.95rem; line-height: 1.55; flex: 1; }
.fpanel-go { color: var(--red); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.18em; }

/* ===== bottom social bar ===== */
#socialbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; height: var(--social-h);
  display: flex; align-items: center; justify-content: space-between; padding: 0 22px;
  background: rgba(10, 12, 14, 0.6); backdrop-filter: blur(3px);
  border-top: 1px solid rgba(230,226,220,0.05);
  font-size: 0.75rem; letter-spacing: 0.1em;
}
.sb-left { display: flex; align-items: center; gap: 8px; color: var(--ink-dim); }
.sb-dot { width: 7px; height: 7px; border-radius: 50%; background: #7bc96f; box-shadow: 0 0 6px #7bc96f; }
.sb-mid { display: flex; gap: 20px; }
.sb-mid a { color: var(--ink-dim); font-weight: 700; transition: color .15s; }
.sb-mid a:hover { color: var(--ink); }
.sb-discord { color: #8ea1e1; font-weight: 700; }
.sb-discord:hover { color: #aebdf0; }

body { padding-bottom: var(--social-h); overflow: hidden; }

/* mobile */
@media (max-width: 1100px) {
  #quickjoin { position: static; transform: none; width: auto; margin: 0 4vw 30px; order: 3; }
  #hero { aspect-ratio: auto; min-height: 72vh; flex-direction: column; justify-content: center; padding-top: var(--nav-h); }
  #hero-video { object-fit: cover; }
  .hero-copy { transform: none; margin: auto 0; }
}
@media (max-width: 900px) {
  #mainnav { overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; }
  #mainnav::-webkit-scrollbar { display: none; }
  #mainnav a span { display: none; }
  #mainnav a { padding: 0 6px; }
  .nav-spacer { flex: 0 0 6px; }
  .nav-right { flex: 0 0 auto; }
  .nav-util { white-space: nowrap; }
  .sb-mid { display: none; }
}


/* ===== BOTTOM BAR — in-game style (2026-07-10, boss pic spec) ===== */
#bottombar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 120; height: var(--social-h);
  display: flex; align-items: center; gap: 14px; padding: 0 20px;
  background: rgba(8,9,10,0.92);
}
.bb-chat { position: relative; display: flex; align-items: center; width: 588px; max-width: 44vw; }
#bb-chatinput {
  flex: 1; height: 48px; padding: 0 59px 0 17px; border: 0; outline: 0;
  background: rgba(255,255,255,0.07); color: #ddd; font: 400 1.15rem var(--font-body);
}
#bb-chatinput::placeholder { color: #777; }
#bb-chatsend {
  position: absolute; right: 6px; width: 42px; height: 40px; border: 0; cursor: pointer;
  background: transparent; color: #999; display: flex; align-items: center; justify-content: center;
}
#bb-chatsend svg { width: 24px; height: 24px; fill: currentColor; }
#bb-chatsend:hover { color: #fff; }
#bb-chatlog {
  position: absolute; bottom: calc(100% + 8px); left: 0; width: 100%; max-height: 280px;
  overflow-y: auto; background: rgba(10,11,13,0.96); padding: 14px;
  display: flex; flex-direction: column; gap: 11px; font-size: 1.05rem;
}
#bb-chatlog .m-user { color: #e0a52e; text-align: right; }
#bb-chatlog .m-bot { color: #cfd3d6; }
#bb-chatlog .m-bot b { color: #6f9c2f; }
.bb-addperson {
  width: 56px; height: 48px; border: 0; background: rgba(255,255,255,0.05); color: #666;
  display: flex; align-items: center; justify-content: center; cursor: default;
}
.bb-addperson svg { width: 25px; height: 25px; fill: currentColor; }
.bb-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.bb-social-wrap { position: relative; }
#bb-social {
  height: 48px; border: 0; cursor: pointer; padding: 0 17px;
  background: rgba(255,255,255,0.07); color: #cfd3d6;
  display: flex; align-items: center; gap: 11px;
  font: 700 1.05rem var(--font-body); letter-spacing: 0.1em;
}
#bb-social svg { width: 25px; height: 25px; fill: currentColor; }
#bb-social:hover { background: rgba(205,65,43,0.35); color: #fff; }
.bb-count { color: #8b9196; font-weight: 400; }
#bb-socialmenu {
  position: absolute; bottom: calc(100% + 8px); right: 0; min-width: 238px;
  background: rgba(10,11,13,0.97); display: flex; flex-direction: column;
}
#bb-socialmenu a {
  padding: 14px 22px; color: #cfd3d6; text-decoration: none;
  font: 700 1.05rem var(--font-body); letter-spacing: 0.1em;
}
#bb-socialmenu a:hover { background: rgba(205,65,43,0.5); color: #fff; }
#bb-avatar {
  width: 53px; height: 53px; background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center; color: #555; overflow: hidden;
}
#bb-avatar svg { width: 31px; height: 31px; fill: currentColor; }
#bb-avatar img { width: 100%; height: 100%; object-fit: cover; }
#bb-socialmenu[hidden], #bb-chatlog[hidden] { display: none; }

/* ===== VIDEO CARD — in-game bottom-left, grows on hover (2026-07-10) ===== */
#vidcard {
  position: fixed; left: 72px; bottom: calc(var(--social-h) + 7.2vh); z-index: 110;
  width: 500px; transition: width .22s ease; background: #0a0b0d;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
#vidcard:hover { width: 840px; max-width: 62vw; }
#vidcard video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 14px; }
.vc-strip {
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2;
  display: flex; align-items: center; gap: 10px; padding: 10px 12px 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 60%);
}
.vc-title {
  flex: 1; color: #fff; font: 700 1.05rem var(--font-body); letter-spacing: 0.08em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}
#vidcard:hover .vc-title { font-size: 1.3rem; }
#vc-audio {
  width: 38px; height: 32px; border: 0; cursor: pointer; flex: 0 0 auto;
  background: var(--red); color: #fff; display: none; align-items: center; justify-content: center;
}
#vc-audio svg { width: 18px; height: 18px; fill: currentColor; }
#vc-audio.playing { background: #6f9c2f; }
#vidcard:hover #vc-audio { display: flex; }
.vc-view {
  display: none; align-items: center; gap: 7px; padding: 7px 15px; flex: 0 0 auto;
  background: #e0a52e; color: #171310; text-decoration: none;
  font: 700 0.95rem var(--font-body); letter-spacing: 0.08em;
}
.vc-view svg { width: 16px; height: 16px; fill: currentColor; }
#vidcard:hover .vc-view { display: inline-flex; }
.vc-view:hover { background: #f0b83e; }
.vc-progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 7px; z-index: 3;
  background: rgba(255,255,255,0.15);
}
#vc-progress-fill { height: 100%; width: 0%; background: var(--red); }
.vc-enlarge {
  position: absolute; top: 0; right: 0; z-index: 2; width: 46px; height: 46px;
  background: rgba(20,22,24,0.65); color: #cfd3d6;
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.vc-enlarge svg { width: 24px; height: 24px; fill: currentColor; }
#vidcard:hover .vc-enlarge { display: none; }

/* ===== RESPONSIVE LAYER (2026-07-10) — 4K look (≥2100px) untouched; 1080p scales; mobile stacks ===== */
@media (max-width: 2100px) {
  #quickjoin { width: 440px; right: 40px; top: calc(var(--nav-h) + 40px); }
  .qj-head { font-size: 0.78rem; }
  .s-name { font-size: 0.94rem; }
  .s-meta em { font-size: 0.66rem; }
  .s-age { font-size: 0.62rem; }
  .hero-copy { right: 40px; bottom: 6vh; max-width: 56vw; }
  .hero-copy h1 { font-size: clamp(2.6rem, 4.4vw, 4.4rem); }
  #vidcard { width: 380px; left: 40px; }
  #vidcard:hover { width: 640px; }
  :root { --social-h: 60px; }
  #bb-chatinput { height: 40px; font-size: 1rem; padding: 0 48px 0 14px; }
  #bb-chatsend { width: 36px; height: 34px; }
  .bb-addperson { width: 48px; height: 40px; }
  #bb-social { height: 40px; font-size: 0.9rem; padding: 0 14px; }
  #bb-avatar { width: 44px; height: 44px; }
}
@media (max-width: 1100px) {
  body { overflow: auto; }
  .hero-copy { position: static; width: auto; max-width: none; text-align: center; margin: 24px auto 0; padding: 0 5vw; }
  .hero-copy h1 { white-space: normal; font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .hero-date, .hero-cta { justify-content: center; }
  #vidcard { position: static; width: auto; margin: 14px 4vw; order: 4; }
  #vidcard:hover { width: auto; }
  #vidcard .vc-view, #vidcard #vc-audio { display: inline-flex; }
  #vidcard #vc-audio { display: flex; }
  .vc-enlarge { display: none; }
  #vidcard video { margin-bottom: 14px; }
  .bb-chat { flex: 1; width: auto; max-width: none; }
  .bb-addperson { display: none; }
}
@media (max-width: 640px) {
  #bb-social { padding: 0 10px; }
  .bb-count { display: none; }
  #bottombar { gap: 8px; padding: 0 10px; }
}

/* ===== TODAY'S CHALLENGE modal (2026-07-10) ===== */
#challenge-modal[hidden] { display: none; }
#challenge-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; }
.cm-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.72); }
.cm-panel { position: relative; width: min(620px, 90vw); background: #101214; box-shadow: 0 8px 40px rgba(0,0,0,0.8); }
.cm-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px;
  background: var(--red); color: #fff; font: 700 1.05rem var(--font-body); letter-spacing: 0.1em; }
#cm-close { border: 0; background: transparent; color: #fff; font-size: 1.1rem; cursor: pointer; }
.cm-body { padding: 22px 20px; color: #dfe3e6; font: 400 1.05rem/1.55 var(--font-body); letter-spacing: 0.02em; }
.cm-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 20px 18px; }
.cm-asof { color: #6b7176; font-size: 0.75rem; }


/* ===== v2 QA fixes (2026-07-11) ===== */
/* live pop counters (H4/M2) */
.s-pop { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: #8b9196; }
.s-pop.live { color: #7db83a; }
.bb-pop { color: #8b9196; font: 700 0.92rem var(--font-body); letter-spacing: 0.1em; white-space: nowrap; }
@media (max-width: 640px) {
  /* M1: the 2100px block re-imposed width:440px below 1100px (later rule wins) — release it on phones.
     #hero is a centered flex column, so the item must stretch or it sizes to its 432px min-content. */
  #quickjoin { width: auto; right: auto; align-self: stretch; }
  .srow { min-width: 0; }
  .s-meta { flex-wrap: wrap; }
  /* M3 + L2-L5: icon-only header utils on phones, no label wrap */
  .nav-util span { display: none; }
  .nav-util { padding: 0 12px; }
  /* M4: opaque bottom bar so hero content can't ghost through it */
  #bottombar { background: rgba(8, 9, 10, 1); }
  .bb-pop { display: none; }
}

/* mobile overflow fix — hero date-chip + CTA were spilling off-screen (2026-07-12) */
@media (max-width: 900px) {
  .hero-date { flex-wrap: wrap; justify-content: center; }
  .hero-cta { flex-wrap: wrap; justify-content: center; }
  .hero-copy { max-width: 100%; overflow-wrap: break-word; }
  .date-chip { white-space: normal; text-align: center; }
}

/* mobile hero containment — force static/centered, kill horizontal overflow (2026-07-12 v45) */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  #hero .hero-copy { position: static; right: auto; left: auto; width: auto; max-width: 100%;
    text-align: center; margin: 20px auto 0; padding: 0 5vw; box-sizing: border-box; }
  #hero .hero-sub, #hero .hero-tagline, #hero .hero-copy h1 { max-width: 100%; overflow-wrap: break-word; }
  #hero .hero-date, #hero .hero-cta { flex-wrap: wrap; justify-content: center; max-width: 100%; }
}

/* mobile: stack the 2 hero buttons so neither clips (2026-07-12 v46) */
@media (max-width: 600px) {
  #hero .hero-cta { flex-direction: column; align-items: center; gap: 10px; }
  #hero .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* ===== mobile fixes 2026-07-14 (boss: date under bar / radio over quickjoin / logo left) ===== */
@media (max-width: 1100px) {
  /* the 1100px block made #vidcard static, which DESTROYED its containing block — the
     absolute .vc-strip/.vc-progress re-anchored to the PAGE and floated over #quickjoin */
  #vidcard { position: relative; }
}
@media (max-width: 900px) {
  /* flex justify-content:center + content taller than 72vh = spills ABOVE padding -> date under the fixed bar */
  #hero { justify-content: flex-start; padding-top: calc(var(--nav-h) + 18px); }
  /* desktop's 70px brand offset wastes a logo-width of nav space on phones */
  .brand { margin-left: 0; }
}

/* ===== short-viewport desktop layout 2026-07-14 (boss spec, 3-screenshot refinement) =====
   Rule: header fits UNDER quickjoin (tall windows) = normal right-anchored layout.
   Header does NOT fit under quickjoin (viewport under ~800px tall) = header moves LEFT of
   quickjoin, and the radio card drops out of fixed into the flow BELOW the hero — reachable
   by scroll, "off screen if needed" (boss revised the earlier hide-it rule). */
@media (min-width: 1101px) and (max-height: 920px) { /* 800->920 2026-07-14: boss's zoomed viewport (~850-900 CSS px) collided in the crack between the band and where the tall layout truly fits (~880px) */
  .hero-copy { left: 40px; right: auto; bottom: 12vh; text-align: left; max-width: calc(100vw - 560px); }
  .hero-date, .hero-cta { justify-content: flex-start; }
  /* boss 2026-07-14: hero CTA bottoms align with quickjoin bottom — shared baseline (4vh->12vh same night, "big gap at the top") */
  #quickjoin { top: auto; bottom: 12vh;
    max-height: calc(100% - 12vh - var(--nav-h) - 16px); overflow-y: auto; } /* ceiling guard: hero is full-bleed from viewport 0 BEHIND the fixed bar, so the guard must reserve nav-h inside the hero box */
  #vidcard { position: relative; left: auto; top: auto; bottom: auto; right: auto;
    width: 380px; margin: 20px 40px; }
}
/* really short: quickjoin shrinks from the top (bottom-anchored) + scrolls internally */
/* (<=560 handled by the 800-band ceiling guard above) */

/* mobile: radio card UNDER quick join (boss 2026-07-14 phone screenshot). Root cause: the
   base #hero fixed height (100vh - social) survived into mobile — content overflows the box
   and #vidcard (next in flow) rendered on top of the spilled quickjoin rows. Let it grow. */
@media (max-width: 1100px) {
  #hero { height: auto; overflow: visible; }
  /* the v52 position:relative fix left the base fixed-mode offsets (left:72px, bottom:~100px)
     active as RELATIVE shifts — card floated up over quickjoin. Reset to pure flow position. */
  #vidcard { left: auto; right: auto; top: auto; bottom: auto; }
}
