:root {
  --bg: #0b0a08;
  --bg-soft: #14120e;
  --card: #181510;
  --line: #2a241c;
  --amber: #e0a458;
  --amber-hot: #f0b86c;
  --cream: #f3ead9;
  --muted: #a89c88;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
}

img { display: block; max-width: 100%; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.head-inner {
  max-width: 1080px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; gap: 18px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.15rem; letter-spacing: 0.28em;
  color: var(--cream); text-decoration: none;
}
.head-nav { margin-left: auto; display: flex; gap: 18px; }
.head-nav a {
  color: var(--muted); text-decoration: none; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.head-nav a:hover { color: var(--amber-hot); }

.ai-badge {
  display: inline-block;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em;
  padding: 4px 9px; border-radius: 999px;
  white-space: nowrap;
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; overflow: hidden; }
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,10,8,0.25) 0%, rgba(11,10,8,0.15) 40%, rgba(11,10,8,0.92) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  min-height: 92vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center;
  padding: 40px 20px 64px;
}
.hero-badge { margin-bottom: 18px; }
.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 5rem);
  letter-spacing: 0.22em; font-weight: 400;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.tagline {
  margin-top: 12px;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream);
}
.hero-note {
  margin-top: 10px; font-size: 0.85rem; color: var(--muted);
  font-style: italic;
}
.hero-cta { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid transparent; border-radius: 999px;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  font-family: var(--sans);
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--amber); color: #16110a; font-weight: 700; }
.btn-primary:hover { background: var(--amber-hot); }
.btn-ghost { border-color: rgba(243,234,217,0.5); color: var(--cream); background: transparent; }
.btn-ghost:hover { border-color: var(--cream); }

/* ---------- sections ---------- */
section { padding: 72px 0; }
section h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.24em; text-align: center;
}
.lede { text-align: center; color: var(--muted); max-width: 560px; margin: 12px auto 34px; font-size: 0.95rem; }
.fine { font-size: 0.78rem; color: var(--muted); }

/* ---------- connect / drop list ---------- */
.connect { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.connect-form {
  display: flex; gap: 10px; max-width: 460px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.connect-form input {
  flex: 1 1 260px;
  padding: 12px 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  color: var(--cream); font-size: 0.95rem;
}
.connect-form input:focus { outline: none; border-color: var(--amber); }
#connect-msg { text-align: center; margin-top: 12px; }

/* ---------- gallery ---------- */
.gallery { background: var(--bg); }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.gallery-more {
  margin: 28px 0 0;
  text-align: center;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.card img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.card-cap {
  padding: 10px 14px 4px;
  font-size: 0.9rem; font-style: italic; color: var(--cream);
}
.card-actions {
  padding: 8px 14px 12px;
  display: flex; align-items: center; gap: 12px;
}
.like-btn {
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); cursor: pointer;
  padding: 6px 14px; font-size: 0.85rem;
  transition: all 0.15s ease;
}
.like-btn:hover { border-color: var(--amber); color: var(--amber); }
.like-btn.liked { border-color: var(--amber); color: var(--amber-hot); }
.like-btn .count { font-weight: 700; margin-left: 4px; }

.card-comments { padding: 0 14px 12px; border-top: 1px solid var(--line); margin-top: 2px; }
.comment-list { max-height: 180px; overflow-y: auto; padding: 10px 0 6px; display: flex; flex-direction: column; gap: 8px; }
.comment { font-size: 0.82rem; color: var(--muted); }
.comment b { color: var(--cream); font-weight: 600; margin-right: 6px; }
.comment .when { display: block; font-size: 0.7rem; color: #6d6252; margin-top: 2px; }
.comment-form { display: flex; flex-direction: column; gap: 6px; }
.comment-form input, .comment-form textarea {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px;
  color: var(--cream); padding: 8px 10px; font-size: 0.85rem; font-family: var(--sans);
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--amber); }
.comment-form textarea { resize: vertical; min-height: 52px; }
.comment-form .cf-row { display: flex; gap: 8px; }
.comment-form .cf-row input:first-child { flex: 0 0 110px; }
.comment-form button {
  align-self: flex-end;
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  color: var(--amber); cursor: pointer; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px;
}
.comment-form button:hover { border-color: var(--amber); }
.cf-msg { font-size: 0.75rem; color: var(--amber); }

/* ---------- prints ---------- */
.prints { background: var(--bg-soft); border-top: 1px solid var(--line); }
.prints-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; max-width: 760px; margin: 0 auto 36px;
}
.print-card {
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  background: var(--card); position: relative;
}
.print-card img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.print-name {
  position: absolute; left: 10px; bottom: 10px;
  font-size: 0.68rem; letter-spacing: 0.2em;
  background: rgba(11,10,8,0.78); color: var(--cream);
  padding: 4px 10px; border-radius: 999px;
}
.print-card-wide { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; width: 100%; }
.order-form {
  max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.order-form .row { display: flex; gap: 10px; flex-wrap: wrap; }
.order-form .row > * { flex: 1 1 220px; }
.order-form input, .order-form select, .order-form textarea {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  color: var(--cream); padding: 11px 14px; font-size: 0.9rem; font-family: var(--sans);
}
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { outline: none; border-color: var(--amber); }
.order-form button { align-self: flex-start; }
#order-msg { margin-top: 4px; }

/* ---------- footer ---------- */
.site-foot { border-top: 1px solid var(--line); padding: 44px 0 56px; text-align: center; }
.foot-social { display: flex; gap: 26px; justify-content: center; margin-bottom: 18px; }
.foot-social a { color: var(--muted); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
.foot-social a:hover { color: var(--amber-hot); }
.foot-nav { display: flex; gap: 18px; justify-content: center; margin-bottom: 22px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.foot-nav a { color: var(--muted); text-decoration: none; }
.foot-nav a:hover { color: var(--amber-hot); }

/* ---------- subpages ---------- */
.page-hero {
  padding: 96px 0 72px;
  text-align: center;
  background: linear-gradient(180deg, #17130c 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 0.24em; margin-top: 18px;
}
.page-hero .tagline { margin-top: 10px; }

.story { background: var(--bg); }
.story-alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.story-img img {
  border-radius: 14px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
}
.story-copy h2 {
  font-family: var(--serif); font-weight: 400;
  letter-spacing: 0.2em; font-size: 1.3rem;
  text-align: left; margin-bottom: 18px;
}
.story-copy p { color: var(--muted); margin-bottom: 14px; font-size: 0.97rem; max-width: 46ch; }
.story-copy .hero-cta { margin-top: 26px; }

.music-room { background: var(--bg); }
.track {
  max-width: 640px; margin: 0 auto 56px;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--card); padding: 26px;
  text-align: center;
}
.track-label {
  display: inline-block;
  font-size: 0.66rem; letter-spacing: 0.28em; color: var(--amber);
  border: 1px solid var(--amber); border-radius: 999px;
  padding: 4px 10px; margin-bottom: 14px;
}
.track h2 { font-family: var(--serif); font-weight: 400; letter-spacing: 0.14em; font-size: 1.5rem; }
.track .lede { margin: 8px auto 18px; }
.track-cover { display: block; width: 300px; max-width: 80%; margin: 0 auto 18px; border-radius: 10px; border: 1px solid var(--line); }
.track-player { width: 100%; margin-bottom: 12px; }
.track-player::-webkit-media-controls-panel { background: var(--bg-soft); }
.track .fine { color: #6d6252; }
.music-note { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.music-note h2 { font-family: var(--serif); font-weight: 400; letter-spacing: 0.24em; font-size: 1.3rem; margin-bottom: 10px; }
.music-note .lede { margin-bottom: 8px; }

.contact { background: var(--bg-soft); border-top: 1px solid var(--line); }
.contact .lede { margin-bottom: 30px; }

@media (max-width: 720px) {
  .story-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero { padding: 64px 0 48px; }
}

.disclosure {
  max-width: 640px; margin: 0 auto 14px;
  font-size: 0.8rem; color: var(--muted); line-height: 1.6;
}
.disclosure strong { color: var(--cream); }

@media (max-width: 560px) {
  .head-nav { display: none; }
  section { padding: 52px 0; }
}

/* ---------- room band ---------- */
.roomband { position: relative; overflow: hidden; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.roomband-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.roomband-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,10,8,0.45) 0%, rgba(11,10,8,0.25) 40%, rgba(11,10,8,0.94) 100%); }
.roomband-copy { position: relative; z-index: 2; min-height: clamp(440px, 62vh, 640px); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; text-align: center; padding: 48px 20px 60px; }
.roomband-copy .lede { margin: 12px auto 24px; }
.roomband-copy .fine { margin-top: 14px; }

.track-dl {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); text-decoration: none;
  border-bottom: 1px solid rgba(214, 164, 96, 0.35); padding-bottom: 2px;
}
.track-dl:hover { border-bottom-color: var(--amber); }

/* ---------- zika radio (music room) ---------- */
.radio-launch { max-width: 520px; margin: 6px auto 0; border: 1px solid var(--line); border-radius: 14px; background: var(--card); padding: 22px 20px 20px; }
.radio-station-kicker { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--muted); font-weight: 700; margin-bottom: 7px; }
.radio-station-name { font-family: var(--serif); font-weight: 400; font-size: 1.55rem; letter-spacing: 0.26em; margin-bottom: 7px; }
.radio-tag { font-size: 0.92rem; color: var(--muted); font-style: italic; max-width: 400px; margin: 0 auto 16px; }
.radio-launch .fine { margin-top: 12px; }
.radio-start { display: inline-flex; align-items: center; gap: 9px; }
.radio-start svg { width: 13px; height: 13px; fill: currentColor; display: block; }

.radio-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(20, 18, 14, 0.97);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  animation: radio-in 0.22s ease;
  box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.45);
}
@keyframes radio-in { from { transform: translateY(100%); } to { transform: translateY(0); } }
body.radio-open { padding-bottom: 78px; }

.radio-progress { position: absolute; top: -1px; left: 0; right: 0; height: 16px; cursor: pointer; }
.radio-progress::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(42, 36, 28, 0.95); }
#zika-radio-fill { position: absolute; left: 0; bottom: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--amber), var(--amber-hot)); }

.radio-inner { max-width: 1080px; margin: 0 auto; padding: 9px 16px 10px; display: flex; align-items: center; gap: 12px; }
.radio-eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 17px; width: 15px; flex: 0 0 auto; }
.radio-eq i { width: 3px; height: 40%; background: var(--amber); animation: radio-eq 0.85s ease-in-out infinite alternate; }
.radio-eq i:nth-child(2) { animation-delay: 0.22s; height: 70%; }
.radio-eq i:nth-child(3) { animation-delay: 0.44s; height: 52%; }
.radio-bar.radio-paused .radio-eq i { animation-play-state: paused; opacity: 0.35; }
@keyframes radio-eq { from { height: 22%; } to { height: 100%; } }

.radio-thumb { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; border: 1px solid var(--line); flex: 0 0 auto; }
.radio-meta { min-width: 0; flex: 1 1 auto; display: flex; flex-direction: column; line-height: 1.3; }
.radio-kicker { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.3em; color: var(--amber); }
.radio-count { margin-left: 4px; color: var(--muted); font-weight: 400; letter-spacing: 0.14em; display: none; }
.radio-title { font-size: 0.92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.radio-controls { display: flex; align-items: center; gap: 2px; flex: 0 0 auto; }
.radio-btn { width: 40px; height: 40px; border: 0; border-radius: 50%; background: transparent; color: var(--cream); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.radio-btn:hover { color: var(--amber-hot); background: rgba(224, 164, 88, 0.08); }
.radio-btn svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.radio-btn-main { width: 46px; height: 46px; background: var(--amber); color: #16110a; margin: 0 4px; }
.radio-btn-main:hover { background: var(--amber-hot); color: #16110a; }
.radio-btn-main svg { width: 20px; height: 20px; }
.radio-bar.radio-paused .radio-btn-main .ic-pause { display: none; }
.radio-bar:not(.radio-paused) .radio-btn-main .ic-play { display: none; }
.radio-on { color: var(--amber); }
.radio-live { border-color: var(--amber) !important; box-shadow: 0 0 0 1px rgba(224, 164, 88, 0.4), 0 0 30px rgba(224, 164, 88, 0.1); }

@media (min-width: 520px) { .radio-count { display: inline; } }
@media (max-width: 420px) {
  .radio-inner { gap: 8px; padding: 8px 12px 9px; }
  .radio-btn { width: 36px; height: 36px; }
  .radio-btn-main { width: 42px; height: 42px; }
}

/* ---------- zika radio page ---------- */
.radio-hero { max-width: 1280px; margin: 0 auto; background: #050403; }
.radio-hero img { display: block; width: 100%; height: auto; max-height: min(54vh, 700px); object-fit: cover; object-position: top center; }

.radio-deck { padding: 36px 0 24px; text-align: center; }
.radio-deck .radio-station-kicker { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.radio-deck h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 5vw, 2.6rem); letter-spacing: 0.3em; margin-bottom: 8px; }
.radio-deck-actions { margin-top: 18px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.radio-deck-note { margin-top: 18px; }

.radio-row { max-width: 720px; display: flex; align-items: center; gap: 16px; text-align: left; padding: 15px 20px; margin: 0 auto 10px; cursor: pointer; }
.radio-row h2 { flex: 1 1 auto; min-width: 0; font-size: 1.04rem; letter-spacing: 0.1em; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.radio-row .rt-num { flex: 0 0 auto; min-width: 2.6ch; font-size: 0.72rem; letter-spacing: 0.18em; color: var(--muted); }
.radio-row .rt-go { flex: 0 0 auto; color: var(--muted); font-size: 0.85rem; }
.radio-row audio, .radio-row img.track-cover { display: none; }
.radio-row:hover { border-color: rgba(224, 164, 88, 0.55); }
.radio-row:hover .rt-go, .radio-row:hover .rt-num { color: var(--amber-hot); }
.radio-row.radio-live .rt-num, .radio-row.radio-live .rt-go { color: var(--amber); }

.radio-more { text-align: center; margin: 26px auto 0; max-width: 560px; font-size: 0.85rem; color: var(--muted); }
.radio-more a { color: var(--amber); text-decoration: none; border-bottom: 1px solid rgba(214, 164, 96, 0.35); padding-bottom: 1px; }
.radio-more a:hover { border-bottom-color: var(--amber); }

.fine a { color: var(--amber); text-decoration: none; border-bottom: 1px solid rgba(214, 164, 96, 0.35); }
.fine a:hover { border-bottom-color: var(--amber); }


/* ---------- station reviews ---------- */
.reviews { border-top: 1px solid var(--line); padding: 60px 0 56px; }
.reviews .music-note { margin-bottom: 20px; }
.rev-avg { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.rev-avg .rv-a { color: var(--amber); }
.rev-form { max-width: 560px; margin: 0 auto 40px; }
.rev-stars { display: flex; gap: 6px; justify-content: center; margin-bottom: 14px; }
.rev-star { background: none; border: 0; padding: 2px 6px; font-size: 1.8rem; line-height: 1; color: #453c2e; cursor: pointer; transition: color .12s ease, transform .12s ease; }
.rev-star:hover { color: var(--amber-hot); transform: translateY(-1px); }
.rev-star.on { color: var(--amber); }
.rev-input { display: block; width: 100%; margin-bottom: 10px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; color: var(--cream); font-family: var(--sans); font-size: 0.92rem; padding: 12px 14px; }
.rev-input::placeholder { color: #6d6252; }
.rev-input:focus { outline: none; border-color: rgba(224, 164, 88, 0.5); }
.rev-text { resize: vertical; min-height: 78px; line-height: 1.5; }
.rev-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.rev-actions { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 4px; flex-wrap: wrap; }
.btn:disabled { opacity: 0.6; cursor: default; }
.rev-note { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }
.rev-note.bad { color: #d98c8c; }
.rev-note.good { color: var(--amber); }
.rev-list { max-width: 720px; margin: 0 auto; }
.rev-item { border: 1px solid var(--line); border-radius: 14px; background: var(--card); padding: 16px 18px; margin-bottom: 12px; text-align: left; }
.rev-item-top { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.rev-item-stars { color: var(--amber); letter-spacing: 2px; font-size: 0.95rem; }
.rev-item-name { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); }
.rev-item-date { margin-left: auto; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.08em; }
.rev-item-body { margin: 0; color: var(--cream); opacity: 0.9; font-size: 0.92rem; line-height: 1.55; white-space: pre-wrap; }
.rev-empty { text-align: center; color: var(--muted); font-size: 0.88rem; }
.rev-new { border-color: rgba(224, 164, 88, 0.55); }

@media (max-width: 560px) {
  .rev-item-date { margin-left: 0; width: 100%; }
}


/* game band - radio deck (09-14) */
.game-band { display: block; max-width: 560px; margin: 24px auto 0; border: 1px solid var(--line); border-radius: 16px; background: var(--card); padding: 20px 24px; text-decoration: none; transition: border-color .15s ease, transform .15s ease; }
.game-band:hover { border-color: rgba(224, 164, 88, 0.55); transform: translateY(-1px); }
.game-band .gb-kicker { display: block; font-size: 0.58rem; letter-spacing: 0.3em; color: var(--muted); font-weight: 700; margin-bottom: 7px; }
.game-band .gb-title { display: block; font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.2em; color: var(--cream); margin-bottom: 7px; }
.game-band .gb-line { display: block; font-size: 0.85rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.game-band .gb-go { display: inline-block; font-size: 0.72rem; letter-spacing: 0.22em; color: var(--amber); border: 1px solid rgba(214, 164, 96, 0.5); border-radius: 999px; padding: 8px 20px; }
.game-band:hover .gb-go { color: var(--amber-hot); border-color: var(--amber-hot); }
