/* =========================================
   COMPONENTS — Buttons, Cards, Sections
   ========================================= */

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:active  { transform: scale(0.97); }
.btn:focus-visible { box-shadow: var(--focus-ring); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1c1608;
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
}
.btn-gold:hover { box-shadow: 0 6px 24px rgba(201,162,39,0.5); }

.btn-outline {
  background: transparent;
  border-color: var(--ivory-dim);
  color: var(--ivory);
}
.btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.btn-crimson {
  background: linear-gradient(180deg, var(--crimson-bright), var(--crimson));
  color: var(--ivory);
  box-shadow: 0 4px 16px rgba(163,38,56,0.35);
}
.btn-crimson:hover { box-shadow: 0 6px 24px rgba(163,38,56,0.5); }

.btn-sm    { padding: 9px 18px; font-size: 12px; }
.btn-block { width: 100%; }

/* ---- Card-corner signature tag ---- */
.card-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px; height: 66px;
  background: var(--ivory);
  color: var(--black);
  border-radius: 8px 8px 8px 2px;
  border: 2px solid var(--gold);
  transform: rotate(-4deg);
  box-shadow: var(--shadow-sm);
  font-family: 'Oswald', sans-serif;
  flex-shrink: 0;
  user-select: none;
}
.card-tag .rank { font-size: 20px; font-weight: 700; line-height: 1; }
.card-tag .suit { font-size: 16px; line-height: 1; margin-top: 2px; }
.card-tag.red   { color: var(--crimson); }

/* Small variant (inside cards) */
.card-tag.card-tag-sm {
  width: 42px; height: 54px;
}
.card-tag.card-tag-sm .rank { font-size: 16px; }
.card-tag.card-tag-sm .suit { font-size: 13px; }

/* ---- Hero ---- */
.hero {
  --hero-image-opacity: 0.24;
  --hero-image-scale: 1.03;
  --hero-pan-duration: 30s;
  --hero-lights-opacity: 0.64;
  --hero-depth-opacity: 0.42;
  --hero-overlay-opacity: 0.1;
  --hero-pulse-duration: 10.5s;
  --hero-sweep-duration: 16s;
  --hero-sweep-size: 210% 100%, 180% 100%;
  --hero-glow-before:
    radial-gradient(40% 32% at 18% 20%, rgba(255,214,134,0.28), transparent 74%),
    radial-gradient(34% 28% at 80% 26%, rgba(191,72,103,0.2), transparent 76%),
    radial-gradient(28% 22% at 58% 78%, rgba(47,131,164,0.14), transparent 78%);
  --hero-glow-after:
    linear-gradient(108deg, transparent 22%, rgba(255,214,128,0.12) 42%, transparent 60%),
    linear-gradient(124deg, transparent 28%, rgba(216,82,120,0.08) 46%, transparent 64%);
  position: relative;
  padding: 56px 0 60px;
  background:
    radial-gradient(circle at 12% 10%, rgba(201,162,39,0.22), transparent 56%),
    radial-gradient(circle at 88% 18%, rgba(163,38,56,0.3), transparent 52%),
    linear-gradient(120deg, rgba(25,94,117,0.12), transparent 55%),
    linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: var(--hero-depth-opacity);
  background:
    radial-gradient(48% 42% at 30% 46%, rgba(255,223,155,0.36), transparent 76%),
    radial-gradient(42% 36% at 77% 30%, rgba(219,91,135,0.24), transparent 76%),
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.48) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: var(--hero-image-opacity);
  pointer-events: none;
  z-index: 0;
  transform: scale(var(--hero-image-scale));
  animation: heroPan var(--hero-pan-duration) ease-in-out infinite alternate;
}
.hero-lights {
  position: absolute;
  inset: -6% -8%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: var(--hero-lights-opacity);
}
.hero-lights::before,
.hero-lights::after {
  content: '';
  position: absolute;
  inset: 0;
}
.hero-lights::before {
  background: var(--hero-glow-before);
  animation: vegasPulse var(--hero-pulse-duration) ease-in-out infinite alternate;
}
.hero-lights::after {
  background: var(--hero-glow-after);
  background-size: var(--hero-sweep-size);
  animation: neonSweep var(--hero-sweep-duration) linear infinite;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: var(--hero-overlay-opacity);
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(180deg, rgba(8,8,8,0.14) 0%, rgba(8,8,8,0.5) 78%);
}
.hero.hero-mood-luxe {
  --hero-image-opacity: 0.23;
  --hero-image-scale: 1.03;
  --hero-pan-duration: 34s;
  --hero-lights-opacity: 0.68;
  --hero-depth-opacity: 0.52;
  --hero-overlay-opacity: 0.13;
  --hero-pulse-duration: 12s;
  --hero-sweep-duration: 22s;
  --hero-sweep-size: 190% 100%, 175% 100%;
  --hero-glow-before:
    radial-gradient(42% 34% at 16% 20%, rgba(255,214,132,0.26), transparent 75%),
    radial-gradient(32% 26% at 80% 25%, rgba(171,59,90,0.16), transparent 76%),
    radial-gradient(22% 20% at 56% 80%, rgba(47,128,164,0.1), transparent 80%);
  --hero-glow-after:
    linear-gradient(110deg, transparent 24%, rgba(255,212,128,0.1) 43%, transparent 61%),
    linear-gradient(126deg, transparent 30%, rgba(207,76,114,0.07) 47%, transparent 65%);
}
.hero.hero-mood-neon {
  --hero-image-opacity: 0.29;
  --hero-image-scale: 1.06;
  --hero-pan-duration: 20s;
  --hero-lights-opacity: 0.78;
  --hero-depth-opacity: 0.34;
  --hero-overlay-opacity: 0.08;
  --hero-pulse-duration: 8s;
  --hero-sweep-duration: 11.5s;
  --hero-sweep-size: 250% 100%, 220% 100%;
  --hero-glow-before:
    radial-gradient(34% 30% at 16% 18%, rgba(255,211,112,0.34), transparent 72%),
    radial-gradient(34% 32% at 82% 24%, rgba(233,84,132,0.31), transparent 74%),
    radial-gradient(30% 24% at 60% 80%, rgba(71,193,236,0.25), transparent 78%);
  --hero-glow-after:
    linear-gradient(108deg, transparent 22%, rgba(255,228,153,0.2) 41%, transparent 57%),
    linear-gradient(124deg, transparent 28%, rgba(235,102,152,0.17) 45%, transparent 62%);
}
.hero.hero-mood-luxe .hero-bg {
  filter: contrast(1.18) brightness(0.82) saturate(0.9);
}
.hero-inner { position: relative; z-index: 5; }

.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 9vw, 74px); color: var(--ivory); }
.hero h1 .accent { color: var(--gold-bright); }
.hero .tagline {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(24px, 5vw, 34px);
  color: var(--crimson-bright);
  margin-top: 4px;
}
.hero .meta-line {
  margin-top: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  text-transform: uppercase;
}
.hero .meta-line b { color: var(--gold-bright); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-ctas .btn {
  animation: ctaIntroPulse 1500ms cubic-bezier(.2,.85,.36,1) 1 both;
  animation-delay: 280ms;
}
.hero-ctas .btn:nth-child(2) { animation-delay: 420ms; }
.hero-ctas .btn:nth-child(3) { animation-delay: 560ms; }

@keyframes heroPan {
  0% { transform: scale(1.03) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1.1%, -0.9%, 0); }
}
@keyframes vegasPulse {
  0% { opacity: 0.62; transform: scale(1); }
  100% { opacity: 0.92; transform: scale(1.04); }
}
@keyframes neonSweep {
  0% { background-position: -60% 0, 120% 0; }
  100% { background-position: 150% 0, -70% 0; }
}
@keyframes ctaIntroPulse {
  0% { transform: scale(1); }
  38% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hero-side-stack {
  margin-top: 44px;
  display: grid;
  gap: 16px;
}

.hero-side-stack .hero-stats {
  margin-top: 0;
}

.hero-sponsor-callout {
  display: grid;
  gap: 12px;
}

.hero-sponsor-item {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.hero-sponsor-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.hero-sponsor-item img {
  width: 100%;
  max-width: 360px;
  max-height: 96px;
  object-fit: contain;
}
.stat-box {
  background: rgba(237,230,214,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.stat-box .num {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--gold-bright);
  font-weight: 600;
}
.stat-box .lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ---- Event cards ---- */
.events-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 -20px;
  padding: 4px 20px 16px;
  -webkit-overflow-scrolling: touch;
}
.events-scroll::-webkit-scrollbar { height: 5px; }
.events-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 5px; }
.events-scroll::-webkit-scrollbar-thumb { background: rgba(201,162,39,0.3); border-radius: 5px; }

.event-card {
  min-width: 308px;
  scroll-snap-align: start;
  border: 1px solid rgba(237,230,214,0.1);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(163,38,56,0.14), var(--charcoal-2) 58%);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.event-card.featured {
  background: linear-gradient(160deg, rgba(201,162,39,0.14), var(--charcoal-2) 55%);
  border-color: rgba(201,162,39,0.45);
}
.event-card.completed { opacity: 0.75; }

/* 4:5 matches the source flyers, so nothing is cropped. */
.event-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  background: var(--charcoal-2);
}
.event-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.event-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ev-kicker {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.event-card h3 { font-size: 22px; margin-top: 8px; }
.ev-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ivory-dim);
  font-size: 14px;
  margin-top: 10px;
}
.ev-detail svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; }
.ev-ctas { display: flex; gap: 10px; margin-top: auto; padding-top: 20px; }
.ev-ctas .btn { flex: 1; }

.ev-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 12px;
  align-self: flex-start;
}
.ev-status.open     { background: rgba(11,61,46,0.6); color: var(--gold-bright); border: 1px solid rgba(201,162,39,0.3); }
.ev-status.upcoming { background: rgba(201,162,39,0.12); color: var(--gold-bright); border: 1px solid rgba(201,162,39,0.3); }
.ev-status.closed   { background: rgba(255,255,255,0.06); color: var(--ivory-dim); border: 1px solid rgba(237,230,214,0.15); }

/* ---- Champions / Past results ---- */
.champ-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  margin: 0 -20px;
  padding: 4px 20px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.champ-card {
  scroll-snap-align: start;
  flex: 0 0 78%;
  background: linear-gradient(160deg, var(--felt) 0%, var(--felt-light) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.25);
  display: flex;
  flex-direction: column;
}
.champ-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 36%;
}
.champ-card-img.champ-card-img-trilogy {
  object-position: center 40%;
}
.champ-card-body { padding: 22px; flex: 1; }
.champ-card h4  { font-size: 20px; color: var(--gold-bright); }
.champ-card .champ-sub {
  font-size: 13px;
  color: rgba(237,230,214,0.7);
  margin-top: 4px;
  margin-bottom: 18px;
}
.champ-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(237,230,214,0.15);
}
.champ-row:last-child { padding-bottom: 0; }
.champ-name { font-weight: 600; font-size: 15px; }
.champ-role {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

/* ---- Testimonials ---- */
.testi-grid { display: grid; gap: 16px; margin-top: 40px; }
.testi {
  background: var(--charcoal-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 20px;
}
.testi p { font-size: 15px; color: var(--ivory-dim); font-style: italic; line-height: 1.6; }
.testi .who {
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--gold-bright);
}

/* ---- Venue ---- */
.venue-card {
  background: var(--charcoal-2);
  border-radius: var(--radius);
  border: 1px solid rgba(237,230,214,0.1);
  overflow: hidden;
}
.venue-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.venue-map-placeholder {
  height: 220px;
  background:
    linear-gradient(160deg, rgba(163,38,56,0.25), rgba(11,61,46,0.4)),
    repeating-linear-gradient(45deg, rgba(201,162,39,0.06) 0 2px, transparent 2px 22px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue-map-placeholder svg { width: 56px; height: 56px; fill: var(--gold-bright); opacity: 0.85; }
.venue-body { padding: 26px; }
.venue-body h3 { font-size: 22px; color: var(--ivory); }
.venue-body .addr { color: var(--ivory-dim); margin-top: 6px; font-size: 15px; }
.venue-body .phone {
  color: var(--gold-bright);
  font-family: 'Oswald', sans-serif;
  margin-top: 14px;
  font-size: 20px;
  font-weight: 600;
}
.venue-body .note { font-size: 13px; color: var(--ivory-dim); margin-top: 4px; }
.venue-ctas { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

/* ---- Home sponsor marquee ---- */
.home-sponsor-rail {
  padding: 18px 0 8px;
}

.home-sponsor-rail .wrap {
  overflow: visible;
}

.home-sponsor-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid rgba(237,230,214,0.08);
  border-bottom: 1px solid rgba(237,230,214,0.08);
  background: #18191b;
  padding: 14px 0;
}

.home-sponsor-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: sponsorMarquee 34s linear infinite;
}

.home-sponsor-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  height: 74px;
  padding: 7px 10px;
  border: 1px solid rgba(24,25,27,0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(24,25,27,0.08);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.home-sponsor-item img {
  width: auto;
  max-width: 158px;
  max-height: 60px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter .22s, opacity .22s;
}

.home-sponsor-item.sponsor-dark img {
  filter: none;
}

.home-sponsor-item:hover {
  border-color: rgba(201,162,39,0.5);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(24,25,27,0.14);
}

.home-sponsor-marquee:hover .home-sponsor-track {
  animation-play-state: paused;
}

.home-sponsor-item:hover img,
.home-sponsor-item:focus-visible img {
  filter:
    grayscale(0)
    brightness(1.02)
    contrast(1.05)
    saturate(1.04);
  opacity: 1;
}

@keyframes sponsorMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Sponsors ---- */
.sponsor-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sponsor-box {
  position: relative;
  background: #fff;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 14px;
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-2);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 16px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sponsor-box:hover,
.sponsor-box:focus-within {
  border-color: rgba(201,162,39,0.8);
  box-shadow: 0 10px 28px rgba(0,0,0,0.32), 0 0 0 1px rgba(198,57,77,0.18) inset;
  transform: translateY(-2px);
}
.sponsor-box img {
  max-height: 178px;
  width: auto;
  max-width: 96%;
  object-fit: contain;
  transition: transform .2s ease;
}
.sponsor-box:hover img,
.sponsor-box:focus-within img {
  transform: scale(1.03);
}
.sponsor-box.presenting {
  grid-column: 1 / -1;
  height: 106px;
  background: #fff;
  border-color: rgba(201,162,39,0.4);
  color: var(--gold-bright);
  font-size: 14px;
}
.sponsor-box.presenting img { max-height: 108px; }

.sponsor-kind {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,39,0.55);
  background: rgba(201,162,39,0.12);
  color: var(--charcoal-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
}

.sponsor-strip-title {
  display: flex;
  justify-content: center;
}

section[aria-labelledby="title-sponsor-heading"] .section-head {
  text-align: center;
}

section[aria-labelledby="title-sponsor-heading"] .section-head .eyebrow-row {
  justify-content: center;
}

.sponsor-box-title {
  width: min(100%, 980px);
  min-height: 380px;
  background: #fff;
  border-color: rgba(201,162,39,0.56);
}

.sponsor-box-title img {
  max-height: 380px;
  max-width: 96%;
}

.sponsor-strip-supporting {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.sponsor-strip-supporting .sponsor-box {
  width: min(100%, 340px);
}

.sponsor-cta { margin-top: 28px; text-align: center; }
.sponsor-cta p { color: var(--ivory-dim); font-size: 15px; margin-bottom: 14px; }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-tile {
  aspect-ratio: 1;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(237,230,214,0.08);
  background: var(--charcoal-2);
  cursor: pointer;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  loading: lazy;
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21,18,15,0);
  transition: background .25s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.gallery-tile:hover .gallery-tile-overlay { background: rgba(21,18,15,0.5); }
.gallery-tile-caption {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0;
  transition: opacity .25s;
}
.gallery-tile:hover .gallery-tile-caption { opacity: 1; }

/* ---- Facebook feed ---- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(9,8,7,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gallery-lightbox.open { display: flex; }

.gallery-lightbox-dialog {
  width: min(1080px, 100%);
  max-height: 92vh;
  display: grid;
  gap: 12px;
}

.gallery-lightbox-frame {
  position: relative;
  background: linear-gradient(160deg, rgba(201,162,39,0.12), rgba(21,18,15,0.96));
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: 14px;
  min-height: min(72vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-lightbox-img {
  width: 100%;
  height: 100%;
  max-height: min(72vh, 620px);
  object-fit: contain;
  object-position: center;
}

.gallery-lightbox-caption-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-lightbox-caption {
  color: var(--ivory);
  font-size: 13px;
}

.gallery-lightbox-count {
  color: var(--gold-bright);
  font-size: 12px;
}

.gallery-lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(237,230,214,0.35);
  background: rgba(11,11,11,0.62);
  color: var(--ivory);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: border-color .2s, background .2s, color .2s;
}

.gallery-lightbox-btn:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(11,11,11,0.8);
}

.gallery-lightbox-prev { left: 12px; }
.gallery-lightbox-next { right: 12px; }

.gallery-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(237,230,214,0.35);
  background: rgba(11,11,11,0.62);
  color: var(--ivory);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  transition: border-color .2s, background .2s, color .2s;
}

.gallery-lightbox-close:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(11,11,11,0.8);
}

@media (max-width: 760px) {
  .gallery-lightbox {
    padding: 10px;
  }

  .gallery-lightbox-frame {
    min-height: min(66vh, 460px);
  }

  .gallery-lightbox-img {
    max-height: min(66vh, 460px);
  }

  .gallery-lightbox-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }

  .gallery-lightbox-caption {
    font-size: 12px;
  }
}

/* ---- Newsletter ---- */
.newsletter-section {
  background:
    linear-gradient(rgba(6,30,24,0.84), rgba(6,30,24,0.9)),
    url("../images/Craps-table-felt 2.webp") center / cover no-repeat;
  border-top: 1px solid rgba(201,162,39,0.16);
  border-bottom: 1px solid rgba(201,162,39,0.16);
}
.newsletter {
  background:
    linear-gradient(160deg, var(--felt), var(--black));
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(201,162,39,0.25);
}
.newsletter h3 { font-size: 26px; }
.newsletter p  { color: rgba(237,230,214,0.75); margin-top: 8px; font-size: 14px; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form input {
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(237,230,214,0.25);
  background: rgba(0,0,0,0.25);
  color: var(--ivory);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color .15s;
}
.newsletter-form input::placeholder { color: var(--ivory-dim); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(232,197,90,0.2);
}

/* ---- Info / Alert boxes ---- */
.info-box {
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--ivory-dim);
}
.info-box strong { color: var(--gold-bright); }

/* ---- SWS leaderboard ---- */
.leaderboard-shell {
  display: grid;
  gap: 18px;
}

.leaderboard-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--ivory-dim);
  font-size: 14px;
}

.leaderboard-meta strong {
  color: var(--ivory);
}

.leaderboard-preview {
  display: grid;
  gap: 14px;
}

.leaderboard-preview-page {
  margin-top: 4px;
}

.leaderboard-shell-top {
  margin-bottom: 22px;
}

.leaderboard-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: linear-gradient(160deg, rgba(201,162,39,0.1), var(--charcoal-2) 58%);
  border: 1px solid rgba(237,230,214,0.08);
  border-radius: 14px;
}

.leaderboard-rank {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,39,0.16);
  border: 1px solid rgba(201,162,39,0.38);
  color: var(--gold-bright);
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.leaderboard-player {
  min-width: 0;
}

.leaderboard-player h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

.leaderboard-player p {
  color: var(--ivory-dim);
  font-size: 14px;
}

.leaderboard-points {
  text-align: right;
}

.leaderboard-points strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  line-height: 1;
  color: var(--gold-bright);
}

.leaderboard-points span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.leaderboard-details {
  background: var(--charcoal-2);
  border: 1px solid rgba(237,230,214,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.leaderboard-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
}

.leaderboard-details summary::-webkit-details-marker {
  display: none;
}

.leaderboard-details summary::after {
  content: '+';
  font-size: 24px;
  line-height: 1;
  color: var(--gold-bright);
}

.leaderboard-details[open] summary::after {
  content: '\2212';
}

.leaderboard-details .table-wrap {
  border: 0;
  border-top: 1px solid rgba(237,230,214,0.08);
  border-radius: 0;
}

.leaderboard-callout {
  color: var(--ivory-dim);
  font-size: 13px;
}

.leaderboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.leaderboard-empty {
  margin-top: 4px;
}

.leaderboard-page-layout {
  display: grid;
  gap: 22px;
}

.leaderboard-side-stack {
  display: grid;
  gap: 18px;
}

.leaderboard-stat-card {
  background: linear-gradient(160deg, rgba(201,162,39,0.12), var(--charcoal-2) 68%);
}

.leaderboard-stat-card .stat-label,
.leaderboard-point-card .stat-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

.leaderboard-stat-card .stat-value {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--ivory);
}

.leaderboard-stat-card p {
  margin-top: 10px;
  color: var(--ivory-dim);
  font-size: 14px;
  line-height: 1.6;
}

.leaderboard-point-grid {
  display: grid;
  gap: 16px;
}

.leaderboard-point-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(237,230,214,0.1);
  border-radius: 14px;
  padding: 20px;
}

.leaderboard-point-card strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.leaderboard-point-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.leaderboard-point-card p {
  color: var(--ivory-dim);
  font-size: 14px;
  line-height: 1.6;
}

.leaderboard-point-panel {
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.42);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(163,38,56,0.1), var(--charcoal-2) 38%, var(--charcoal) 100%);
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

.leaderboard-point-heading {
  padding: 24px 20px 8px;
  margin: 0;
}

.leaderboard-point-heading h2 {
  margin-bottom: 6px;
}

.leaderboard-point-heading p {
  max-width: 58ch;
}

.leaderboard-point-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 12px 20px 20px;
}

.leaderboard-point-highlights > div {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(237,230,214,0.14);
  border-radius: 10px;
  background: rgba(13,17,16,0.48);
}

.leaderboard-point-highlights span {
  display: block;
  color: #aaa3a0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leaderboard-point-highlights strong {
  display: block;
  margin-top: 5px;
  color: var(--ivory);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
}

.leaderboard-point-events {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 20px 24px;
}

.leaderboard-point-event {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(237,230,214,0.14);
  border-radius: 10px;
  background: rgba(13,17,16,0.62);
}

.leaderboard-point-event h3 {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 23px;
  line-height: 1.15;
}

.leaderboard-point-event > p {
  min-height: 42px;
  color: #c6c0bd;
  font-size: 14px;
  line-height: 1.5;
}

.leaderboard-point-event dl {
  margin: 12px 0 0;
}

.leaderboard-point-event dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(237,230,214,0.06);
}

.leaderboard-point-event dt,
.leaderboard-point-event dd {
  margin: 0;
  color: var(--ivory);
  font-size: 14px;
  font-weight: 700;
}

.leaderboard-point-event dd {
  text-align: right;
  white-space: nowrap;
  color: var(--gold-bright);
}

@media (max-width: 640px) {
  .leaderboard-preview {
    grid-template-columns: 1fr;
  }

  .leaderboard-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      'rank points'
      'player player';
    gap: 12px;
    align-items: start;
    padding: 14px;
  }

  .leaderboard-rank {
    grid-area: rank;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .leaderboard-points {
    grid-area: points;
    text-align: right;
  }

  .leaderboard-points strong {
    font-size: 36px;
  }

  .leaderboard-points span {
    margin-top: 2px;
    font-size: 11px;
  }

  .leaderboard-player {
    grid-area: player;
  }

  .leaderboard-player h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .leaderboard-player p {
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
  }

  .leaderboard-point-heading {
    padding: 20px 16px 6px;
  }

  .leaderboard-point-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 16px 16px;
  }

  .leaderboard-point-highlights > div {
    padding: 16px;
  }

  .leaderboard-point-events {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px 16px;
  }

  .leaderboard-point-event {
    padding: 16px;
  }

  .leaderboard-point-event h3 {
    font-size: 21px;
  }

  .leaderboard-point-event > p {
    min-height: 0;
  }
}

/* ---- Forms (registration, contact) ---- */
.form-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(237,230,214,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 7px;
}
.form-group label .req { color: var(--crimson-bright); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(237,230,214,0.18);
  background: rgba(0,0,0,0.25);
  color: var(--ivory);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ivory-dim); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(232,197,90,0.18);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B9AF9C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-select option { background: var(--charcoal-2); color: var(--ivory); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; gap: 16px; }
.form-hint { font-size: 12px; color: var(--ivory-dim); margin-top: 5px; }

.form-divider {
  border: none;
  border-top: 1px solid rgba(237,230,214,0.1);
  margin: 24px 0;
}

/* Checkbox / Radio custom */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ivory-dim);
  line-height: 1.5;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(237,230,214,0.3);
  border-radius: 4px;
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.form-check input[type="radio"]  { border-radius: 50%; }
.form-check input[type="checkbox"]:checked,
.form-check input[type="radio"]:checked {
  background: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 4L11 1' stroke='%231c1608' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

/* ---- Pricing card ---- */
.pricing-grid { display: grid; gap: 16px; }
.pricing-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(237,230,214,0.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s;
}
.pricing-card.featured {
  border-color: rgba(201,162,39,0.5);
  background: linear-gradient(160deg, rgba(201,162,39,0.1), var(--charcoal-2) 60%);
}
.pricing-card h3 { font-size: 20px; }
.pricing-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  color: var(--gold-bright);
  font-weight: 700;
  margin: 10px 0 6px;
  line-height: 1;
}
.pricing-card .price sup { font-size: 18px; vertical-align: top; margin-top: 6px; }
.pricing-card .price-note { font-size: 12px; color: var(--ivory-dim); }
.pricing-card ul {
  list-style: none;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--ivory-dim);
}
.pricing-card li::before { content: '✓'; color: var(--gold-bright); font-weight: 700; flex-shrink: 0; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 52px 0 44px;
  background:
    radial-gradient(90% 120% at 18% 52%, rgba(0,0,0,0.34), transparent 68%),
    linear-gradient(135deg, #152621 0%, #10201b 58%, #0b1512 100%);
  border-bottom: 1px solid rgba(237,230,214,0.08);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(78vw, 980px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.48;
  background:
    linear-gradient(90deg, rgba(21,38,33,0.96) 0%, rgba(21,38,33,0.58) 24%, rgba(21,38,33,0.08) 48%, transparent 100%),
    url('../images/Roulette-BG.webp') center right / cover no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.2) 18%, #000 42%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.2) 18%, #000 42%, #000 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.32;
  mix-blend-mode: soft-light;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 1.4px) 0 0 / 7px 7px,
    repeating-linear-gradient(18deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(108deg, rgba(0,0,0,0.09) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(21,38,33,0.88) 0%, rgba(21,38,33,0.5) 42%, rgba(21,38,33,0.08) 100%),
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 26px,
      rgba(237,230,214,0.025) 26px,
      rgba(237,230,214,0.025) 28px
    );
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
}
.page-hero h1 { font-size: clamp(30px, 7vw, 52px); }
.page-hero .sub-tagline {
  color: var(--ivory-dim);
  margin-top: 10px;
  font-size: 16px;
  max-width: 52ch;
}

/* ---- About page ---- */
.about-intro-grid {
  display: grid;
  gap: 22px;
}

.about-portrait {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(237,230,214,0.14);
  background: var(--charcoal-2);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.about-card,
.about-story {
  background: var(--charcoal-2);
  border: 1px solid rgba(237,230,214,0.12);
  border-radius: var(--radius);
  padding: 24px;
}

.about-card h2,
.about-story h2 {
  font-size: clamp(28px, 5vw, 40px);
}

.about-card p,
.about-story p {
  color: var(--ivory-dim);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 14px;
}

.about-story-featured {
  border-color: rgba(198,57,77,0.38);
  background: linear-gradient(160deg, rgba(163,38,56,0.14), var(--charcoal-2) 58%);
}

.about-list {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.about-list li {
  color: var(--ivory-dim);
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
}

.about-list li::before {
  content: '•';
  color: var(--gold-bright);
  font-weight: 700;
  flex-shrink: 0;
}

.about-finale {
  border-color: rgba(201,162,39,0.32);
  background: linear-gradient(160deg, rgba(201,162,39,0.08), var(--charcoal-2) 62%);
}

.about-closer {
  margin-top: 20px;
  color: var(--ivory);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

/* ---- Archives / Results table ---- */
.archives-intro { background: linear-gradient(180deg, #141516 0%, var(--black) 100%); }
.archives-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.archives-heading-row > div:first-child { flex: 1; }
.archive-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 44px; }
.archive-filter {
  border: 1px solid rgba(237,230,214,0.18);
  border-radius: 999px;
  background: rgba(237,230,214,0.04);
  color: var(--ivory-dim);
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 9px 14px;
  text-transform: uppercase;
  transition: background .15s, border-color .15s, color .15s;
}
.archive-filter:hover,
.archive-filter.is-active { background: rgba(201,162,39,0.14); border-color: rgba(232,197,90,0.65); color: var(--gold-bright); }
.archive-filter-status { color: var(--ivory-dim); font-size: 12px; margin-top: -30px; }
.archive-subhead { margin-bottom: 18px; }
.archive-subhead h3 { color: var(--ivory); font-size: clamp(24px, 4vw, 32px); margin-top: 5px; }
.archive-featured { border-top: 1px solid rgba(232,197,90,0.3); padding-top: 28px; }
.archive-featured-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.archive-video-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.archive-vault { border-top: 1px solid rgba(237,230,214,0.1); margin-top: 52px; padding-top: 28px; }
.archive-video-card { display: block; color: var(--ivory); min-width: 0; }
.archive-video-card.is-filtered-out { display: none !important; }
.archive-video-card:hover .archive-video-thumb img { transform: scale(1.04); }
.archive-video-thumb { background: var(--charcoal-2); border-radius: 10px; display: block; overflow: hidden; position: relative; aspect-ratio: 16 / 9; }
.archive-video-thumb img { height: 100%; object-fit: cover; transition: transform .25s ease; width: 100%; }
.archive-play { align-items: center; background: rgba(163,38,56,0.92); border: 2px solid rgba(255,255,255,0.76); border-radius: 50%; bottom: 12px; display: flex; font-size: 12px; height: 34px; justify-content: center; left: 12px; padding-left: 2px; position: absolute; width: 34px; }
.archive-video-badge { background: var(--gold); color: var(--black); font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; padding: 5px 8px; position: absolute; right: 10px; text-transform: uppercase; top: 10px; }
.archive-video-meta { display: block; padding: 10px 3px 0; }
.archive-video-meta > span { color: var(--gold-bright); display: block; font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.archive-video-meta strong { display: block; font-size: 14px; line-height: 1.35; margin-top: 4px; }
.archive-video-card-featured .archive-video-meta strong { font-size: 18px; }
.archive-empty { color: var(--ivory-dim); padding: 30px 0; }
.video-modal[hidden] { display: none; }
.video-modal { align-items: center; display: flex; inset: 0; justify-content: center; padding: 20px; position: fixed; z-index: 1000; }
.video-modal-backdrop { background: rgba(9, 10, 10, 0.88); inset: 0; position: absolute; }
.video-modal-dialog { background: var(--charcoal-2); border: 1px solid rgba(232,197,90,0.4); box-shadow: 0 24px 80px rgba(0,0,0,0.55); max-width: 960px; padding: 14px; position: relative; width: min(100%, 960px); z-index: 1; }
.video-modal-player { aspect-ratio: 16 / 9; background: var(--black); }
.video-modal-player iframe { border: 0; display: block; height: 100%; width: 100%; }
.video-modal-title { color: var(--ivory); font-family: 'Oswald', sans-serif; font-size: 18px; letter-spacing: 0.02em; line-height: 1.3; padding: 14px 44px 2px 2px; }
.video-modal-close { align-items: center; background: var(--charcoal-2); border: 1px solid rgba(237,230,214,0.35); border-radius: 50%; color: var(--ivory); cursor: pointer; display: flex; font-size: 25px; height: 38px; justify-content: center; line-height: 1; position: absolute; right: -14px; top: -14px; width: 38px; z-index: 2; }
.video-modal-close:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.video-modal-close:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
body.video-modal-open { overflow: hidden; }
.champion-strip { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.champion-card { background: linear-gradient(145deg, rgba(201,162,39,0.12), var(--charcoal-2) 60%); border: 1px solid rgba(201,162,39,0.26); border-radius: var(--radius); overflow: hidden; }
.champion-image { height: 190px; position: relative; }
.champion-card img { height: 100%; object-fit: cover; width: 100%; }
.champion-card:nth-child(2) img { object-position: center 18%; }
.champion-card > div:last-child { padding: 16px 18px 20px; }
.champion-card h3 { color: var(--gold-bright); font-size: 24px; }
.champion-card p { color: var(--ivory-dim); font-size: 13px; margin-top: 4px; }
.champion-year { background: rgba(23,23,24,0.82); bottom: 0; color: var(--gold-bright); display: block; font-family: 'Oswald', sans-serif; font-size: 11px; left: 0; letter-spacing: 0.1em; padding: 8px 12px; position: absolute; text-transform: uppercase; }

.results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

@media (max-width: 899px) {
  .archives-heading-row { align-items: flex-start; flex-direction: column; }
  .archive-featured-grid { grid-template-columns: 1fr; }
  .archive-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .champion-strip { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .archive-video-grid { gap: 14px 10px; }
  .archive-video-meta strong { font-size: 13px; }
  .archive-play { bottom: 8px; left: 8px; }
  .video-modal { padding: 14px; }
  .video-modal-dialog { padding: 9px; }
  .video-modal-close { right: -8px; top: -15px; }
}
.results-table th {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid rgba(201,162,39,0.2);
}
.results-table td {
  padding: 14px;
  color: var(--ivory-dim);
  border-bottom: 1px solid rgba(237,230,214,0.07);
  vertical-align: middle;
}
.results-table tr:last-child td { border-bottom: none; }
.results-table tr:hover td { background: rgba(237,230,214,0.03); color: var(--ivory); }
.results-table .champion-cell { color: var(--ivory); font-weight: 600; }
.results-table .trophy { color: var(--gold-bright); margin-right: 6px; }

.table-wrap {
  background: var(--charcoal-2);
  border: 1px solid rgba(237,230,214,0.1);
  border-radius: var(--radius);
  overflow-x: auto;
}

/* ---- Scholarship page ---- */
.scholarship-card {
  background: linear-gradient(145deg, var(--charcoal-2), var(--black) 78%);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.scholarship-card h3 { font-size: 24px; color: var(--gold-bright); }
.scholarship-card p  { color: var(--ivory-dim); font-size: 15px; margin-top: 10px; line-height: 1.6; }
.scholarship-intro-grid,
.scholarship-lower-grid { display: grid; gap: 24px; }
.scholarship-story { display: grid; gap: 18px; align-content: start; }
.scholarship-story img { border: 1px solid rgba(201,162,39,0.25); border-radius: var(--radius); height: auto; max-height: 390px; object-fit: cover; width: 100%; }
.scholarship-story p,
.scholarship-application > p,
.scholarship-event-card > p { color: var(--ivory-dim); font-size: 15px; line-height: 1.65; }
.scholarship-story strong { color: var(--ivory); }
.scholarship-award { border-top: 1px solid rgba(237,230,214,0.12); margin-top: 18px; padding-top: 16px; }
.scholarship-award h4 { color: var(--ivory); font-size: 16px; }
.scholarship-award p { font-size: 14px; margin-top: 6px; }
.scholarship-lower-grid { margin-top: 28px; }
.scholarship-application,
.scholarship-event-card { background: var(--charcoal-2); border: 1px solid rgba(237,230,214,0.1); border-radius: var(--radius); padding: 26px 24px; }
.scholarship-application h3,
.scholarship-event-card h3 { color: var(--gold-bright); font-size: 25px; margin-bottom: 12px; }
.scholarship-facts { display: grid; gap: 12px; margin: 22px 0; }
.scholarship-facts div { border-left: 2px solid var(--gold); padding-left: 12px; }
.scholarship-facts dt,
.scholarship-event-label { color: var(--gold-bright); font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.scholarship-facts dd { color: var(--ivory); font-size: 15px; margin-top: 2px; }
.scholarship-facts a,
.scholarship-event-card a:not(.btn) { color: var(--ivory); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.scholarship-event-card { background: linear-gradient(120deg, #152621 0%, var(--felt) 58%, var(--black) 100%); border-color: rgba(77,151,119,0.38); }
.scholarship-event-card .eyebrow-row { margin-bottom: 10px; }
.scholarship-event-label { margin-top: 18px; }
.scholarship-event-card .btn { margin-top: 20px; }

/* ---- Contact page ---- */
.contact-grid { display: grid; gap: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--charcoal-2);
  border: 1px solid rgba(237,230,214,0.08);
  border-radius: 10px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(201,162,39,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--gold-bright); }
.contact-detail h4 {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 4px;
}
.contact-detail p,
.contact-detail a { font-size: 15px; color: var(--ivory-dim); }
.contact-detail a:hover { color: var(--gold-bright); }

/* ---- Sponsors page ---- */
.sponsor-tier-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}

/* ---- Desktop breakpoints ---- */
@media (min-width: 900px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
  }
  .hero-side-stack { margin-top: 0; }
  .hero-stats { margin-top: 0; grid-template-columns: repeat(2, 1fr); align-content: start; }

  .hero-sponsor-item {
    gap: 10px;
  }

  .hero-sponsor-item img {
    max-width: 420px;
    max-height: 118px;
  }

  .home-sponsor-rail {
    padding: 16px 0 14px;
  }

  .home-sponsor-item {
    min-width: 212px;
    height: 84px;
  }

  .home-sponsor-item img {
    max-width: 196px;
    max-height: 72px;
  }

  .scholarship-intro-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); align-items: start; }
  .scholarship-lower-grid { grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); align-items: start; }

  .about-intro-grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

  .about-card,
  .about-story {
    padding: 30px;
  }

  .events-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .event-card { flex: none; }

  .champ-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .champ-card-img { height: 246px; }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }

  .venue-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .leaderboard-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leaderboard-shell-top .leaderboard-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .leaderboard-page-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    align-items: start;
  }

  .leaderboard-page-layout .leaderboard-side-stack {
    padding-top: 40px;
  }

  .leaderboard-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .venue-img,
  .venue-map-placeholder { height: 100%; min-height: 260px; }

  .sponsor-strip { grid-template-columns: repeat(4, 1fr); }
  .sponsor-box.presenting { grid-column: 1 / -1; }

  .sponsor-box {
    min-height: 198px;
    padding: 16px 18px;
  }

  .sponsor-box img {
    max-height: 214px;
  }

  .sponsor-box-title {
    min-height: 430px;
  }

  .sponsor-box-title img {
    max-height: 440px;
  }

  .sponsor-strip-supporting {
    gap: 18px;
  }

  .sponsor-strip-supporting .sponsor-box {
    width: 320px;
  }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); }

  .pricing-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-grid { grid-template-columns: 1fr 1fr; }

  .form-row.two-col { grid-template-columns: 1fr 1fr; }
  .form-row.three-col { grid-template-columns: 1fr 1fr 1fr; }

  .newsletter-form { flex-direction: row; }
  .newsletter-form input { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-lights::before,
  .hero-lights::after,
  .hero-ctas .btn,
  .home-sponsor-track {
    animation: none;
  }

  .home-sponsor-track {
    transform: translateX(0);
  }

  .sponsor-box,
  .sponsor-box img {
    transition: none;
  }

  .sponsor-box:hover,
  .sponsor-box:focus-within {
    transform: none;
  }
}

/* Tournament flyers: uncropped previews and a scrollable reading view. */
.flyer-hint { color:var(--ivory-dim); margin:12px 0 24px; }
.flyer-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
@media (min-width:900px) { .flyer-grid { grid-template-columns:repeat(4,minmax(0,1fr)); } }
@media (max-width:480px) { .flyer-grid { grid-template-columns:1fr; } }
.flyer-link { display:block; align-self:start; overflow:hidden; border:1px solid rgba(201,162,39,.35); border-radius:var(--radius); background:var(--charcoal-2); }
.flyer-link img { width:100%; height:auto; }
.flyer-link span { display:block; padding:12px; text-align:center; color:var(--gold-bright); font-size:13px; }
.flyer-link:hover { border-color:var(--gold-bright); }
.callout-rules { margin-top:24px; }
.callout-rules h3 { font-size:18px; margin-bottom:14px; }
.flyer-viewer { margin:auto; width:min(1140px,96vw); max-width:96vw; height:92dvh; max-height:92dvh; padding:0; border:1px solid var(--gold); border-radius:12px; background:var(--charcoal); color:var(--ivory); overflow:hidden; }
.flyer-viewer::backdrop { background:rgba(0,0,0,.88); }
.flyer-viewer[open] { display:flex; flex-direction:column; }
.flyer-toolbar { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:10px; padding:12px; flex-shrink:0; }
.flyer-toolbar button { padding:9px 12px; border:1px solid var(--gold); border-radius:6px; color:var(--ivory); background:var(--charcoal-2); cursor:pointer; }
.flyer-toolbar button:hover { color:var(--gold-bright); }
.flyer-reader { overflow:auto; flex:1; min-height:0; overscroll-behavior:contain; }
.flyer-reader img { width:100%; height:auto; }
.flyer-reader.is-zoomed img { width:1600px; max-width:none; }
