/* lasvegasvp.com - WILD design language (ported from nft.lasvegasvp.com wild.css)
   with the Vegas Gold theme (theme-gold.css) baked in. */
:root {
  --bg: #0d0b06;
  --bg2: #15120a;
  --glass: rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text: #eceaf6;
  --muted: rgba(236, 234, 246, 0.66);
  --grad: linear-gradient(95deg, #f2b93b, #ff8a3c);
  --grad-hover: linear-gradient(95deg, #ffd35e, #ffa25e);
  --neon: #f5c778;
  --gold-soft: #f0c987;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: Inter, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(700px 500px at 85% -5%, rgba(242, 185, 59, .14), transparent 65%),
    radial-gradient(600px 480px at -10% 40%, rgba(255, 138, 60, .09), transparent 60%),
    radial-gradient(700px 600px at 60% 110%, rgba(180, 120, 40, .10), transparent 65%);
}
h1, h2, h3, .brand { font-family: Outfit, Inter, sans-serif; }
a { color: var(--gold-soft); text-decoration: none; border-bottom: 1px solid rgba(240,201,135,.35); transition: color .15s, border-color .15s; }
a:hover { color: #ffe2ae; border-bottom-color: #ffe2ae; }
nav a, footer a, .btn, .card, .reel { border-bottom: 0; }
img { max-width: 100%; }

/* ---------- header: floating glass, solidifies on scroll ---------- */
header {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px; position: sticky; top: 0; z-index: 20;
  background: rgba(13, 11, 6, 0.45);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
header.scrolled { background: rgba(13, 11, 6, 0.85); border-bottom-color: rgba(255,255,255,.08); }
.brand-link { display: flex; align-items: center; gap: 12px; border-bottom: 0; }
header .logo { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(242,185,59,.4); }
header .brand { font-size: 1.25rem; font-weight: 700; letter-spacing: .02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
header nav { margin-left: auto; display: flex; align-items: center; }
header nav a { color: var(--muted); margin-left: 26px; font-size: .93rem; font-weight: 500; position: relative; }
header nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--grad); transition: right .25s ease; border-radius: 2px;
}
header nav a:hover { color: #fff; }
header nav a:hover::after { right: 0; }
header nav a.nav-live { color: var(--muted); font-weight: 600; font-size: .85rem; letter-spacing: .06em; }
header nav a.nav-live.is-live { color: #fff; }
header nav a.nav-live.is-live::before {
  content: '● '; color: #ff5a5a; animation: blink 1.4s infinite;
}
@keyframes blink { 50% { opacity: .3; } }
#burger {
  display: none; margin-left: auto; appearance: none; border: 0; background: none;
  color: #fff; font-size: 1.6rem; cursor: pointer; padding: 4px 8px;
}
@media (max-width: 760px) {
  #burger { display: block; }
  header nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13, 11, 6, 0.96); backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch;
    padding: 6px 0 12px; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  header nav.open { display: flex; }
  header nav a { margin: 0; padding: 13px 24px; }
  header nav a::after { display: none; }
}

/* ---------- hero: Ken Burns photo fading into the page ---------- */
.hero-band { position: relative; color: #fff; padding: 10px 0 40px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: -4% -4% 0 -4%; z-index: -1;
  background: url("img/hero-vp.jpg") center 55% / cover no-repeat;
  animation: kenburns 34s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.09) translateY(-1.5%); }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,11,6,.72) 0%, rgba(40,30,12,.55) 35%, rgba(13,11,6,.94) 92%, var(--bg) 100%);
}
.band-inner { max-width: 1200px; margin: 0 auto; padding: 0 18px; }
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; padding: 56px 0 30px; }
@media (max-width: 880px) { .hero { grid-template-columns: 1fr; padding-top: 34px; } }
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3rem); font-weight: 700; line-height: 1.12; margin: 0 0 18px;
  background: linear-gradient(100deg, #fff 25%, #f5d78e 65%, #ff9d5c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .sub { font-size: 1.2rem; font-weight: 600; line-height: 1.5; color: #fdf6e8; margin: 0 0 8px; }
.hero p { line-height: 1.7; color: var(--muted); margin: 0 0 22px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn { flex: 1 1 0; min-width: 190px; max-width: 240px; text-align: center; }
.btn {
  display: inline-block; padding: 13px 24px; border-radius: 12px;
  font-weight: 600; font-size: .98rem; color: #1a1206;
  background: var(--grad); transition: transform .15s, box-shadow .15s;
  box-shadow: 0 6px 22px rgba(242,185,59,.3);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,138,60,.4); color: #1a1206; }
.btn.ghost {
  background: var(--glass); color: var(--text);
  border: 1px solid var(--glass-border); box-shadow: none;
}
.btn.ghost:hover { border-color: rgba(242,185,59,.45); color: #ffe2ae; }

/* schedule card on the hero (glass) */
.sched-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 18px; padding: 22px 24px;
  text-align: center; max-width: 380px; width: 100%; justify-self: center;
}
@media (max-width: 880px) { .sched-card { justify-self: stretch; margin: 0 auto; } }
.sched-card h3 { margin: 0 0 12px; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; color: var(--neon); }
.sched-days { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; justify-content: center; }
.sched-days span {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  padding: 5px 13px; border-radius: 999px; background: rgba(0,0,0,.35); color: var(--muted);
  border: 1px solid var(--glass-border);
}
.sched-days span.today { background: var(--grad); color: #1a1206; border-color: transparent; }
.sched-time { font-size: 1.5rem; font-weight: 700; }
.sched-next { font-size: .9rem; color: var(--neon); margin-top: 4px; min-height: 20px; }

/* ---------- sections ---------- */
main { max-width: 1200px; margin: 0 auto; padding: 0 18px; }
section { padding: 46px 0 14px; }
section > h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin: 0 0 8px;
  background: linear-gradient(95deg, #fff 20%, #f5d78e 60%, #ffab6b 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sec-sub { color: var(--muted); margin: 0 0 26px; max-width: 900px; line-height: 1.6; text-wrap: pretty; }
.sec-more { text-align: center; margin-top: 24px; }

/* replays */
.month-picker { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.month-picker button {
  font: 600 .82rem Inter, sans-serif; letter-spacing: .04em;
  padding: 8px 15px; border-radius: 999px; cursor: pointer;
  background: var(--glass); color: var(--muted); border: 1px solid var(--glass-border);
  transition: color .15s, border-color .15s;
}
.month-picker button:hover { color: #fff; border-color: rgba(242,185,59,.45); }
.month-picker button.on { background: var(--grad); color: #1a1206; border-color: transparent; }
.month-picker button.special { border-color: rgba(242,185,59,.5); color: var(--neon); }
.month-picker button.special.on { background: var(--grad); color: #1a1206; }
/* video thumbnail grid */
.vid-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px; margin-top: 14px; padding: 2px;
}
.vid {
  appearance: none; text-align: left; cursor: pointer; padding: 0;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px;
  overflow: hidden; color: var(--text); font-family: inherit;
  transition: border-color .15s, transform .15s;
}
.vid:hover { border-color: rgba(242,185,59,.45); transform: translateY(-2px); }
.vid-thumb { position: relative; display: block; aspect-ratio: 16/9; background: #000; }
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-thumb b {
  position: absolute; right: 6px; bottom: 6px;
  font: 600 .68rem Inter, sans-serif; letter-spacing: .03em;
  background: rgba(0,0,0,.78); color: #fff; padding: 2px 6px; border-radius: 5px;
}
.vid-title {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: .78rem; line-height: 1.35; padding: 8px 10px 10px; color: var(--muted);
}
.vid-fallback { display: block; padding: 14px; }
.vid-more {
  display: grid; place-items: center; min-height: 120px; cursor: pointer;
  font: 600 .88rem Inter, sans-serif; letter-spacing: .04em;
  background: var(--glass); color: var(--neon);
  border: 1px dashed rgba(242,185,59,.4); border-radius: 12px;
  transition: border-color .15s, color .15s;
}
.vid-more:hover { border-color: rgba(242,185,59,.8); color: #ffe2ae; }

/* hover play badge on video/reel thumbs */
.vid-play, .reel-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-style: normal; font-size: 1.5rem; color: #fff;
  background: rgba(0,0,0,.35); opacity: 0; transition: opacity .15s;
}
.vid:hover .vid-play, .reel:hover .reel-play { opacity: 1; }

/* video lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(8, 6, 3, .92); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 4vmin;
}
.lightbox[hidden] { display: none; }
.lb-frame {
  position: relative; width: min(1100px, 100%); aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden; background: #000;
  border: 1px solid rgba(242,185,59,.35);
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 40px rgba(242,185,59,.12);
}
.lb-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lb-close {
  position: absolute; top: 18px; right: 22px; z-index: 61;
  font-size: 1.3rem; line-height: 1; padding: 10px 13px; border-radius: 999px;
  background: var(--glass); color: #fff; border: 1px solid var(--glass-border); cursor: pointer;
}
.lb-close:hover { border-color: rgba(242,185,59,.6); color: var(--neon); }

/* merch */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 14px; }
.card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px;
  overflow: hidden; color: var(--text);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.card:hover {
  border-color: rgba(242,185,59,.45); transform: translateY(-3px); color: var(--text);
  box-shadow: 0 20px 44px rgba(0,0,0,.5), 0 0 30px rgba(242,185,59,.18);
}
.card img { aspect-ratio: 1; object-fit: cover; width: 100%; background: #201a10; display: block; }
.card-body { padding: 10px 13px 13px; }
.card-name { font-size: .84rem; font-weight: 600; line-height: 1.35; }
.card-price { color: var(--neon); font-weight: 700; margin-top: 4px; }

/* reels: local-thumbnail cards linking out to instagram */
.reels { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.reel {
  display: block; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden; color: var(--text);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.reel:hover {
  border-color: rgba(242,185,59,.45); transform: translateY(-2px); color: var(--text);
  box-shadow: 0 14px 34px rgba(0,0,0,.45), 0 0 24px rgba(242,185,59,.18);
}
.reel-thumb { position: relative; display: block; aspect-ratio: 4/5; background: #000; }
.reel-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-cap { padding: 10px 13px 12px; font-size: .8rem; line-height: 1.4; color: var(--muted); display: flex; gap: 8px; justify-content: space-between; }
.reel-cap > span { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.reel-cap b { color: var(--neon); white-space: nowrap; }

/* cruise / picks - .cruise-* kept on purpose: the Cruise Reports section is
   deferred (2026-08-09) and will be restored from git when the content lands */
.cruise-slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.cruise-card {
  background: var(--glass); border: 1px dashed var(--glass-border); border-radius: 16px;
  padding: 22px 18px; display: flex; flex-direction: column; gap: 4px;
}
.cruise-card span { font-size: 1.7rem; }
.cruise-card b { font-family: Outfit, Inter, sans-serif; }
.cruise-card i { color: var(--muted); font-style: normal; font-size: .84rem; }
.disclosure { font-size: .76rem; color: var(--muted); margin-top: 18px; }

/* faq */
.faq-list details {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 14px;
  padding: 15px 20px; margin-bottom: 10px;
}
.faq-list details[open] { border-color: rgba(242,185,59,.35); }
.faq-list summary { cursor: pointer; font-weight: 600; }
.faq-list p { color: var(--muted); margin: 10px 0 0; line-height: 1.6; }
.faq-list ol { color: var(--muted); margin: 12px 0 0; padding-left: 22px; line-height: 1.7; }
.faq-list ol li { margin-bottom: 10px; }
.faq-list b { color: var(--text); }

/* ---------- footer (NFT-site structure) ---------- */
footer {
  background: linear-gradient(180deg, transparent, rgba(242,185,59,.06)), var(--bg2);
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--text); margin-top: 60px; padding: 44px 24px 30px;
}
.foot-cols { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 30px; }
@media (max-width: 700px) {
  .foot-cols { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
}
.foot-cols h4 { margin: 0 0 14px; font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; color: var(--neon); }
.foot-cols a { display: block; color: var(--muted); margin-bottom: 9px; font-size: .92rem; transition: color .15s, transform .15s; }
.foot-cols a:hover { color: #fff; transform: translateX(3px); }
.foot-fine {
  max-width: 1200px; margin: 26px auto 0; text-align: center;
  font-size: .74rem; color: var(--muted); line-height: 1.9;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px;
}
.egg { opacity: .55; }

/* ---------- tab bar: the site's main nav, casino-chip energy ---------- */
.tabbar {
  display: flex; gap: 10px; justify-content: center;
  position: sticky; top: 64px; z-index: 15;
  margin: 6px 0 8px; padding: 10px 0;
  background: linear-gradient(180deg, var(--bg) 78%, transparent);
}
.tabbar button {
  flex: 0 1 220px; min-width: 0; padding: 14px 20px; cursor: pointer;
  font: 700 1.05rem Outfit, Inter, sans-serif; letter-spacing: .02em;
  color: var(--muted); background: var(--glass);
  border: 1px solid var(--glass-border); border-radius: 12px;
  transition: color .15s, border-color .15s, transform .15s;
}
.tabbar button:hover { color: #fff; border-color: rgba(242,185,59,.5); transform: translateY(-1px); }
.tabbar button.on {
  background: var(--grad); color: #1a1206; border-color: transparent;
  box-shadow: 0 8px 26px rgba(242,185,59,.35);
}
@media (max-width: 760px) {
  .tabbar { top: 58px; gap: 6px; }
  .tabbar button { flex: 1 1 0; padding: 12px 4px; font-size: .88rem; letter-spacing: 0; }
  .tabbar button .material-symbols-outlined { display: none; }
}
.tab-panel[hidden] { display: none; }

/* promo cards: carrot store + nft vault */
.promo-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; }
.promo-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 18px;
  padding: 24px 26px; color: var(--text);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.promo-card:hover {
  border-color: rgba(242,185,59,.5); transform: translateY(-3px); color: var(--text);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 30px rgba(242,185,59,.2);
}
.promo-icon { font-size: 2rem; line-height: 1; }
.promo-icon img { width: 40px; height: 40px; border-radius: 50%; }
.promo-card b { font-family: Outfit, Inter, sans-serif; font-size: 1.25rem; }
.promo-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .92rem; }
.promo-card i { font-style: normal; color: var(--neon); font-weight: 600; font-size: .9rem; }

/* connect: social + contact cards */
.social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.social-card {
  display: flex; flex-direction: column; gap: 2px; align-items: center; text-align: center;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px;
  padding: 18px 12px; color: var(--text);
  transition: border-color .15s, transform .15s;
}
.social-card:hover { border-color: rgba(242,185,59,.5); transform: translateY(-2px); color: var(--text); }
.social-card span { font-size: 1.6rem; }
.social-card b { font-family: Outfit, Inter, sans-serif; }
.social-card i { font-style: normal; color: var(--muted); font-size: .8rem; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.contact-card {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 18px;
  padding: 22px 24px; color: var(--text);
  transition: border-color .15s, transform .15s;
}
.contact-card:hover { border-color: rgba(242,185,59,.5); transform: translateY(-2px); color: var(--text); }
.contact-card span { font-size: 1.6rem; }
.contact-card b { font-family: Outfit, Inter, sans-serif; font-size: 1.1rem; }
.contact-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }
.contact-card i { font-style: normal; color: var(--neon); font-weight: 600; font-size: .92rem; }

/* material symbols (same treatment as payless2win) */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal; font-style: normal; line-height: 1;
  letter-spacing: normal; text-transform: none; display: inline-block;
  white-space: nowrap; word-wrap: normal; direction: ltr;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: inherit; vertical-align: -0.14em;
}
.tabbar button, .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.tabbar button .material-symbols-outlined { font-size: 1.25em; vertical-align: 0; }
.social-card > span:first-child .material-symbols-outlined,
.contact-card > span:first-child .material-symbols-outlined,
.cruise-card > span:first-child .material-symbols-outlined,
.promo-icon .material-symbols-outlined { color: var(--neon); font-size: inherit; vertical-align: 0; }
.vid-play .material-symbols-outlined, .reel-play .material-symbols-outlined { font-size: 2.2rem; vertical-align: 0; }
.reel-cap .lk { font-size: .95em; font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
.egg .material-symbols-outlined { font-size: 1.05rem; vertical-align: -0.22em; }

/* ---------- VP's Picks: category tiles -> expandable grid ---------- */
.pick-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.pick-tile {
  display: flex; flex-direction: column; gap: 2px; align-items: center; text-align: center;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px;
  padding: 16px 10px; color: var(--text); cursor: pointer;
  font-family: Inter, sans-serif;
  transition: border-color .15s, transform .15s;
}
.pick-tile:hover { border-color: rgba(242,185,59,.5); transform: translateY(-2px); }
.pick-tile.on { border-color: rgba(242,185,59,.8); background: rgba(242,185,59,.08); }
.pick-tile .material-symbols-outlined { font-size: 1.6rem; color: var(--gold-soft); }
.pick-tile b { font-family: Outfit, Inter, sans-serif; font-size: .95rem; }
.pick-tile i { font-style: normal; color: var(--muted); font-size: .78rem; }
.pick-open { margin-top: 14px; }
.pick-sub { margin: 0 0 12px; color: var(--muted); font-size: .92rem; }
.pick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.pick-card {
  display: flex; flex-direction: column;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px;
  overflow: hidden; color: var(--text);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.pick-card:hover {
  border-color: rgba(242,185,59,.5); transform: translateY(-2px); color: var(--text);
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
}
.pick-img { display: block; background: #fff; aspect-ratio: 1 / 1; }
.pick-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.pick-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; padding: 12px 14px 14px; }
.pick-body b { font-family: Outfit, Inter, sans-serif; font-size: .98rem; line-height: 1.3; }
.pick-body p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.pick-body i { font-style: normal; color: var(--neon); font-weight: 600; font-size: .82rem; margin-top: 4px; }

/* ---------- schedule countdown: slot-style flip timer ---------- */
.cd { margin-top: 10px; text-align: center; }
.cd-label {
  font: 700 .68rem Outfit, Inter, sans-serif; letter-spacing: .22em;
  color: var(--gold-soft); margin-bottom: 6px;
}
.cd-cells { display: flex; align-items: flex-start; justify-content: center; gap: 4px; }
.cd-cells em {
  font-style: normal; color: var(--gold-soft); font: 700 1.2rem Outfit, sans-serif;
  line-height: 2.2rem; animation: cd-blink 2s step-end infinite;
}
@keyframes cd-blink { 50% { opacity: .25; } }
.cd-cell { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.cd-cell b {
  display: grid; place-items: center; min-width: 2.4em; padding: 6px 4px;
  font: 700 1.25rem "Outfit", Inter, sans-serif; font-variant-numeric: tabular-nums;
  color: #ffe2ae; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid rgba(242,185,59,.35); border-radius: 10px;
  box-shadow: inset 0 -8px 14px rgba(0,0,0,.35), 0 0 14px rgba(242,185,59,.12);
  text-shadow: 0 0 12px rgba(242,185,59,.55);
}
.cd-cell b.flip { animation: cd-flip .45s ease; }
@keyframes cd-flip {
  0%   { transform: rotateX(0deg); filter: brightness(1); }
  45%  { transform: rotateX(88deg); filter: brightness(1.6); }
  100% { transform: rotateX(0deg); filter: brightness(1); }
}
.cd-cell i { font-style: normal; font-size: .62rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.cd-when { margin-top: 7px; font-size: .8rem; color: var(--muted); }
.cd-live {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
  font: 700 1rem Outfit, Inter, sans-serif; letter-spacing: .04em;
  color: #ff5b5b; border: 1px solid rgba(255,91,91,.5); border-radius: 12px;
  padding: 10px 16px; background: rgba(255,91,91,.08);
  animation: cd-live-glow 1.6s ease-in-out infinite;
}
.cd-live:hover { color: #ff8080; }
@keyframes cd-live-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(255,91,91,.25); }
  50% { box-shadow: 0 0 22px rgba(255,91,91,.55); }
}
.cd-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #ff5b5b;
  animation: cd-blink 1.2s step-end infinite;
}
@media (prefers-reduced-motion: reduce) {
  .cd-cell b.flip, .cd-cells em, .cd-live, .cd-dot { animation: none !important; }
}

/* temp cruise notice (self-expiring, main.js cruiseNotice) */
.cd-notice p {
  margin: 0 auto; max-width: 34ch;
  font-size: .88rem; line-height: 1.5; color: var(--muted);
}
.cd-notice p b { color: var(--gold-soft); }
.cd-notice p a { color: var(--gold-soft); text-decoration: underline; }
