/* Gustmoor — Lakeside Angler's Trophy Catch. Mobile-first: base rules are
   the mobile layout, min-width media queries progressively enhance.
   Vanilla Bootstrap 5 .container/.row/.col-* handle grid layout (Phase G).
   The hero + slot section commit to the theme's vivid dawn-lake palette as
   the dominant canvas colour, not a dark/brown wash with gold accents. */

:root {
  --sv2-gold: #f5b942;
  --sv2-gold-deep: #d68a1c;
  --sv2-white: #fffdf6;
  --sv2-ink: #16303a;
  --sv2-text-dim: #3f6a78;
  --sv2-card-bg: rgba(255, 255, 255, 0.18);
  --sv2-card-border: rgba(255, 255, 255, 0.45);
  --sv2-radius-lg: 22px;

  --wsp-lake: #1f7a9c;
  --wsp-lake-deep: #145a75;
  --wsp-sky: #8fe1fb;
  --wsp-orange: #e0762b;
  --wsp-wood: #8a5a34;
  --wsp-wood-deep: #5c3a20;
  --wsp-cream: #fff8ec;
  --wsp-shadow: 0 14px 34px rgba(22, 48, 58, 0.28);
  --wsp-radius: 18px;
}

* { box-sizing: border-box; }

/* Author-origin override for the mobile_first_audit.py hidden-attr-css-
   conflict static-analysis gap (documented non-blocking known limitation —
   this rule correctly wins the cascade in every real browser). */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Karla", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--sv2-ink);
  /* Vivid sunlit-dawn-lake gradient as the page's dominant canvas colour —
     sky-blue at top fading through lake-blue, never a flat near-black or
     muddy brown wash (2026-08-19 correction). */
  background: linear-gradient(180deg, #cdf3ff 0%, var(--wsp-sky) 20%, var(--wsp-lake) 62%, var(--wsp-lake-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: "Rye", "Georgia", serif;
  font-weight: 400;
  color: var(--sv2-ink);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: var(--wsp-lake-deep); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.2em; }

.wsp-main { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 22px; border-radius: 999px; border: none;
  font-family: "Rye", serif; font-weight: 400; font-size: 1rem; letter-spacing: 0.02em;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(135deg, var(--sv2-gold), var(--sv2-gold-deep));
  color: var(--sv2-ink);
  box-shadow: 0 8px 20px rgba(214, 138, 28, 0.4);
}
.btn--ghost { background: rgba(255, 255, 255, 0.6); color: var(--sv2-ink); border: 2px solid rgba(255, 255, 255, 0.85); }
.btn--sm { min-height: 44px; padding: 8px 16px; font-size: 0.9rem; }
.btn--lg { min-height: 52px; padding: 14px 30px; font-size: 1.15rem; }

/* ==========================================================
   NAV — trophy-shelf-drop-nav. Persistent brand+auth bar with
   a SECOND-TIER in-flow accordion shelf toggled by a chevron
   button, pushing page content down when open (never a full-
   screen overlay, off-canvas drawer, bottom-tab bar, or a
   floating detached element) — links render as small mounted
   "plaque" pills, not a flat link row. Same mechanism at every
   viewport width — a two-tier bar whose second tier is an
   expand/collapse accordion, distinct from every other
   sidebar/rail/pill/overlay/drawer/arch archetype shipped so far.
   ========================================================== */
.wsp-nav { position: sticky; top: 0; z-index: 500; background: var(--sv2-ink); box-shadow: var(--wsp-shadow); }
.wsp-nav__bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 14px; min-height: 60px; }
.wsp-nav__brand { display: flex; align-items: center; gap: 8px; color: var(--sv2-white); min-height: 44px; }
.wsp-nav__brand-mark { position: relative; display: inline-flex; width: 34px; height: 34px; }
.wsp-nav__brand-mark svg { width: 34px; height: 34px; display: block; }
.wsp-nav__creel-tag {
  position: absolute; bottom: -8px; right: -10px;
  background: var(--wsp-wood); color: var(--wsp-cream);
  font-size: 0.6rem; font-weight: 700; padding: 1px 5px;
  border-radius: 3px; transform: rotate(-9deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.35);
}
.wsp-nav__creel-tag::before {
  content: ""; position: absolute; top: -6px; left: 50%; width: 1px; height: 6px;
  background: rgba(255,255,255,0.6);
}
.wsp-nav__brand-word { font-family: "Rye", serif; font-size: 1.05rem; }

.wsp-nav__toggle {
  display: flex; align-items: center; gap: 4px; min-height: 44px; padding: 0 12px;
  background: rgba(255,255,255,0.1); color: var(--sv2-white); border: none;
  border-radius: 999px; font-weight: 700; font-size: 0.85rem; cursor: pointer;
}
.wsp-nav__toggle-chevron { display: inline-block; transition: transform 0.2s ease; }
.wsp-nav__toggle.is-open .wsp-nav__toggle-chevron { transform: rotate(180deg); }

.wsp-nav__auth { display: flex; align-items: center; }
.wsp-nav__auth-guest, .wsp-nav__auth-user { display: flex; align-items: center; gap: 6px; }
.wsp-nav__link-btn { background: none; border: none; color: var(--sv2-white); font-weight: 700; min-height: 44px; min-width: 44px; padding: 0 8px; cursor: pointer; font-size: 0.85rem; }
.wsp-nav__user-email { color: var(--sv2-white); font-size: 0.8rem; }

.wsp-nav__shelf {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 0 14px 14px;
  background: var(--sv2-ink);
}
.wsp-nav__plaque {
  display: inline-flex; align-items: center; min-height: 44px; min-width: 44px;
  padding: 0 14px; border-radius: 10px; background: rgba(255,255,255,0.08);
  color: var(--sv2-white); font-weight: 700; font-size: 0.88rem;
  border-bottom: 3px solid var(--sv2-gold);
}
.wsp-nav__plaque.is-active { background: var(--sv2-gold); color: var(--sv2-ink); }

@media (min-width: 900px) {
  .wsp-nav__bar { padding: 10px 32px; min-height: 76px; }
  .wsp-nav__brand-word { font-size: 1.3rem; }
}

/* ---------- Section scaffolding ---------- */
.wsp-section-head { text-align: center; max-width: 680px; margin: 0 auto 30px; }
.wsp-eyebrow {
  font-family: "Rye", serif; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--wsp-orange); font-size: 0.85rem; margin-bottom: 6px;
}
.wsp-lead { color: var(--sv2-ink); font-size: 1.02rem; opacity: 0.85; }
section { padding: 46px 0; }

/* ==========================================================
   HERO — hero-fullbleed-photo, LEFT-anchored text container
   (bulleted-value-props headline structure, dual-button CTA row
   placed below-lead, microcopy-below-cta trust line, and the
   dual-stat-pair proof block living in its own DETACHED floating
   card anchored to a hero corner, independent of the text
   column's own flow).
   ========================================================== */
.wsp-hero {
  position: relative; min-height: 74vh; background-size: cover; background-position: 70% center;
  display: flex; align-items: center; padding: 90px 0 110px; overflow: hidden;
}
.wsp-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(260deg, rgba(20,90,117,0.15) 20%, rgba(20,90,117,0.75) 100%);
}
.wsp-hero__inner { position: relative; z-index: 2; }
.wsp-hero__inner--left { max-width: 560px; }
.wsp-hero__h1 { color: var(--sv2-white); font-size: 1.9rem; line-height: 1.2; text-shadow: 0 4px 16px rgba(0,0,0,0.35); margin: 0 0 14px; }
.wsp-hero__props { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 6px; }
.wsp-hero__props li {
  color: var(--sv2-white); font-weight: 600; font-size: 0.95rem; padding-left: 22px; position: relative;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.wsp-hero__props li::before { content: "\2726"; position: absolute; left: 0; color: var(--sv2-gold); }
.wsp-hero__ctarow { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.wsp-hero__microcopy { color: var(--sv2-white); font-size: 0.82rem; opacity: 0.9; margin: 0; }

.wsp-hero__floatcard {
  position: absolute; right: 16px; bottom: 16px; z-index: 3;
  display: flex; gap: 10px; background: var(--sv2-card-bg); backdrop-filter: blur(6px);
  border: 1px solid var(--sv2-card-border); border-radius: var(--wsp-radius); padding: 12px 14px;
}
.wsp-hero__stat { display: flex; flex-direction: column; align-items: center; }
.wsp-hero__stat strong { font-family: "Rye", serif; color: var(--sv2-gold); font-size: 1.25rem; }
.wsp-hero__stat span { color: var(--sv2-white); font-size: 0.7rem; }

@media (min-width: 700px) {
  .wsp-hero__h1 { font-size: 2.6rem; }
  .wsp-hero__floatcard { right: 40px; bottom: 40px; }
}

/* ---------- Live player counter band ---------- */
.wsp-live { background: rgba(255,255,255,0.28); padding: 16px 0; }
.wsp-live__inner { display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.wsp-live__inner p { margin: 0; font-weight: 600; }
.wsp-live__inner strong { font-family: "Rye", serif; color: var(--wsp-lake-deep); }
.wsp-live__dot {
  width: 9px; height: 9px; border-radius: 50%; background: #2fbf6e; flex: 0 0 9px;
  animation: wspLivePulse 1.6s ease infinite;
}
@keyframes wspLivePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- Promo band ---------- */
.wsp-promo { background: linear-gradient(120deg, var(--wsp-lake), var(--wsp-orange)); }
.wsp-promo__inner { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.wsp-promo .wsp-eyebrow { color: var(--sv2-ink); }
.wsp-promo h2 { color: var(--sv2-white); text-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.wsp-promo .wsp-lead { color: var(--sv2-white); opacity: 0.92; }
@media (min-width: 800px) { .wsp-promo__inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- Stats strip (separate band) ---------- */
.wsp-stats { background: rgba(255,255,255,0.4); }
.wsp-stats__row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.wsp-stat-tile { text-align: center; background: var(--sv2-white); border-radius: var(--wsp-radius); padding: 16px; box-shadow: 0 4px 14px rgba(22,48,58,0.1); }
.wsp-stat-tile strong { display: block; font-family: "Rye", serif; font-size: 1.5rem; color: var(--wsp-lake-deep); }
.wsp-stat-tile span { font-size: 0.78rem; color: var(--sv2-text-dim); }
@media (min-width: 480px) { .wsp-stats__row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .wsp-stats__row { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Leaderboard band ---------- */
.wsp-wins { background: rgba(255,255,255,0.22); }
.wsp-lb__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.wsp-lb__row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px;
  background: var(--sv2-white); border-radius: 14px; padding: 10px 16px; box-shadow: 0 4px 14px rgba(22,48,58,0.1);
}
.wsp-lb__rank { font-family: "Rye", serif; font-size: 1.2rem; color: var(--wsp-orange); }
.wsp-lb__player { font-weight: 700; }
.wsp-lb__spot { display: block; width: 100%; font-size: 0.78rem; color: var(--sv2-text-dim); order: 3; }
.wsp-lb__amount { margin-left: auto; font-weight: 800; color: var(--wsp-lake-deep); }
@media (min-width: 640px) {
  .wsp-lb__row { display: grid; grid-template-columns: 32px 1fr 1fr auto; }
  .wsp-lb__spot { width: auto; order: initial; }
}

/* ==========================================================
   GAME CARDS — polaroid-clothesline-peg-card, landscape 16:9.
   ========================================================== */
.wsp-carousel { display: flex; overflow-x: auto; gap: 18px; padding: 14px 4px 10px; scroll-snap-type: x mandatory; }
.wsp-carousel .wsp-card { flex: 0 0 82%; scroll-snap-align: start; }
@media (min-width: 560px) { .wsp-carousel .wsp-card { flex: 0 0 340px; } }
@media (min-width: 1100px) { .wsp-carousel .wsp-card { flex: 0 0 300px; } }
.wsp-carousel--grid { display: grid; grid-template-columns: 1fr; overflow: visible; padding: 14px 0 0; }
@media (min-width: 560px) { .wsp-carousel--grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .wsp-carousel--grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .wsp-carousel--grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1450px) { .wsp-carousel--grid { grid-template-columns: repeat(5, 1fr); } }

.wsp-card {
  position: relative; display: block; background: var(--sv2-white); padding: 10px 10px 14px;
  border-radius: 4px; box-shadow: 0 10px 24px rgba(22,48,58,0.22);
  transform: rotate(var(--wsp-card-rot, 0deg)); transition: transform 0.2s ease;
}
.wsp-card:hover { transform: rotate(0deg) translateY(-4px); }
.wsp-card__plinth { display: block; color: inherit; }
.wsp-card__peg {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 12px; background: var(--sv2-gold); border-radius: 4px; box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.wsp-card__media { aspect-ratio: 16 / 9; overflow: hidden; border: 3px solid #fff; }
.wsp-card__media img { width: 100%; height: 100%; object-fit: cover; }
.wsp-card__tag { display: inline-block; margin-top: 8px; font-size: 0.68rem; font-weight: 700; color: var(--wsp-orange); text-transform: uppercase; letter-spacing: 0.04em; }
.wsp-card__title { font-family: "Caveat", cursive; font-size: 1.35rem; font-weight: 700; margin: 2px 0 6px; color: var(--sv2-ink); }
.wsp-card__meta { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--sv2-text-dim); margin-bottom: 8px; }
.wsp-card__cta { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; color: var(--wsp-lake-deep); }

/* Detail-page affordance for each catch — a small perched tag-ticket
   stamped on the photo's free top-right corner (the clothesline peg already
   owns top-center), echoing the wood/cream hangtag look of the brand mark's
   own .wsp-nav__creel-tag rather than importing a foreign UI pattern. It
   sits OUTSIDE .wsp-card__plinth as a sibling so the whole-card anchor and
   this link never nest. Reads as tackle-shop signage, not a second button
   competing with the "Set The Hook →" sign-up CTA lower in the card. */
.wsp-card__logbook {
  position: absolute; top: 8px; right: 8px; z-index: 3;
  display: inline-flex; align-items: center; min-height: 26px;
  background: var(--wsp-wood); color: var(--wsp-cream);
  font-family: "Karla", sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 4px 9px; border-radius: 3px 3px 3px 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.32);
  transform: rotate(3deg); transition: transform 0.15s ease, background 0.15s ease;
}
.wsp-card__logbook:hover { transform: rotate(0deg) translateY(-2px); background: var(--wsp-wood-deep); }

.wsp-shelfrow { margin-bottom: 30px; }
.wsp-shelfrow__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.wsp-shelfrow__head h3 { font-size: 1.1rem; margin: 0; }
.wsp-shelfrow__count { font-size: 0.78rem; color: var(--sv2-text-dim); }
.wsp-games-home__more { text-align: center; margin-top: 10px; }

/* ==========================================================
   SLOT — sunrise-crate-console: rectangular wooden-crate frame,
   brass bet gauge, sunrise gradient behind the reels.
   ========================================================== */
.wsp-slot-section { background: rgba(255,255,255,0.15); }
.wsp-slot-console { max-width: 620px; margin: 0 auto; }
.nj-slot__stage {
  position: relative; background-size: cover; background-position: center;
  border-radius: var(--wsp-radius); box-shadow: var(--wsp-shadow); padding: 4px;
}
.nj-slot__stage.is-flash::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
  animation: wspFlash 0.5s ease-out; pointer-events: none; border-radius: inherit;
}
@keyframes wspFlash { from { opacity: 1; } to { opacity: 0; } }

.wsp-slot__crate {
  position: relative; border: 10px solid var(--wsp-wood);
  border-image: repeating-linear-gradient(180deg, var(--wsp-wood) 0 12px, var(--wsp-wood-deep) 12px 24px) 10;
  border-radius: 14px; padding: 40px 14px 16px;
  background: linear-gradient(180deg, #ffe3ad 0%, var(--sv2-gold) 30%, var(--wsp-lake) 100%);
}
.wsp-slot__gauge {
  position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe3ad, var(--sv2-gold-deep) 75%);
  border: 4px solid var(--wsp-wood-deep); box-shadow: var(--wsp-shadow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.wsp-slot__gauge span { font-size: 0.55rem; text-transform: uppercase; color: var(--sv2-ink); opacity: 0.7; }
.wsp-slot__gauge strong { font-family: "Rye", serif; color: var(--sv2-ink); font-size: 1rem; }

.nj-slot__cabinet { position: relative; background: rgba(22,48,58,0.85); border-radius: 16px; padding: 14px; }
.wsp-slot__coinrow { display: flex; justify-content: center; gap: 8px; margin-bottom: 10px; color: var(--sv2-white); }
.wsp-slot__coinrow span { text-transform: uppercase; font-size: 0.7rem; opacity: 0.75; }
.wsp-slot__coinrow strong { font-family: "Rye", serif; color: var(--sv2-gold); font-size: 1.1rem; }
.wsp-slot__coinrow.is-pulsing strong { animation: wspPulse 0.7s ease; }
@keyframes wspPulse { 0% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* game-ui */
.nj-slot__reels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; background: rgba(0,0,0,0.3); border-radius: 12px; padding: 8px; }
.nj-slot__cell { aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--sv2-white); }
.nj-slot__cell img { width: 100%; height: 100%; object-fit: cover; }
.nj-slot__reels.is-spinning .nj-slot__cell img { filter: blur(3px); }
.nj-slot__cell.is-win { box-shadow: 0 0 0 3px var(--sv2-gold) inset; animation: wspWinCell 0.6s ease infinite alternate; }
@keyframes wspWinCell { from { filter: brightness(1); } to { filter: brightness(1.4); } }

.nj-slot__win {
  text-align: center; color: var(--sv2-gold); font-family: "Rye", serif; margin-top: 10px;
  min-height: 26px; opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.nj-slot__win.is-visible { opacity: 1; transform: translateY(0); }

/* game-ui */
.wsp-slot__controls { display: grid; grid-template-columns: 44px 1fr 44px 60px 44px; gap: 8px; align-items: center; margin-top: 14px; }
.wsp-slot__ctrl { min-height: 44px; border-radius: 10px; border: none; background: rgba(255,255,255,0.16); color: var(--sv2-white); font-weight: 700; cursor: pointer; }
.wsp-slot__ctrl--auto.is-active { background: var(--wsp-orange); color: var(--sv2-white); }
.wsp-slot__spin {
  min-height: 48px; border-radius: 999px; border: none;
  background: linear-gradient(135deg, var(--sv2-gold), var(--wsp-orange));
  color: var(--sv2-ink); font-family: "Rye", serif; letter-spacing: 0.06em; cursor: pointer;
}
.wsp-slot__spin.is-spinning { opacity: 0.7; }
.wsp-slot__ctrl:disabled, .wsp-slot__spin:disabled { opacity: 0.4; cursor: not-allowed; }

/* Bespoke win animation: dawn-ray-sweep-bloom — radiating light rays +
   soft bloom pulse, no discrete falling/bursting particles at all. */
.wsp-ray {
  position: absolute; top: 50%; left: 50%; width: 3px; height: 46%;
  transform-origin: bottom center; border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), var(--sv2-gold) 45%, transparent 100%);
  opacity: 0; pointer-events: none;
  animation: wspRaySweep var(--wsp-ray-dur, 900ms) ease-out forwards;
}
@keyframes wspRaySweep {
  0% { opacity: 0; transform: translate(-50%, -100%) rotate(var(--wsp-ray-angle, 0deg)) scaleY(0.3); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -100%) rotate(var(--wsp-ray-angle, 0deg)) scaleY(1.4); }
}
.wsp-bloom {
  position: absolute; top: 50%; left: 50%; width: 40%; height: 40%;
  transform: translate(-50%, -50%) scale(0.4); border-radius: 50%;
  background: radial-gradient(circle, rgba(245,185,66,0.65), transparent 70%);
  opacity: 0; pointer-events: none; animation: wspBloom 700ms ease-out forwards;
}
@keyframes wspBloom { 0% { opacity: 0.9; transform: translate(-50%,-50%) scale(0.4); } 100% { opacity: 0; transform: translate(-50%,-50%) scale(2.2); } }

/* Paytable sheet (shared IDs) */
.nj-paytable { position: fixed; inset: 0; z-index: 900; display: flex; align-items: flex-end; }
.nj-paytable__backdrop { position: absolute; inset: 0; background: rgba(22,48,58,0.6); }
.nj-paytable__sheet { position: relative; background: var(--sv2-white); width: 100%; max-height: 80vh; overflow-y: auto; border-radius: 22px 22px 0 0; padding: 20px; }
.nj-paytable__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
/* game-ui */
.nj-paytable__row { display: grid; grid-template-columns: 40px 1fr repeat(3, 50px); align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.nj-paytable__row img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }
.nj-paytable__line { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
/* game-ui */
.nj-paytable__line-grid { display: grid; grid-template-columns: repeat(5, 8px); gap: 2px; }
.nj-paytable__line-dot { width: 8px; height: 8px; border-radius: 2px; background: rgba(0,0,0,0.1); }
.nj-paytable__line-dot.is-on { background: var(--sv2-gold); }

.wsp-page-footnote { font-size: 0.85rem; color: var(--sv2-text-dim); margin-top: 20px; }

/* ---------- How-it-works ---------- */
.wsp-steps__row { display: grid; gap: 16px; }
.wsp-steps__item { background: var(--sv2-white); border-radius: var(--wsp-radius); padding: 18px; text-align: center; box-shadow: 0 4px 14px rgba(22,48,58,0.1); }
.wsp-steps__num {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--sv2-gold); color: var(--sv2-ink); font-weight: 800; margin-bottom: 8px;
}
@media (min-width: 800px) { .wsp-steps__row { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Inner-page hero ---------- */
.wsp-page-hero { padding: 60px 0 34px; text-align: center; }
.wsp-page-hero h1 { color: var(--sv2-ink); font-size: 1.8rem; }

/* ---------- Tournaments / Achievements / Rewards / Community ---------- */
.wsp-tourneys__grid, .wsp-community__grid { display: grid; gap: 16px; }
.wsp-tourney-card, .wsp-community-card { background: var(--sv2-white); border-radius: var(--wsp-radius); padding: 20px; box-shadow: 0 8px 20px rgba(22,48,58,0.1); }
.wsp-tourney-card__badge { display: inline-block; background: var(--sv2-gold); color: var(--sv2-ink); font-size: 0.68rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; }
.wsp-tourney-card__time { display: block; margin: 6px 0 12px; font-size: 0.82rem; color: var(--sv2-text-dim); }
@media (min-width: 800px) { .wsp-tourneys__grid, .wsp-community__grid { grid-template-columns: repeat(3, 1fr); } }

.wsp-badge-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.wsp-badge-card { background: var(--sv2-white); border-radius: var(--wsp-radius); padding: 18px; text-align: center; box-shadow: 0 6px 16px rgba(22,48,58,0.1); }
.wsp-badge-card__icon { font-size: 1.8rem; display: block; margin-bottom: 6px; }
@media (min-width: 520px) { .wsp-badge-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .wsp-badge-grid { grid-template-columns: repeat(3, 1fr); } }

.wsp-reward-calendar { display: grid; grid-template-columns: 1fr; gap: 12px; }
.wsp-reward-day { background: var(--sv2-white); border-radius: 14px; padding: 14px; text-align: center; box-shadow: 0 4px 12px rgba(22,48,58,0.1); }
.wsp-reward-day__num { display: block; font-size: 0.75rem; color: var(--sv2-text-dim); }
.wsp-reward-day__coins { display: block; font-weight: 800; color: var(--wsp-lake-deep); margin-top: 4px; }
.wsp-reward-day.is-today { outline: 3px solid var(--sv2-gold); }
@media (min-width: 480px) { .wsp-reward-calendar { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .wsp-reward-calendar { grid-template-columns: repeat(4, 1fr); } }

/* ---------- FAQ ---------- */
.wsp-faq__list { display: grid; gap: 10px; }
.wsp-faq__item { background: var(--sv2-white); border-radius: 16px; padding: 14px 18px; box-shadow: 0 4px 12px rgba(22,48,58,0.1); }
.wsp-faq__item summary { cursor: pointer; font-weight: 700; min-height: 44px; display: flex; align-items: center; }
.wsp-faq__item p { margin: 10px 0 0; color: var(--sv2-text-dim); }

/* ---------- Contact ---------- */
.wsp-contact__form { max-width: 520px; }
.wsp-contact__sent { color: var(--wsp-lake-deep); font-weight: 700; }

/* ---------- Legal pages — numbered-clause / contract layout ---------- */
.wsp-clause-list { display: grid; gap: 22px; }
.wsp-clause { display: flex; align-items: flex-start; gap: 14px; background: var(--sv2-white); border-radius: var(--wsp-radius); padding: 18px; box-shadow: 0 4px 14px rgba(22,48,58,0.08); }
.wsp-clause__body { flex: 1; min-width: 0; }
.wsp-clause__num {
  display: flex; align-items: center; justify-content: center; flex: 0 0 34px; width: 34px; height: 34px;
  border-radius: 50%; background: var(--sv2-gold); color: var(--sv2-ink); font-family: "Rye", serif; font-weight: 700;
}
.wsp-clause__body h2 { font-size: 1.1rem; margin-top: 0; }
.wsp-clause__body ul { margin-bottom: 0; }
.wsp-clause__orgs { margin-top: 10px; }

/* ==========================================================
   FOOTER — trophy-wall-plaque-band: brand mounted centrally at
   top, three equal panel cards below (Explore/Legal/Support), a
   full-width responsible-gaming band, brass nameplate bottom bar.
   ========================================================== */
.wsp-footer { background: var(--sv2-ink); color: rgba(255,255,255,0.85); margin-top: 40px; }
.wsp-footer a { color: rgba(255,255,255,0.85); }
.wsp-footer__plaque { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: center; }
.wsp-footer__brandrow { display: inline-flex; align-items: center; gap: 12px; }
.wsp-footer__brandmark svg { width: 40px; height: 40px; }
.wsp-footer__brandname { font-family: "Rye", serif; font-size: 1.3rem; margin: 0; color: var(--sv2-white); text-align: left; }
.wsp-footer__tagline { margin: 4px 0 0; font-size: 0.88rem; text-align: left; }
.wsp-footer__agenote { margin: 14px 0 0; font-size: 0.85rem; color: var(--sv2-gold); }

.wsp-footer__panels { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.wsp-footer__panelrow { row-gap: 16px; }
.wsp-footer__panel { background: rgba(255,255,255,0.06); border-radius: 14px; padding: 16px; height: 100%; }
.wsp-footer__panel h4 { color: var(--sv2-white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.wsp-footer__panel ul { list-style: none; padding: 0; margin: 0; }
.wsp-footer__panel li { margin-bottom: 8px; }
.wsp-footer__panel a { display: inline-flex; align-items: center; min-height: 44px; min-width: 44px; }

.wsp-footer__rgband { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.wsp-footer__orgs-lead { font-size: 0.85rem; margin-bottom: 10px; }
.wsp-footer__orgs { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.nj-footer__org { display: inline-flex; align-items: center; min-height: 44px; min-width: 44px; padding: 0 14px; background: rgba(255,255,255,0.08); border-radius: 10px; font-size: 0.82rem; }

.wsp-footer__nameplate { padding: 16px 0; font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.wsp-footer__nameplate-row p { margin: 4px 0; }

/* ==========================================================
   AUTH MODAL — surface-ripple-rise-panel: panel rises from the
   bottom edge with a circular clip-path "ripple" reveal (as if
   breaking the water's surface), never a translateY-only slide,
   a scale/rotate pop, a flip, or a hatch-hinge swing.
   ========================================================== */
.wsp-auth { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: flex-end; justify-content: center; padding: 0; }
.wsp-auth__backdrop { position: absolute; inset: 0; background: rgba(22,48,58,0.62); backdrop-filter: blur(2px); }
.wsp-auth__panel {
  position: relative; width: 100%; max-width: 440px; max-height: 90vh; overflow-y: auto;
  background: var(--sv2-white); border-radius: 26px 26px 0 0; padding: 26px 24px 26px;
  box-shadow: var(--wsp-shadow);
  animation: wspSurfaceRise 0.4s ease forwards, wspRippleReveal 0.5s ease forwards;
}
@keyframes wspSurfaceRise { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes wspRippleReveal { from { clip-path: circle(0% at 50% 100%); } to { clip-path: circle(150% at 50% 100%); } }
.wsp-auth__ripple-ring {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 28px; border: 3px solid var(--wsp-sky); border-radius: 50%; opacity: 0.6; pointer-events: none;
}
.wsp-auth__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.wsp-auth__header h3 { margin: 0; font-size: 1.25rem; }
.wsp-auth__close { background: none; border: none; font-size: 1.2rem; cursor: pointer; min-width: 44px; min-height: 44px; }

.wsp-auth__provider-row { display: grid; gap: 10px; margin: 14px 0; }
.wsp-auth__provider {
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 10px;
  min-height: 48px; border-radius: 14px; border: 2px solid rgba(22,48,58,0.14);
  background: var(--sv2-white); padding: 0 14px; font-weight: 700; cursor: pointer;
}
.wsp-auth__provider--email { border-color: var(--wsp-lake); }
.wsp-auth__provider-icon svg { width: 20px; height: 20px; }
.wsp-auth__provider--email.is-glowing { box-shadow: 0 0 0 4px rgba(31,122,156,0.35); animation: wspGlowPulse 1s ease 2; }
@keyframes wspGlowPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(31,122,156,0.5); } 50% { box-shadow: 0 0 0 8px rgba(31,122,156,0); } }

.wsp-auth__waterline {
  position: absolute; left: 0; right: 0; bottom: 0; height: 0%;
  background: linear-gradient(180deg, rgba(31,122,156,0.85), rgba(20,90,117,0.95));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  transition: height 0.5s cubic-bezier(.3,1.4,.4,1);
  pointer-events: none;
}
.wsp-auth__provider.is-rising .wsp-auth__waterline { height: 100%; }
.wsp-auth__waterline-caption {
  color: var(--sv2-white); font-size: 0.72rem; font-weight: 700; padding: 0 10px; text-align: center;
  opacity: 0; transition: opacity 0.3s ease 0.25s;
}
.wsp-auth__provider.is-rising .wsp-auth__waterline-caption { opacity: 1; }

.wsp-auth__notice { display: none; }
.wsp-auth__error { color: #b3273f; font-size: 0.85rem; }

/* Shared field/lead styles reused from the contract's .nj-auth__* pattern */
.nj-auth__lead { font-weight: 600; margin-bottom: 12px; }
.nj-auth__fine { font-size: 0.74rem; color: var(--sv2-text-dim); margin-top: 12px; }
.nj-auth__field { display: block; margin-bottom: 12px; font-weight: 600; font-size: 0.9rem; }
.nj-auth__field input, .nj-auth__field textarea {
  display: block; width: 100%; margin-top: 6px; min-height: 44px; font-size: 16px;
  border-radius: 12px; border: 2px solid rgba(22,48,58,0.15); padding: 0 12px; font-family: inherit;
}
.nj-auth__field textarea { padding: 10px 12px; min-height: 100px; }
.nj-auth__back { background: none; border: none; font-weight: 700; cursor: pointer; margin-bottom: 10px; min-height: 44px; }
.nj-auth__submit { width: 100%; margin-top: 6px; }

/* ==========================================================
   COOKIE CONSENT BANNER
   ========================================================== */
.nj-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; }
.nj-cookie__bar { background: var(--sv2-ink); color: var(--sv2-white); padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.nj-cookie__text { margin: 0; font-size: 0.85rem; }
.nj-cookie__text a { color: var(--sv2-gold); }
.nj-cookie__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.nj-cookie__panel { background: var(--sv2-white); border-radius: 20px 20px 0 0; padding: 20px; max-height: 70vh; overflow-y: auto; }
.nj-cookie__panel-head { display: flex; justify-content: space-between; align-items: center; }
.nj-cookie__panel-intro { font-size: 0.85rem; color: var(--sv2-text-dim); }
.nj-cookie__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.nj-cookie__row-copy strong { display: block; }
.nj-cookie__row-copy span { font-size: 0.8rem; color: var(--sv2-text-dim); }
.nj-cookie__locked-badge { font-size: 0.75rem; background: rgba(0,0,0,0.06); padding: 4px 10px; border-radius: 999px; }
.nj-cookie__toggle { width: 46px; height: 28px; border-radius: 999px; border: none; background: rgba(0,0,0,0.15); position: relative; cursor: pointer; }
.nj-cookie__toggle-dot { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; transition: left 0.2s ease; }
.nj-cookie__toggle.is-on { background: var(--wsp-lake); }
.nj-cookie__toggle.is-on .nj-cookie__toggle-dot { left: 21px; }
.nj-cookie__panel-actions { display: flex; gap: 8px; margin-top: 14px; }
@media (min-width: 700px) { .nj-cookie__bar { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ==========================================================
   GAME GUIDE — shared components for individual game guide
   pages (breadcrumb, hero, prose, recommendations, author card).
   ========================================================== */

/* ---------- Breadcrumb ---------- */
.wsp-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  list-style: none; padding: 0; margin: 0 0 18px;
  font-size: 0.82rem; color: var(--sv2-text-dim);
}
.wsp-breadcrumb li { display: flex; align-items: center; gap: 6px; }
.wsp-breadcrumb li:not(:last-child)::after { content: "\203A"; opacity: 0.6; }
.wsp-breadcrumb a { color: var(--wsp-lake-deep); font-weight: 600; min-height: 44px; display: inline-flex; align-items: center; }
.wsp-breadcrumb li[aria-current="page"] { color: var(--sv2-ink); font-weight: 700; }

/* ---------- Game hero (media + body) ---------- */
.wsp-game-hero {
  display: grid; grid-template-columns: 1fr; gap: 22px;
  background: var(--sv2-white); border-radius: var(--wsp-radius);
  box-shadow: var(--wsp-shadow); padding: 18px; margin-bottom: 34px;
}
.wsp-game-hero__media { border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 9; }
.wsp-game-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.wsp-game-hero__body { display: flex; flex-direction: column; gap: 10px; }
.wsp-game-hero__body h1 { font-size: 1.6rem; margin: 0; }
.wsp-game-hero__body p { margin: 0; color: var(--sv2-text-dim); }
@media (min-width: 800px) {
  .wsp-game-hero { grid-template-columns: 1.1fr 1fr; align-items: center; padding: 24px; }
  .wsp-game-hero__body h1 { font-size: 2rem; }
}

/* ---------- Long-form prose / article wrapper ---------- */
.wsp-prose { max-width: 720px; margin: 0 auto 40px; color: var(--sv2-ink); }
.wsp-prose h2 { font-size: 1.35rem; margin: 1.6em 0 0.6em; }
.wsp-prose h2:first-child { margin-top: 0; }
.wsp-prose h3 { font-size: 1.1rem; margin: 1.3em 0 0.5em; }
.wsp-prose p { margin: 0 0 1.1em; color: var(--sv2-ink); }
.wsp-prose ul, .wsp-prose ol { margin: 0 0 1.1em; padding-left: 1.3em; }
.wsp-prose li { margin-bottom: 0.5em; }
.wsp-prose li::marker { color: var(--wsp-orange); }
.wsp-prose a { color: var(--wsp-lake-deep); font-weight: 600; text-decoration: underline; }
.wsp-prose strong { color: var(--sv2-ink); font-weight: 800; }

/* ---------- "More games like this" recommendation grid ---------- */
.wsp-recs { margin-bottom: 40px; }
.wsp-rec-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .wsp-rec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .wsp-rec-grid { grid-template-columns: repeat(4, 1fr); } }
.wsp-rec-card {
  display: block; background: var(--sv2-white); border-radius: var(--wsp-radius);
  overflow: hidden; box-shadow: 0 6px 16px rgba(22,48,58,0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wsp-rec-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(22,48,58,0.2); }
.wsp-rec-card__img { aspect-ratio: 16 / 9; overflow: hidden; }
.wsp-rec-card__img img { width: 100%; height: 100%; object-fit: cover; }
.wsp-rec-card__tag {
  display: block; margin: 10px 12px 0; font-size: 0.68rem; font-weight: 700;
  color: var(--wsp-orange); text-transform: uppercase; letter-spacing: 0.04em;
}
.wsp-rec-card__title { display: block; margin: 4px 12px 12px; font-weight: 700; color: var(--sv2-ink); }

/* ---------- Author bio card ---------- */
.wsp-author-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--sv2-white); border-radius: var(--wsp-radius);
  box-shadow: 0 4px 14px rgba(22,48,58,0.1); padding: 18px; margin: 20px 0 40px;
}
.wsp-author-card__avatar { flex: 0 0 64px; width: 64px; height: 64px; border-radius: 50%; overflow: hidden; }
.wsp-author-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.wsp-author-card__body { flex: 1; min-width: 0; }
.wsp-author-card__label {
  display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--sv2-text-dim); margin-bottom: 2px;
}
.wsp-author-card__name { font-weight: 800; color: var(--sv2-ink); }
.wsp-author-card__role { display: block; font-size: 0.82rem; color: var(--wsp-lake-deep); font-weight: 600; }
.wsp-author-card__bio { margin: 6px 0 0; font-size: 0.88rem; color: var(--sv2-text-dim); }
