:root {
  --gold: #D4AF37;
  --gold-soft: #F3D686;
  --gold-dark: #8F6A16;
  --felt: #004B23;
  --felt-2: #06351f;
  --wood: #2B1B12;
  --wood-2: #5B2D12;
  --paper: #F5F5DC;
  --leather: #1A1A1A;
  --cream: #FFF2CC;
  --text: #FFF6DD;
  --text-soft: #E7C98C;
  --muted: #A98245;
  --border: rgba(212, 175, 55, 0.28);
  --border-strong: rgba(212, 175, 55, 0.52);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.56);
  --shadow-gold: 0 18px 44px rgba(212, 175, 55, 0.18);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Montserrat", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 50% -10%, rgba(212, 175, 55, 0.18), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(0, 75, 35, 0.34), transparent 36%),
    linear-gradient(135deg, #2B1B12 0%, #160B04 46%, #050302 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.21;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.025) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.025) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.025) 75%);
  background-size: 34px 34px;
}

.light {
  position: fixed;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.light-gold {
  width: 520px; height: 520px; top: -190px; right: -170px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.20), transparent 68%);
}
.light-green {
  width: 620px; height: 620px; bottom: -280px; left: -240px;
  background: radial-gradient(circle, rgba(0, 75, 35, 0.54), transparent 66%);
}

.page-shell {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.topbar {
  min-height: 78px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 12px 16px; margin-bottom: 26px;
  border: 1px solid var(--border); border-radius: 28px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.84), rgba(20, 10, 4, 0.80));
  box-shadow: var(--shadow); backdrop-filter: blur(12px);
}

.topbar-brand {
  display: inline-flex; align-items: center; gap: 14px;
  min-width: 0;
}

.brand-badge {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(212,175,55,0.15), transparent 54%), #09140D;
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 0 24px rgba(0,0,0,0.46), 0 10px 24px rgba(0,0,0,0.34);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-badge img {
  width: 94%; height: 94%; object-fit: contain; border-radius: 50%;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--gold-soft);
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.35), 0 0 24px rgba(212,175,55,0.12);
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark span { font-style: italic; }

.topbar-nav {
  display: flex; align-items: center; gap: 8px;
}

.topbar-nav a {
  min-height: 42px;
  display: inline-flex; align-items: center; padding: 0 14px;
  border-radius: 999px; color: var(--text-soft);
  font-size: 0.82rem; font-weight: 800; transition: 0.18s ease;
}

.topbar-nav a:hover {
  color: var(--gold-soft); background: rgba(212, 175, 55, 0.08);
}

.hero {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.95fr);
  gap: 30px; align-items: center;
  padding: 16px 0 46px;
}

.kicker, .small-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 18px; padding: 8px 12px;
  border: 1px solid rgba(212, 175, 55, 0.25); border-radius: 999px;
  color: var(--gold-soft); background: rgba(212, 175, 55, 0.08);
  font-size: 0.76rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em;
}
.small-kicker { margin-bottom: 8px; }

.kicker-dot {
  width: 9px; height: 9px; border-radius: 999px; background: #2ECC71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.58); animation: pulse 1.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

h1 {
  max-width: 860px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.6vw, 6.4rem);
  line-height: 0.96; color: var(--gold-soft);
  letter-spacing: -0.055em;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.42), 0 0 42px rgba(212, 175, 55, 0.16);
}

.hero-text {
  max-width: 650px; margin-top: 22px; color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.8; font-weight: 650;
}

.hero-actions,
.follow-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px;
}

.btn {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 22px; border: 0; border-radius: 16px;
  font-size: 0.88rem; font-weight: 950; text-transform: uppercase; letter-spacing: 0.055em;
  transition: 0.18s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-primary {
  color: #201407;
  background: linear-gradient(180deg, #F7E3A4 0%, #D4AF37 50%, #966B17 100%);
  box-shadow: 0 6px 0 #68480D, var(--shadow-gold);
  text-shadow: 0 1px 0 rgba(255,255,255,0.34);
}
.btn-secondary {
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid var(--border-strong);
}

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px;
}
.hero-tags span {
  padding: 8px 12px; border-radius: 999px;
  color: var(--cream); background: rgba(255, 246, 221, 0.06);
  border: 1px solid rgba(255, 246, 221, 0.11);
  font-size: 0.76rem; font-weight: 850;
}

.hero-card {
  position: relative; padding: 24px; border-radius: 34px;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.14), transparent 44%), linear-gradient(180deg, rgba(91, 45, 18, 0.82), rgba(26, 26, 26, 0.92));
  border: 1px solid var(--border-strong); box-shadow: var(--shadow); overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: 12px; border-radius: 25px;
  border: 1px solid rgba(245, 245, 220, 0.08); pointer-events: none;
}

.logo-medallion {
  width: 148px; height: 148px; margin: 0 auto 18px;
  border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(212,175,55,0.16), transparent 54%), #09140D;
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 0 34px rgba(0,0,0,0.5), 0 16px 44px rgba(0,0,0,0.38);
}
.logo-medallion img {
  width: 92%; height: 92%; object-fit: contain; border-radius: 50%;
}

.table-preview { position: relative; z-index: 2; display: grid; gap: 14px; }

.player-chip {
  width: fit-content; min-width: 210px; display: flex; align-items: center; gap: 10px;
  padding: 10px 13px; border: 1px solid rgba(245, 245, 220, 0.12);
  border-radius: 999px; background: rgba(0, 0, 0, 0.24);
}
.player-bottom { margin-left: auto; }

.chip-avatar {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  color: #1E1406; background: linear-gradient(180deg, #F5E2A5, #D4AF37);
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 900;
}

.player-chip strong, .player-chip small { display: block; }
.player-chip strong { color: var(--paper); font-size: 0.86rem; }
.player-chip small { color: var(--muted); font-size: 0.72rem; font-weight: 800; }

.felt-table {
  min-height: 330px; position: relative; display: grid; place-items: center;
  border-radius: 30px; border: 8px solid rgba(43, 27, 18, 0.95);
  background: radial-gradient(circle at center, rgba(17, 122, 67, 0.44), transparent 45%), repeating-linear-gradient(0deg, rgba(255,255,255,0.026) 0px, rgba(255,255,255,0.026) 1px, transparent 1px, transparent 5px), linear-gradient(180deg, #00542A 0%, #06351F 100%);
  box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.13), inset 0 0 85px rgba(0,0,0,0.32);
}
.felt-table::after {
  content: ""; position: absolute; inset: 18px;
  border: 2px dashed rgba(212, 175, 55, 0.12); border-radius: 20px;
}

.card {
  position: absolute; width: 74px; height: 110px; display: grid; place-items: center; align-content: center; gap: 5px;
  border-radius: 10px; background: linear-gradient(160deg, #FFF7E0, #E8D19C);
  color: #1F1306; border: 1px solid rgba(67, 35, 12, 0.25); box-shadow: 0 16px 28px rgba(0,0,0,0.34);
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; z-index: 2;
}
.card em {
  font-family: var(--font-body); font-style: normal; font-size: 0.54rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.card-one { transform: translate(-76px, -46px) rotate(-10deg); }
.card-two { transform: translate(14px, -18px) rotate(8deg); }
.card-back {
  transform: translate(78px, 58px) rotate(14deg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent), repeating-linear-gradient(45deg, #5B2D12 0 6px, #2B1B12 6px 12px);
  border-color: rgba(212, 175, 55, 0.55);
}

.table-copy {
  position: absolute; bottom: 22px; left: 50%; width: min(310px, calc(100% - 34px)); transform: translateX(-50%);
  z-index: 3; padding: 14px 16px; border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 18px; background: rgba(26, 26, 26, 0.78); text-align: center; backdrop-filter: blur(8px);
}
.table-copy small {
  display: block; color: var(--muted); font-size: 0.68rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em;
}
.table-copy strong {
  display: block; margin-top: 4px; color: var(--gold-soft); font-size: 1rem;
}

.countdown-panel, .clues-section, .follow-section {
  margin-top: 24px; padding: 28px; border: 1px solid var(--border); border-radius: 28px;
  background: linear-gradient(180deg, rgba(91, 45, 18, 0.76), rgba(26, 26, 26, 0.88));
  box-shadow: var(--shadow);
}

.section-heading { text-align: center; margin-bottom: 22px; }
.section-heading p {
  color: var(--muted); font-size: 0.74rem; font-weight: 950;
  text-transform: uppercase; letter-spacing: 0.11em;
}
.section-heading h2, .follow-copy h2 {
  margin-top: 7px; color: var(--gold-soft); font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.1;
}

.countdown {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.time-box {
  min-height: 132px; display: grid; place-items: center; align-content: center; gap: 8px;
  border-radius: 22px; background: rgba(0,0,0,0.24); border: 1px solid var(--border-strong);
  box-shadow: inset 0 -7px 0 rgba(0,0,0,0.14);
}
.time-box strong {
  color: var(--gold-soft); font-family: var(--font-display);
  font-size: clamp(2.05rem, 5vw, 4.1rem); line-height: 1;
  text-shadow: 0 3px 0 rgba(0,0,0,0.34);
}
.time-box span {
  color: var(--muted); font-size: 0.72rem; font-weight: 950; text-transform: uppercase; letter-spacing: 0.08em;
}

.clues-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px;
}
.clue-card {
  position: relative; min-height: 220px; padding: 24px; border: 1px solid rgba(245, 245, 220, 0.10); border-radius: 24px;
  background: rgba(0,0,0,0.22); overflow: hidden;
}
.clue-card.featured {
  border-color: var(--border-strong);
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15), transparent 44%), rgba(0,0,0,0.24);
}
.clue-card span {
  color: rgba(212, 175, 55, 0.38); font-family: var(--font-display); font-size: 3rem; font-weight: 900; line-height: 1;
}
.clue-card h3 { margin-top: 26px; color: var(--gold-soft); font-size: 1.14rem; }
.clue-card p { margin-top: 10px; color: var(--text-soft); line-height: 1.65; font-weight: 650; }

.follow-section {
  border-color: var(--border-strong);
}
.follow-copy {
  display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: center;
}
.follow-copy img {
  width: 100%; border-radius: 18px; border: 1px solid rgba(245, 245, 220, 0.11);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
}
.follow-copy p:not(.small-kicker) {
  margin-top: 10px; color: var(--text-soft); line-height: 1.75; font-weight: 650;
}

.footer {
  display: flex; justify-content: space-between; gap: 14px; margin-top: 24px; padding: 0 4px;
  color: var(--muted); font-size: 0.84rem; font-weight: 700;
}
.footer strong { color: var(--gold-soft); }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; overflow: hidden; clip: rect(0,0,0,0);
}

.inline-link, .footer a {
  color: var(--gold-soft);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.42);
}
.inline-link:hover, .footer a:hover {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr; min-height: auto;
  }
  .hero-card {
    max-width: 620px; width: 100%; margin: 0 auto;
  }
  .follow-copy {
    grid-template-columns: 1fr;
  }
  .follow-copy img { max-width: 340px; }
}

@media (max-width: 760px) {
  .page-shell { width: min(100% - 22px, 1180px); padding-top: 12px; }
  .topbar { min-height: auto; border-radius: 22px; }
  .topbar-nav { display: none; }
  h1 { font-size: clamp(2.55rem, 13.6vw, 4.3rem); }
  .hero-actions .btn, .follow-actions .btn { width: 100%; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .clues-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}

@media (max-width: 430px) {
  .hero-card, .countdown-panel, .clues-section, .follow-section {
    padding: 18px; border-radius: 22px;
  }
  .brand-badge { width: 50px; height: 50px; }
  .brand-wordmark { font-size: 1.8rem; }
  .logo-medallion { width: 126px; height: 126px; }
  .felt-table { min-height: 300px; }
  .countdown { gap: 10px; }
  .time-box { min-height: 104px; }
}
