/* ============================================================
   Gamting Play — Preview Redesign Stylesheet
   Scope: /games-preview ONLY (loaded via games_preview.blade.php)
   ============================================================ */

/* ---------- Design tokens (scoped to .gp-preview) ---------- */
.gp-preview {
  --gp-bg-0: #0A0B0E;
  --gp-bg-1: #0E1320;
  --gp-bg-2: #161C2E;
  --gp-bg-3: #1F2740;

  --gp-line: rgba(255, 255, 255, 0.06);
  --gp-line-strong: rgba(255, 255, 255, 0.14);

  --gp-text-0: #F4F6FB;
  --gp-text-1: #B7BFD2;
  --gp-text-2: #7C879F;

  --gp-acc-green: #00E58B;
  --gp-acc-green-2: #5AFFAF;
  --gp-acc-green-soft: rgba(0, 229, 139, 0.12);
  --gp-acc-violet: #7B61FF;
  --gp-acc-violet-soft: rgba(123, 97, 255, 0.12);
  --gp-acc-amber: #FFB547;
  --gp-acc-rose: #FF6B81;

  --gp-grad-cta: linear-gradient(135deg, #00E58B 0%, #00B070 100%);
  --gp-grad-hero: radial-gradient(1100px 540px at 50% -180px, rgba(123, 97, 255, 0.20), transparent 60%),
                  radial-gradient(700px 480px at 0% -100px, rgba(0, 229, 139, 0.12), transparent 60%),
                  radial-gradient(700px 480px at 100% -100px, rgba(0, 229, 139, 0.10), transparent 60%);
  --gp-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);

  --gp-font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  --gp-font-body: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --gp-font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --gp-s-1: 4px;  --gp-s-2: 8px;  --gp-s-3: 12px;
  --gp-s-4: 16px; --gp-s-5: 24px; --gp-s-6: 32px;
  --gp-s-7: 48px; --gp-s-8: 64px; --gp-s-9: 96px;

  --gp-r-sm: 8px; --gp-r-md: 14px; --gp-r-lg: 20px; --gp-r-xl: 28px;
  --gp-r-pill: 999px;

  --gp-shadow-1: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 24px rgba(0, 0, 0, 0.32);
  --gp-shadow-2: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 16px 48px rgba(0, 0, 0, 0.45);

  --gp-z-sticky: 50;
  --gp-z-overlay: 90;

  --gp-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gp-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Scoped reset ---------- */
.gp-preview { box-sizing: border-box; }
.gp-preview *, .gp-preview *::before, .gp-preview *::after { box-sizing: border-box; }

.gp-preview {
  background: var(--gp-bg-0);
  color: var(--gp-text-0);
  font-family: var(--gp-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.gp-preview h1, .gp-preview h2, .gp-preview h3, .gp-preview h4, .gp-preview h5, .gp-preview h6 {
  font-family: var(--gp-font-display);
  color: var(--gp-text-0);
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.gp-preview p { color: var(--gp-text-1); margin: 0; }

.gp-preview a {
  color: var(--gp-acc-green);
  text-decoration: none;
  transition: color 180ms var(--gp-ease-out);
}
.gp-preview a:hover { color: var(--gp-acc-green-2); }

/* ---------- Container ---------- */
.gp-preview .gp-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gp-s-5);
}
@media (min-width: 1024px) {
  .gp-preview .gp-container { padding: 0 var(--gp-s-6); }
}

/* ============================================================
   HERO (centered on all viewports)
   ============================================================ */
.gp-preview .gp-hero {
  position: relative;
  padding: var(--gp-s-9) 0 var(--gp-s-7);
  background: var(--gp-grad-hero), var(--gp-bg-0);
  overflow: hidden;
}

.gp-preview .gp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: -1px -1px;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 80%, transparent 100%);
  pointer-events: none;
}

.gp-preview .gp-hero__center {
  position: relative;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gp-preview .gp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--gp-s-2);
  padding: var(--gp-s-2) var(--gp-s-3);
  background: var(--gp-acc-green-soft);
  border: 1px solid rgba(0, 229, 139, 0.3);
  border-radius: var(--gp-r-pill);
  font-family: var(--gp-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gp-acc-green);
  margin-bottom: var(--gp-s-5);
}

.gp-preview .gp-hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gp-acc-green);
  box-shadow: 0 0 0 4px rgba(0, 229, 139, 0.2);
  animation: gp-pulse 1.6s ease-in-out infinite;
}

@keyframes gp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.gp-preview .gp-hero__title {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: var(--gp-s-5);
}

.gp-preview .gp-hero__title-mark {
  /* Solid emerald — calmer, more readable than a shimmering rainbow gradient.
     Matches the primary CTA button colour for visual consistency. */
  color: #00E58B;
}

.gp-preview .gp-hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--gp-text-1);
  max-width: 640px;
  margin: 0 auto var(--gp-s-6);
}

.gp-preview .gp-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gp-s-3);
  justify-content: center;
  margin-bottom: var(--gp-s-8);
}

/* ============================================================
   BUTTONS  (scoped + !important on the things that fight cmn-btn)
   ============================================================ */
.gp-preview .gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gp-s-2);
  padding: 14px var(--gp-s-6);
  border-radius: var(--gp-r-pill);
  font-family: var(--gp-font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  transition: transform 220ms var(--gp-ease-out), box-shadow 220ms var(--gp-ease-out), background 220ms var(--gp-ease-out);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.gp-preview .gp-btn--primary {
  background: var(--gp-grad-cta) !important;
  color: #03220F !important;
  box-shadow: 0 0 0 1px rgba(0, 229, 139, 0.3), 0 10px 24px rgba(0, 229, 139, 0.25);
  text-shadow: none;
}
.gp-preview .gp-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 229, 139, 0.5), 0 16px 32px rgba(0, 229, 139, 0.35);
  background: linear-gradient(135deg, #1AFFA0 0%, #00C078 100%) !important;
  color: #03220F !important;
}
.gp-preview .gp-btn--primary:visited { color: #03220F !important; }
.gp-preview .gp-btn--primary svg { color: #03220F; }

.gp-preview .gp-btn--ghost {
  background: transparent !important;
  color: var(--gp-text-0) !important;
  border: 1px solid var(--gp-line-strong) !important;
}
.gp-preview .gp-btn--ghost:hover {
  background: var(--gp-bg-2) !important;
  border-color: var(--gp-text-2) !important;
}

.gp-preview .gp-btn--lg {
  padding: 18px var(--gp-s-7);
  font-size: 17px;
}

.gp-preview .gp-btn__icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* ============================================================
   HERO STATS  (centered grid below CTAs)
   ============================================================ */
.gp-preview .gp-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gp-s-3);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gp-preview .gp-stat-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gp-s-3);
  }
}

.gp-preview .gp-stat {
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
  padding: var(--gp-s-5);
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: transform 280ms var(--gp-ease-out), border-color 280ms var(--gp-ease-out);
}
.gp-preview .gp-stat::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gp-glass); pointer-events: none;
}
.gp-preview .gp-stat:hover {
  transform: translateY(-2px);
  border-color: var(--gp-line-strong);
}

.gp-preview .gp-stat__label {
  font-family: var(--gp-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gp-text-2);
  margin-bottom: var(--gp-s-2);
}

.gp-preview .gp-stat__value {
  font-family: var(--gp-font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gp-text-0);
  line-height: 1.1;
}

.gp-preview .gp-stat__suffix {
  font-size: 16px;
  color: var(--gp-acc-green);
  margin-left: var(--gp-s-1);
}

/* ============================================================
   JACKPOT COUNTER (in hero)
   ============================================================ */
.gp-preview .gp-jackpot {
  margin-top: var(--gp-s-6);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.gp-preview .gp-jackpot__inner {
  position: relative;
  background:
    radial-gradient(800px 200px at 50% 0%, rgba(0, 229, 139, 0.18), transparent 60%),
    var(--gp-bg-1);
  border: 1px solid rgba(0, 229, 139, 0.25);
  border-radius: var(--gp-r-lg);
  padding: var(--gp-s-5) var(--gp-s-6);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 0 0 1px rgba(0, 229, 139, 0.15), 0 12px 32px rgba(0, 229, 139, 0.12);
}

.gp-preview .gp-jackpot__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gp-s-4);
  margin-bottom: var(--gp-s-3);
}

.gp-preview .gp-jackpot__label {
  display: inline-flex;
  align-items: center;
  gap: var(--gp-s-2);
  font-family: var(--gp-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gp-text-2);
}

.gp-preview .gp-jackpot__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gp-acc-green);
  box-shadow: 0 0 0 4px rgba(0, 229, 139, 0.2);
  animation: gp-pulse 1.6s ease-in-out infinite;
}

.gp-preview .gp-jackpot__rate {
  font-family: var(--gp-font-mono);
  font-size: 11px;
  color: var(--gp-acc-green);
  letter-spacing: 0.04em;
}

.gp-preview .gp-jackpot__value {
  font-family: var(--gp-font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gp-acc-green);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 36px rgba(0, 229, 139, 0.4);
  margin-bottom: var(--gp-s-2);
  animation: gp-jackpot-glow 2.4s ease-in-out infinite;
}

@keyframes gp-jackpot-glow {
  0%, 100% { text-shadow: 0 0 24px rgba(0, 229, 139, 0.3); }
  50% { text-shadow: 0 0 48px rgba(0, 229, 139, 0.6), 0 0 8px rgba(0, 229, 139, 0.5); }
}

.gp-preview .gp-jackpot__suffix {
  font-family: var(--gp-font-mono);
  font-size: 13px;
  color: var(--gp-text-1);
  letter-spacing: 0.05em;
}

.gp-preview .gp-jackpot__sub {
  color: var(--gp-text-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   LIVE WINNERS TICKER
   ============================================================ */
.gp-preview .gp-ticker {
  background:
    linear-gradient(180deg, var(--gp-bg-0) 0%, rgba(10, 11, 14, 0.6) 100%);
  border-top: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
  padding: var(--gp-s-3) 0;
  overflow: hidden;
  margin-top: var(--gp-s-5);
}

.gp-preview .gp-ticker__head {
  display: flex;
  align-items: center;
  gap: var(--gp-s-2);
  margin-bottom: var(--gp-s-2);
}

.gp-preview .gp-ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gp-acc-green);
  animation: gp-pulse 1.6s ease-in-out infinite;
}

.gp-preview .gp-ticker__label {
  font-family: var(--gp-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gp-acc-green);
}

.gp-preview .gp-ticker__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.gp-preview .gp-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: var(--gp-s-7);
  white-space: nowrap;
  animation: gp-ticker-scroll 60s linear infinite;
  will-change: transform;
}

.gp-preview .gp-ticker:hover .gp-ticker__track {
  animation-play-state: paused;
}

@keyframes gp-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gp-preview .gp-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: var(--gp-s-2);
  font-family: var(--gp-font-mono);
  font-size: 13px;
  color: var(--gp-text-1);
}

.gp-preview .gp-ticker__user {
  color: var(--gp-text-0);
  font-weight: 600;
}

.gp-preview .gp-ticker__verb {
  color: var(--gp-text-2);
}

.gp-preview .gp-ticker__amount {
  color: var(--gp-acc-green);
  font-weight: 700;
}

.gp-preview .gp-ticker__sep {
  color: var(--gp-text-2);
}

.gp-preview .gp-ticker__game {
  color: var(--gp-text-0);
}

.gp-preview .gp-ticker__provider {
  color: var(--gp-text-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   LIVE DEALER "ON AIR" SECTION
   Hidden on mobile to avoid 1.7 MB Ezugi PNG downloads (no WebP variants exist).
   ============================================================ */
@media (max-width: 767px) {
  .gp-preview .gp-onair-section { display: none; }
}

.gp-preview .gp-onair-section {
  padding-top: var(--gp-s-7);
  padding-bottom: var(--gp-s-7);
}

.gp-preview .gp-onair__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--gp-s-2);
  font-family: var(--gp-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gp-acc-rose);
  font-weight: 600;
}

.gp-preview .gp-onair__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gp-acc-rose);
  box-shadow: 0 0 0 4px rgba(255, 107, 129, 0.25);
  animation: gp-pulse 1.4s ease-in-out infinite;
}

.gp-preview .gp-onair__view-all {
  font-family: var(--gp-font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gp-text-1) !important;
  white-space: nowrap;
}

.gp-preview .gp-onair__view-all:hover {
  color: var(--gp-acc-green) !important;
}

.gp-preview .gp-onair__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gp-s-4);
}

@media (min-width: 768px) {
  .gp-preview .gp-onair__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gp-preview .gp-onair-card {
  display: flex;
  flex-direction: column;
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform 240ms var(--gp-ease-out), border-color 240ms var(--gp-ease-out), box-shadow 240ms var(--gp-ease-out);
}

.gp-preview .gp-onair-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 129, 0.4);
  box-shadow: 0 16px 48px rgba(255, 107, 129, 0.18), 0 0 0 1px rgba(255, 107, 129, 0.2);
}

.gp-preview .gp-onair-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--gp-bg-2), var(--gp-bg-1));
  overflow: hidden;
}

.gp-preview .gp-onair-card--placeholder .gp-onair-card__thumb {
  background:
    repeating-linear-gradient(45deg,
      rgba(255, 107, 129, 0.04) 0px,
      rgba(255, 107, 129, 0.04) 12px,
      rgba(255, 107, 129, 0.08) 12px,
      rgba(255, 107, 129, 0.08) 24px
    ),
    linear-gradient(135deg, var(--gp-bg-2), var(--gp-bg-1));
}

.gp-preview .gp-onair-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 480ms var(--gp-ease-out);
}

.gp-preview .gp-onair-card:hover .gp-onair-card__img {
  transform: scale(1.06);
}

.gp-preview .gp-onair-card__badges {
  position: absolute;
  top: var(--gp-s-3);
  left: var(--gp-s-3);
  right: var(--gp-s-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gp-s-2);
  z-index: 2;
  pointer-events: none;
}

.gp-preview .gp-onair-card__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--gp-acc-rose);
  color: #1A0007;
  font-family: var(--gp-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--gp-r-pill);
  box-shadow: 0 4px 12px rgba(255, 107, 129, 0.5);
}

.gp-preview .gp-onair-card__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1A0007;
  animation: gp-pulse 1.4s ease-in-out infinite;
}

.gp-preview .gp-onair-card__watchers {
  font-family: var(--gp-font-mono);
  font-size: 11px;
  color: var(--gp-text-0);
  padding: 4px 10px;
  background: rgba(10, 11, 14, 0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--gp-r-pill);
  letter-spacing: 0.04em;
}

.gp-preview .gp-onair-card__name-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gp-s-4);
  font-family: var(--gp-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gp-text-0);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  text-align: center;
  z-index: 1;
}

.gp-preview .gp-onair-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 11, 14, 0.85) 100%);
  opacity: 0;
  transition: opacity 240ms var(--gp-ease-out);
  z-index: 3;
}

.gp-preview .gp-onair-card:hover .gp-onair-card__play {
  opacity: 1;
}

.gp-preview .gp-onair-card__play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gp-grad-cta);
  color: #03220F;
  border-radius: var(--gp-r-pill);
  font-family: var(--gp-font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(0, 229, 139, 0.5);
  transform: translateY(8px);
  transition: transform 280ms var(--gp-ease-out);
}

.gp-preview .gp-onair-card:hover .gp-onair-card__play-btn {
  transform: translateY(0);
}

.gp-preview .gp-onair-card__play-btn svg {
  width: 14px;
  height: 14px;
}

.gp-preview .gp-onair-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--gp-s-3);
  padding: var(--gp-s-4) var(--gp-s-5);
}

.gp-preview .gp-onair-card__name {
  font-family: var(--gp-font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gp-text-0);
  margin: 0 0 2px;
}

.gp-preview .gp-onair-card__stakes {
  font-family: var(--gp-font-mono);
  font-size: 10px;
  color: var(--gp-text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gp-preview .gp-onair-card__provider {
  font-family: var(--gp-font-mono);
  font-size: 10px;
  color: var(--gp-text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--gp-r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   STICKY CATEGORY BAR
   ============================================================ */
.gp-preview .gp-catbar {
  position: relative; /* not sticky — avoids collision with original header */
  top: 0;
  z-index: var(--gp-z-sticky);
  background: rgba(10, 11, 14, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gp-line);
  padding: var(--gp-s-3) 0;
}

.gp-preview .gp-catbar__scroll {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gp-s-2) var(--gp-s-2);
  row-gap: var(--gp-s-2);
}

.gp-preview .gp-catbar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--gp-s-2);
  padding: var(--gp-s-2) var(--gp-s-4);
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-pill);
  color: var(--gp-text-1);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 180ms var(--gp-ease-out);
  text-decoration: none;
}
.gp-preview .gp-catbar__item:hover {
  background: var(--gp-bg-2);
  color: var(--gp-text-0);
  border-color: var(--gp-line-strong);
}
.gp-preview .gp-catbar__item--active {
  background: var(--gp-acc-green-soft);
  border-color: rgba(0, 229, 139, 0.4);
  color: var(--gp-acc-green);
}
.gp-preview .gp-catbar__count {
  font-family: var(--gp-font-mono);
  font-size: 11px;
  color: var(--gp-text-2);
}
.gp-preview .gp-catbar__item--active .gp-catbar__count { color: var(--gp-acc-green); }

/* ============================================================
   SECTION / TOP-PROVIDERS
   ============================================================ */
.gp-preview .gp-section { padding: var(--gp-s-7) 0; }

.gp-preview .gp-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: var(--gp-s-5);
  gap: var(--gp-s-4);
  flex-wrap: wrap;
}
.gp-preview .gp-section__title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.gp-preview .gp-section__link {
  font-family: var(--gp-font-mono);
  font-size: 12px;
  color: var(--gp-text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gp-preview .gp-providers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gp-s-2);
}

.gp-preview .gp-provider-chip {
  padding: var(--gp-s-2) var(--gp-s-4);
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-pill);
  font-family: var(--gp-font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gp-text-1);
  cursor: pointer;
  transition: all 180ms var(--gp-ease-out);
  text-decoration: none;
}
.gp-preview .gp-provider-chip:hover {
  background: var(--gp-bg-2);
  color: var(--gp-text-0);
  border-color: rgba(123, 97, 255, 0.35);
  transform: translateY(-1px);
}

/* ============================================================
   GAME CATEGORIES + PROVIDER RAILS
   ============================================================ */
.gp-preview .gp-cat {
  margin-bottom: var(--gp-s-9);
  scroll-margin-top: 90px;
}

.gp-preview .gp-cat__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--gp-s-4);
  margin-bottom: var(--gp-s-6);
  padding-bottom: var(--gp-s-3);
  border-bottom: 1px solid var(--gp-line);
}

.gp-preview .gp-cat__title {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
}

.gp-preview .gp-cat__count {
  font-family: var(--gp-font-mono);
  font-size: 12px;
  color: var(--gp-text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Per-category provider filter tabs (mirrors current /games provider-name-bar pattern) */
.gp-preview .gp-prov-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gp-s-2);
  margin-bottom: var(--gp-s-6);
  padding: var(--gp-s-3);
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
}

.gp-preview .gp-prov-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--gp-s-2);
  padding: 8px var(--gp-s-4);
  background: transparent;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-pill);
  font-family: var(--gp-font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gp-text-1);
  cursor: pointer;
  transition: all 160ms var(--gp-ease-out);
  white-space: nowrap;
}
.gp-preview .gp-prov-tab:hover {
  background: var(--gp-bg-2);
  color: var(--gp-text-0);
  border-color: var(--gp-line-strong);
}
.gp-preview .gp-prov-tab--active {
  background: var(--gp-acc-green-soft);
  border-color: rgba(0, 229, 139, 0.45);
  color: var(--gp-acc-green) !important;
}
.gp-preview .gp-prov-tab__count {
  font-family: var(--gp-font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--gp-text-2);
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--gp-r-pill);
  min-width: 22px;
  text-align: center;
}
.gp-preview .gp-prov-tab--active .gp-prov-tab__count {
  color: var(--gp-acc-green);
  background: rgba(0, 229, 139, 0.12);
}

.gp-preview .gp-prov-row {
  margin-bottom: var(--gp-s-7);
  transition: background-color 360ms var(--gp-ease-out);
  border-radius: var(--gp-r-lg);
  scroll-margin-top: 110px;
}

.gp-preview .gp-prov-row--flash {
  background-color: rgba(0, 229, 139, 0.06);
  box-shadow: 0 0 0 1px rgba(0, 229, 139, 0.25);
}

.gp-preview .gp-prov-row__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gp-s-4);
  margin-bottom: var(--gp-s-4);
  padding: 0 var(--gp-s-1);
}

.gp-preview .gp-prov-row__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gp-text-0);
}

.gp-preview .gp-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px var(--gp-s-4);
  background: var(--gp-bg-2);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-pill);
  font-family: var(--gp-font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gp-text-1) !important;
  cursor: pointer;
  transition: all 180ms var(--gp-ease-out);
  white-space: nowrap;
}
.gp-preview .gp-view-all:hover {
  background: var(--gp-acc-green-soft);
  border-color: rgba(0, 229, 139, 0.4);
  color: var(--gp-acc-green) !important;
}
.gp-preview .gp-view-all svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms var(--gp-ease-out);
}
.gp-preview .gp-view-all:hover svg {
  transform: translateX(2px);
}

/* Grid: default 2-up on mobile, 4-up on lg, 6-up on xl */
.gp-preview .gp-game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gp-s-3);
}
@media (min-width: 576px) { .gp-preview .gp-game-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .gp-preview .gp-game-grid { grid-template-columns: repeat(4, 1fr); gap: var(--gp-s-4); } }
@media (min-width: 1100px) { .gp-preview .gp-game-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1320px) { .gp-preview .gp-game-grid { grid-template-columns: repeat(6, 1fr); } }

/* Quad variant (exactly 4 per row on desktop — for provider rails)
   Use auto-fit + max-width so single-card rows don't stretch to full width */
.gp-preview .gp-game-grid--quad {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  justify-content: start;
}
@media (min-width: 576px) { .gp-preview .gp-game-grid--quad { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); } }
@media (min-width: 768px) { .gp-preview .gp-game-grid--quad { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); } }
@media (min-width: 1024px) { .gp-preview .gp-game-grid--quad { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); } }

/* Cap card max-width so single/double cards don't stretch full width */
.gp-preview .gp-game-grid--quad > .gp-game-card {
  max-width: 280px;
}

/* ============================================================
   GAME CARD  (name + Play Now always visible, hover = play overlay)
   ============================================================ */
.gp-preview .gp-game-card {
  display: flex;
  flex-direction: column;
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-md);
  overflow: hidden;
  transition: transform 240ms var(--gp-ease-out),
              border-color 240ms var(--gp-ease-out),
              box-shadow 240ms var(--gp-ease-out);
}
.gp-preview .gp-game-card:hover {
  transform: translateY(-3px);
  border-color: var(--gp-line-strong);
  box-shadow: var(--gp-shadow-2);
}

/* Thumbnail container — fixed height per breakpoint (matches /games behaviour exactly).
   IMPORTANT: object-fit: contain (NOT cover) so no provider thumbnails get cropped. */
.gp-preview .gp-game-card__thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--gp-bg-2);
  overflow: hidden;
  padding: 8px;
  height: 200px;
}
@media (min-width: 576px)  { .gp-preview .gp-game-card__thumb { height: 220px; padding: 8px; } }
@media (min-width: 768px)  { .gp-preview .gp-game-card__thumb { height: 240px; padding: 9px; } }
@media (min-width: 992px)  { .gp-preview .gp-game-card__thumb { height: 260px; padding: 10px; } }
@media (min-width: 1200px) { .gp-preview .gp-game-card__thumb { height: 280px; padding: 10px; } }

/* Evolution images are taller — give them more room */
.gp-preview .gp-game-card__thumb.evo-aspect { height: 220px; }
@media (min-width: 576px)  { .gp-preview .gp-game-card__thumb.evo-aspect { height: 240px; } }
@media (min-width: 768px)  { .gp-preview .gp-game-card__thumb.evo-aspect { height: 280px; } }
@media (min-width: 992px)  { .gp-preview .gp-game-card__thumb.evo-aspect { height: 320px; } }
@media (min-width: 1200px) { .gp-preview .gp-game-card__thumb.evo-aspect { height: 360px; } }

/* Clot + Funta are 3:4 portrait so they get a taller box too */
.gp-preview .gp-game-card__thumb.clot-aspect,
.gp-preview .gp-game-card__thumb.funta-aspect { height: 220px; }
@media (min-width: 992px) {
  .gp-preview .gp-game-card__thumb.clot-aspect,
  .gp-preview .gp-game-card__thumb.funta-aspect { height: 280px; }
}
@media (min-width: 1200px) {
  .gp-preview .gp-game-card__thumb.clot-aspect,
  .gp-preview .gp-game-card__thumb.funta-aspect { height: 300px; }
}

/* WE-live cards are 16:9 — shorter, wider */
.gp-preview .gp-game-card__thumb.we-live-size { height: 160px; }
@media (min-width: 768px) { .gp-preview .gp-game-card__thumb.we-live-size { height: 180px; } }
@media (min-width: 1200px) { .gp-preview .gp-game-card__thumb.we-live-size { height: 200px; } }

.gp-preview .gp-game-card__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain !important;
  object-position: center;
  display: block;
  transition: transform 380ms var(--gp-ease-out), opacity 240ms var(--gp-ease-out);
  image-rendering: -webkit-optimize-contrast;
  filter: brightness(1.04) contrast(1.04);
}
.gp-preview .gp-game-card:hover .gp-game-card__img {
  transform: scale(1.04);
}

/* Placeholder / error state: subtle pattern background visible through image */
.gp-preview .gp-game-card--placeholder .gp-game-card__img,
.gp-preview .gp-game-card--overlay .gp-game-card__img[data-failed] {
  opacity: 0.35;
  filter: blur(2px);
}
.gp-preview .gp-game-card--placeholder .gp-game-card__thumb,
.gp-preview .gp-game-card--overlay .gp-game-card__thumb {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 12px,
      rgba(255, 255, 255, 0.04) 12px,
      rgba(255, 255, 255, 0.04) 24px
    ),
    linear-gradient(135deg, var(--gp-bg-2) 0%, var(--gp-bg-1) 100%);
}

/* Name overlay — shown ON image when no proper thumbnail exists */
.gp-preview .gp-game-card__name-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gp-s-3) var(--gp-s-4);
  background: linear-gradient(
    180deg,
    rgba(10, 11, 14, 0.3) 0%,
    rgba(10, 11, 14, 0.6) 50%,
    rgba(10, 11, 14, 0.85) 100%
  );
  z-index: 2;
  pointer-events: none;
  text-align: center;
}

.gp-preview .gp-game-card__name-overlay-text {
  font-family: var(--gp-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gp-text-0);
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}

/* Compact meta variant for overlay cards (just provider + Play button) */
.gp-preview .gp-game-card__meta--compact {
  min-height: 48px;
  padding: var(--gp-s-2) var(--gp-s-3);
}

/* Live badge */
.gp-preview .gp-game-card__badge {
  position: absolute;
  top: var(--gp-s-2);
  left: var(--gp-s-2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px var(--gp-s-2);
  background: var(--gp-acc-rose);
  color: #1A0007;
  font-family: var(--gp-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--gp-r-sm);
  z-index: 2;
}
.gp-preview .gp-game-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1A0007;
  animation: gp-pulse 1.6s ease-in-out infinite;
}

/* ALWAYS-VISIBLE PLAY NOW BUTTON (full-width below thumbnail)
   White text on deep green — high contrast (~8:1 WCAG AAA) */
.gp-preview .gp-play-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px var(--gp-s-3);
  margin: var(--gp-s-2) 0 0;
  background: linear-gradient(135deg, #007D49 0%, #005232 100%);
  border: 1px solid rgba(0, 229, 139, 0.5);
  border-radius: var(--gp-r-md);
  color: #FFFFFF !important;
  font-family: var(--gp-font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 180ms var(--gp-ease-out);
  box-shadow: 0 4px 14px rgba(0, 176, 112, 0.35), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.gp-preview .gp-play-btn:hover,
.gp-preview .gp-play-btn:focus-visible {
  background: linear-gradient(135deg, #00A065 0%, #006D44 100%);
  box-shadow: 0 8px 22px rgba(0, 229, 139, 0.55), 0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transform: translateY(-1px);
  color: #FFFFFF !important;
}

.gp-preview .gp-play-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 229, 139, 0.45);
}

.gp-preview .gp-play-btn__label,
.gp-preview .gp-play-btn__loading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.gp-preview .gp-play-btn__icon {
  width: 12px;
  height: 12px;
  fill: #FFFFFF;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.gp-preview .gp-play-btn__loading {
  display: none;
}

/* Loading state — used by double-click protection JS */
.gp-preview .gp-play-btn.is-loading {
  pointer-events: none;
  cursor: wait;
}
.gp-preview .gp-play-btn.is-loading .gp-play-btn__label { display: none; }
.gp-preview .gp-play-btn.is-loading .gp-play-btn__loading { display: inline-flex; }

/* All other play buttons get dimmed when one is loading */
.gp-preview .gp-play-btn.is-disabled {
  pointer-events: none;
  opacity: 0.4;
  filter: grayscale(0.5);
}

.gp-preview .gp-play-btn__spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: gp-spin 0.7s linear infinite;
}

/* Sub-text row below the play button */
.gp-preview .gp-game-card__sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--gp-s-2) var(--gp-s-3) var(--gp-s-3);
  text-align: center;
}

.gp-preview .gp-game-card__sub--compact {
  padding: var(--gp-s-2) var(--gp-s-3);
}

.gp-preview .gp-game-card__name {
  font-family: var(--gp-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-text-0);
  letter-spacing: -0.005em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gp-preview .gp-game-card__provider {
  font-family: var(--gp-font-mono);
  font-size: 10px;
  color: var(--gp-text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 575px) {
  .gp-preview .gp-play-btn { font-size: 11px; padding: 10px var(--gp-s-2); }
  .gp-preview .gp-game-card__name { font-size: 12px; }
}

/* ============================================================
   SEO CONTENT
   ============================================================ */
.gp-preview .gp-seo-content {
  padding: var(--gp-s-8) 0;
  border-top: 1px solid var(--gp-line);
}

.gp-preview .gp-seo-content__intro {
  max-width: 760px;
  margin: 0 auto var(--gp-s-7);
  text-align: center;
}

.gp-preview .gp-seo-content__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: var(--gp-s-4);
}

.gp-preview .gp-seo-content__lede {
  font-size: 17px;
  color: var(--gp-text-1);
  line-height: 1.6;
}

.gp-preview .gp-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gp-s-5);
  margin-bottom: var(--gp-s-8);
}
@media (min-width: 768px) {
  .gp-preview .gp-pillars { grid-template-columns: repeat(3, 1fr); }
}

.gp-preview .gp-pillar {
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
  padding: var(--gp-s-6);
  position: relative;
  overflow: hidden;
}
.gp-preview .gp-pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gp-acc-green), transparent);
}

.gp-preview .gp-pillar__num {
  font-family: var(--gp-font-mono);
  font-size: 12px;
  color: var(--gp-text-2);
  letter-spacing: 0.1em;
  margin-bottom: var(--gp-s-3);
}

.gp-preview .gp-pillar__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--gp-s-3);
  letter-spacing: -0.01em;
}

.gp-preview .gp-pillar__body {
  font-size: 15px;
  color: var(--gp-text-1);
  line-height: 1.6;
}

.gp-preview .gp-seo-content__body {
  max-width: 820px;
  margin: 0 auto;
}

.gp-preview .gp-seo-content__body h3 {
  font-size: 22px;
  margin: var(--gp-s-7) 0 var(--gp-s-4);
  letter-spacing: -0.015em;
  color: var(--gp-text-0);
}

.gp-preview .gp-seo-content__body p {
  font-size: 16px;
  margin-bottom: var(--gp-s-4);
  color: var(--gp-text-1);
}

.gp-preview .gp-seo-content__body ul {
  padding-left: var(--gp-s-5);
  margin-bottom: var(--gp-s-5);
}

.gp-preview .gp-seo-content__body li {
  color: var(--gp-text-1);
  margin-bottom: var(--gp-s-2);
}

.gp-preview .gp-seo-content__body a {
  border-bottom: 1px dashed rgba(0, 229, 139, 0.4);
}

/* ============================================================
   FAQ
   ============================================================ */
.gp-preview .gp-faq {
  padding: var(--gp-s-8) 0;
  border-top: 1px solid var(--gp-line);
}

.gp-preview .gp-faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gp-s-3);
  max-width: 920px;
  margin: var(--gp-s-6) auto 0;
}

.gp-preview .gp-faq__item {
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-md);
  overflow: hidden;
  transition: border-color 200ms var(--gp-ease-out);
}
.gp-preview .gp-faq__item:hover {
  border-color: var(--gp-line-strong);
}
.gp-preview .gp-faq__item[open] {
  border-color: rgba(0, 229, 139, 0.3);
}

.gp-preview .gp-faq__q {
  list-style: none;
  cursor: pointer;
  padding: var(--gp-s-5) var(--gp-s-6);
  font-family: var(--gp-font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--gp-text-0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gp-s-4);
  transition: color 180ms var(--gp-ease-out);
}
.gp-preview .gp-faq__q::-webkit-details-marker { display: none; }

.gp-preview .gp-faq__q-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 240ms var(--gp-ease-out);
  color: var(--gp-text-2);
}
.gp-preview .gp-faq__item[open] .gp-faq__q-icon {
  transform: rotate(45deg);
  color: var(--gp-acc-green);
}

.gp-preview .gp-faq__a {
  padding: 0 var(--gp-s-6) var(--gp-s-5);
  color: var(--gp-text-1);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   CTA / TRUST FOOTER
   ============================================================ */
.gp-preview .gp-cta {
  padding: var(--gp-s-8) 0;
  border-top: 1px solid var(--gp-line);
  text-align: center;
}

.gp-preview .gp-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--gp-s-8);
  background: linear-gradient(135deg, rgba(0, 229, 139, 0.06), rgba(123, 97, 255, 0.06));
  border: 1px solid var(--gp-line-strong);
  border-radius: var(--gp-r-xl);
  position: relative;
  overflow: hidden;
}

.gp-preview .gp-cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 50% 0%, rgba(0, 229, 139, 0.12), transparent 60%);
  pointer-events: none;
}

.gp-preview .gp-cta__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--gp-s-3);
}

.gp-preview .gp-cta__body {
  font-size: 17px;
  color: var(--gp-text-1);
  margin-bottom: var(--gp-s-6);
}

.gp-preview .gp-cta__payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gp-s-3);
  margin-top: var(--gp-s-6);
  padding-top: var(--gp-s-5);
  border-top: 1px solid var(--gp-line);
}

.gp-preview .gp-cta__payment {
  padding: var(--gp-s-2) var(--gp-s-4);
  background: var(--gp-bg-2);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-pill);
  font-family: var(--gp-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gp-text-1);
}

/* ============================================================
   MODAL  (View all)
   ============================================================ */
.gp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.gp-modal--open { display: block; }

.gp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 14, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gp-modal__content {
  position: relative;
  max-width: 1200px;
  margin: 4vh auto;
  background: var(--gp-bg-1, #0E1320);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gp-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 11, 14, 0.6);
}

.gp-modal__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #F4F6FB;
  letter-spacing: -0.015em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gp-modal__title-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #7C879F;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.gp-modal__close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  font-size: 22px;
  cursor: pointer;
  color: #B7BFD2;
  line-height: 1;
  transition: all 180ms ease;
}
.gp-modal__close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #F4F6FB;
}

.gp-modal__body {
  padding: 24px 28px;
  overflow-y: auto;
}

.gp-modal__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 0;
  color: #B7BFD2;
}
.gp-modal__spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(0, 229, 139, 0.2);
  border-top-color: #00E58B;
  border-radius: 50%;
  animation: gp-spin 0.8s linear infinite;
}
@keyframes gp-spin {
  to { transform: rotate(360deg); }
}

/* Modal renders our preview game cards — same grid as page, scoped inside modal */
.gp-modal__grid .gp-game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
}
@media (min-width: 576px) {
  .gp-modal__grid .gp-game-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .gp-modal__grid .gp-game-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (min-width: 1200px) {
  .gp-modal__grid .gp-game-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Ensure preview cards inside modal use our scoped tokens (modal is outside .gp-preview) */
.gp-modal__grid .gp-game-card {
  display: flex;
  flex-direction: column;
  background: #0E1320;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms, box-shadow 240ms;
}
.gp-modal__grid .gp-game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.gp-modal__grid .gp-game-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  background: #161C2E;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
}
/* Modal cards reuse all .gp-game-card structure but need explicit colors (outside .gp-preview) */
.gp-modal__grid .gp-game-card__thumb {
  height: 200px;
}
@media (min-width: 576px)  { .gp-modal__grid .gp-game-card__thumb { height: 220px; } }
@media (min-width: 992px)  { .gp-modal__grid .gp-game-card__thumb { height: 240px; } }
.gp-modal__grid .gp-game-card__thumb.evo-aspect { height: 260px; }
.gp-modal__grid .gp-game-card__img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain !important; object-position: center;
  display: block;
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  image-rendering: -webkit-optimize-contrast;
  filter: brightness(1.04) contrast(1.04);
}
.gp-modal__grid .gp-game-card:hover .gp-game-card__img { transform: scale(1.04); }
.gp-modal__grid .gp-game-card__badge {
  position: absolute; top: 8px; left: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px;
  background: #FF6B81; color: #1A0007;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: 8px; z-index: 2;
}
.gp-modal__grid .gp-game-card__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: #1A0007;
  animation: gp-pulse 1.6s ease-in-out infinite;
}
.gp-modal__grid .gp-play-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 12px;
  margin: 8px 0 0;
  background: linear-gradient(135deg, #007D49 0%, #005232 100%);
  border: 1px solid rgba(0, 229, 139, 0.5);
  border-radius: 14px;
  color: #FFFFFF !important;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 176, 112, 0.35), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: all 180ms;
}
.gp-modal__grid .gp-play-btn:hover {
  background: linear-gradient(135deg, #00A065, #006D44);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 229, 139, 0.5);
}
.gp-modal__grid .gp-play-btn__label,
.gp-modal__grid .gp-play-btn__loading {
  display: inline-flex; align-items: center; gap: 6px;
}
.gp-modal__grid .gp-play-btn__loading { display: none; }
.gp-modal__grid .gp-play-btn.is-loading { pointer-events: none; cursor: wait; }
.gp-modal__grid .gp-play-btn.is-loading .gp-play-btn__label { display: none; }
.gp-modal__grid .gp-play-btn.is-loading .gp-play-btn__loading { display: inline-flex; }
.gp-modal__grid .gp-play-btn.is-disabled { pointer-events: none; opacity: 0.4; }
.gp-modal__grid .gp-play-btn__icon { width: 12px; height: 12px; fill: #FFFFFF; }
.gp-modal__grid .gp-play-btn__spinner {
  display: inline-block;
  width: 12px; height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: gp-spin 0.7s linear infinite;
}
.gp-modal__grid .gp-game-card__sub {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 12px 12px;
  text-align: center;
}
.gp-modal__grid .gp-game-card__sub--compact { padding: 8px 12px; }
.gp-modal__grid .gp-game-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  color: #F4F6FB; line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gp-modal__grid .gp-game-card__provider {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: #7C879F;
  letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gp-modal__grid .gp-game-card__name-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(10,11,14,0.3) 0%, rgba(10,11,14,0.6) 50%, rgba(10,11,14,0.85) 100%);
  z-index: 2; pointer-events: none; text-align: center;
}
.gp-modal__grid .gp-game-card__name-overlay-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700; color: #F4F6FB;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   UTILS
   ============================================================ */
.gp-preview .gp-divider {
  height: 1px;
  background: var(--gp-line);
  border: 0;
  margin: var(--gp-s-7) 0;
}

@media (prefers-reduced-motion: reduce) {
  .gp-preview *,
  .gp-preview *::before,
  .gp-preview *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   ORIGINAL HEADER RESPONSIVE FIXES
   The original partials/header.blade.php pushes its styles via @push('style')
   which depends on @stack ordering. We mirror the critical responsive rules
   here in preview.css so they always load on preview pages.
   ============================================================ */

/* Balance pill base styles (matches original header.blade.php inline @push) */
.balance-link {
    color: #ffd700 !important;
    font-weight: 600;
    font-size: 0.95rem;
    pointer-events: none;
    cursor: default;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.hdr-bal-value {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Mobile balance pill — HIDDEN by default, shown only ≤ 991px */
.mobile-balance-display {
    display: none;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 10px;
}
.mobile-balance-link {
    color: #ffd700 !important;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 10px;
    background: transparent !important;
    border: none !important;
    border-radius: 4px;
    white-space: nowrap;
    text-decoration: none;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}
.hdr-exp {
    display: inline-block;
    margin-left: 0;
    padding-left: 8px;
    color: #f87171 !important;
    font-size: .85em;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
}

/* Mobile-only: ≤ 991px shows mobile balance, hides desktop menu balance */
@media (max-width: 991.98px) {
    .mobile-balance-display { display: flex; }
    .desktop-balance-menu-item { display: none !important; }
}

/* 992-1199px window: navbar still collapsed, mobile balance hidden by default
   above 991px. So we restore mobile balance in this range so users always see
   their balance somewhere. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .mobile-balance-display { display: flex !important; }
    .desktop-balance-menu-item { display: none !important; }
}

/* Mobile menu layout fixes (≤ 1199px = below navbar-expand-xl breakpoint) */
@media (max-width: 1199.98px) {
    .header .header__bottom .container {
        max-width: none;
        padding-left: 16px;
        padding-right: 16px;
    }
    .header .navbar {
        position: relative;
        align-items: center;
        flex-wrap: nowrap;
        min-height: 78px;
    }
    .header .site-logo {
        flex-shrink: 0;
        margin-right: 12px;
    }
    .mobile-balance-link {
        flex-direction: column;
        align-items: flex-end;
        gap: 3px;
        line-height: 1.1;
    }
    .mobile-balance-display {
        margin-left: auto;
        margin-right: 12px;
        align-items: center;
    }
    .mobile-balance-link .hdr-bal-value { display: block; }
    .mobile-balance-link .hdr-exp {
        display: block;
        padding-left: 0;
        margin-left: 0;
    }
    .header .navbar-toggler {
        margin-left: 0 !important;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: center;
    }
    .header .navbar-toggler .menu-toggle { margin: 0; }
    .header .navbar-collapse {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 18px 20px 20px;
        background: #070b28;
        border-top: 1px solid rgba(255,255,255,0.08);
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        z-index: 98;
    }
    .header .navbar-collapse .main-menu {
        width: 100%;
        margin: 0 !important;
        padding: 0;
    }
    .header .navbar-collapse .nav-right {
        width: 100%;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
}

/* ============================================================
   PREVIEW LAYOUT INTEGRATION WITH ORIGINAL SITE CHROME
   - The original .header is position:fixed → add body padding-top
     so page content doesn't slide UNDER it on first load.
   - Force the .header__bottom solid background so scrolling content
     doesn't bleed THROUGH the transparent header.
   - Match preview content bg to footer-bottom color so there's no
     seam between the preview content and the footer.
   ============================================================ */

/* Body offset for fixed header — content starts BELOW the navbar */
.gp-body {
  background: #0A0B0E; /* preview's slate-black base */
  padding-top: 78px;   /* matches the original navbar height */
}

/* Preview content keeps its original premium slate-black look */
.gp-preview {
  background: #0A0B0E;
}

/* Force opaque header on preview pages so scroll content doesn't bleed through.
   Original .header__bottom is transparent unless .menu-fixed class is added
   (which only happens on sportsbook/exchange/trade pages). */
.gp-body .header .header__bottom {
  background-color: #0A0B0E;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Footer also adopts the slate-black so there's no color seam */
.gp-body footer.footer {
  background-color: #0A0B0E;
}
.gp-body footer.footer .footer-bottom {
  background-color: #0A0B0E;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Scroll-anchor offset for the fixed header */
.gp-preview [id^="cat-"],
.gp-preview [id^="gp-"] {
  scroll-margin-top: 90px;
}

/* ============================================================
   PREVIEW HEADER + FOOTER  (Phase A+B+C shared chrome — DEPRECATED)
   No jQuery, no Bootstrap. Pure CSS + vanilla JS for mobile menu.
   ============================================================ */

/* Body lock when mobile menu is open */
.gp-no-scroll { overflow: hidden; }

/* HEADER  */
.gp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
}

.gp-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.gp-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.gp-header__logo img {
  max-height: 38px;
  width: auto;
  display: block;
}

/* Mobile balance pill (visible at all times when auth) */
.gp-header__balance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(0, 229, 139, 0.10);
  border: 1px solid rgba(0, 229, 139, 0.35);
  border-radius: 999px;
  color: #00E58B !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  pointer-events: none;
  cursor: default;
}
.gp-header__balance--mobile {
  margin-left: auto;
  margin-right: 4px;
}
.gp-header__bal-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7C879F;
  font-weight: 500;
}
.gp-header__bal-suffix {
  color: #7C879F;
  font-size: 11px;
  font-weight: 500;
}
.hdr-exp {
  display: inline-block;
  padding-left: 8px;
  border-left: 1px solid rgba(248, 113, 113, 0.35);
  margin-left: 6px;
  color: #F87171 !important;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* Hamburger toggle */
.gp-header__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.gp-header__toggle-bar {
  width: 18px;
  height: 2px;
  background: #F4F6FB;
  border-radius: 2px;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 220ms;
  transform-origin: center;
}
.gp-header__toggle--open .gp-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gp-header__toggle--open .gp-header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.gp-header__toggle--open .gp-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* NAV — mobile (collapsed) */
.gp-header__nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 11, 14, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 20px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-110%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), visibility 320ms;
  z-index: 99;
}
.gp-header__nav--open {
  transform: translateY(0);
  visibility: visible;
}

.gp-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gp-header__menu-link {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #F4F6FB !important;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background 180ms, color 180ms;
}
.gp-header__menu-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #00E58B !important;
}

.gp-header__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gp-header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.gp-header__link svg {
  width: 16px;
  height: 16px;
}
.gp-header__link--ghost {
  background: transparent;
  color: #F4F6FB !important;
  border-color: rgba(255, 255, 255, 0.14);
}
.gp-header__link--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: #FFFFFF !important;
}
.gp-header__link--primary {
  background: linear-gradient(135deg, #007D49 0%, #005232 100%);
  color: #FFFFFF !important;
  border-color: rgba(0, 229, 139, 0.5);
  box-shadow: 0 4px 14px rgba(0, 176, 112, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.gp-header__link--primary:hover {
  background: linear-gradient(135deg, #00A065 0%, #006D44 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 229, 139, 0.45);
  color: #FFFFFF !important;
}

/* Desktop layout: ≥ 992px */
@media (min-width: 992px) {
  .gp-header__inner {
    min-height: 72px;
    gap: 24px;
  }
  .gp-header__toggle { display: none; }
  .gp-header__balance--mobile { display: none; }
  .gp-header__nav {
    position: static;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    transform: none;
    visibility: visible;
    flex-direction: row;
    align-items: center;
    flex: 1;
    overflow: visible;
    transition: none;
  }
  .gp-header__menu {
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
    gap: 4px;
  }
  .gp-header__menu-link {
    padding: 8px 14px;
    font-size: 14px;
  }
  .gp-header__cta {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    margin-left: auto;
  }
  .gp-header__balance-desktop-li {
    margin-left: 8px;
  }
}

/* FOOTER  */
.gp-footer {
  margin-top: var(--gp-s-9, 96px);
  padding: var(--gp-s-8, 64px) 0 var(--gp-s-5, 24px);
  background: linear-gradient(180deg, #0A0B0E 0%, #0E1320 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #B7BFD2;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
}

.gp-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px)  { .gp-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .gp-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }

.gp-footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}
.gp-footer__logo {
  display: inline-block;
}
.gp-footer__logo img {
  max-height: 38px;
  width: auto;
}
.gp-footer__tagline {
  font-size: 13px;
  color: #7C879F;
  line-height: 1.55;
  margin: 0;
}

.gp-footer__social {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  gap: 8px;
}
.gp-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #B7BFD2;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.gp-footer__social a:hover {
  background: rgba(0, 229, 139, 0.12);
  border-color: rgba(0, 229, 139, 0.4);
  color: #00E58B;
  transform: translateY(-2px);
}

.gp-footer__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7C879F;
  margin: 0 0 14px;
}

.gp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gp-footer__links a {
  font-size: 13.5px;
  color: #B7BFD2;
  text-decoration: none;
  transition: color 160ms;
  line-height: 1.5;
}
.gp-footer__links a:hover {
  color: #00E58B;
}

.gp-footer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gp-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gp-footer__payment {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #B7BFD2;
}

.gp-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gp-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 107, 129, 0.10);
  border: 1px solid rgba(255, 107, 129, 0.3);
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #FF6B81;
  text-decoration: none;
}
.gp-footer__badge--link {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #B7BFD2;
}
.gp-footer__badge--link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.gp-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #7C879F;
}
.gp-footer__bottom a {
  color: #B7BFD2;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 229, 139, 0.3);
}
.gp-footer__bottom a:hover {
  color: #00E58B;
}
.gp-footer__legal {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .gp-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================================
   HOMEPAGE COMPONENTS  (Phase C)
   ============================================================ */

/* Category tiles grid (8 visual entry points on /home-preview) */
.gp-preview .gp-cat-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gp-s-3);
}
@media (min-width: 640px) { .gp-preview .gp-cat-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .gp-preview .gp-cat-tiles { grid-template-columns: repeat(4, 1fr); gap: var(--gp-s-4); } }

.gp-preview .gp-cat-tile {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--gp-s-3);
  padding: var(--gp-s-5);
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
  text-decoration: none;
  color: var(--gp-text-0);
  transition: all 240ms var(--gp-ease-out);
  overflow: hidden;
}
.gp-preview .gp-cat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 139, 0.0), rgba(123, 97, 255, 0.0));
  transition: background 280ms;
  pointer-events: none;
}
.gp-preview .gp-cat-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 139, 0.35);
  box-shadow: 0 12px 32px rgba(0, 229, 139, 0.15);
}
.gp-preview .gp-cat-tile:hover::before {
  background: linear-gradient(135deg, rgba(0, 229, 139, 0.08), rgba(123, 97, 255, 0.06));
}

.gp-preview .gp-cat-tile__icon {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 139, 0.08);
  border-radius: 11px;
  color: var(--gp-acc-green);
  filter: drop-shadow(0 4px 10px rgba(0, 229, 139, 0.18));
}
.gp-preview .gp-cat-tile__icon svg { width: 26px; height: 26px; }

.gp-preview .gp-cat-tile__body {
  flex: 1 1 auto;
  min-width: 0;
}

.gp-preview .gp-cat-tile__title {
  font-family: var(--gp-font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gp-text-0);
  margin: 0 0 4px;
}

.gp-preview .gp-cat-tile__tagline {
  font-family: var(--gp-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gp-text-2);
  margin: 0;
  line-height: 1.4;
}

.gp-preview .gp-cat-tile__count {
  position: absolute;
  top: var(--gp-s-3);
  right: var(--gp-s-3);
  font-family: var(--gp-font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--gp-acc-green);
  padding: 2px 8px;
  background: var(--gp-acc-green-soft);
  border-radius: var(--gp-r-pill);
}

/* Vertical (sportsbook / exchange / asian) teaser cards */
.gp-preview .gp-verticals { padding-top: var(--gp-s-7); }

.gp-preview .gp-vert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gp-s-4);
}
@media (min-width: 768px) { .gp-preview .gp-vert-grid { grid-template-columns: repeat(3, 1fr); } }

.gp-preview .gp-vert-card {
  display: flex;
  flex-direction: column;
  padding: var(--gp-s-6);
  background: linear-gradient(180deg, var(--gp-bg-1) 0%, var(--gp-bg-2) 100%);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
  text-decoration: none;
  color: var(--gp-text-0);
  transition: all 240ms var(--gp-ease-out);
  position: relative;
  overflow: hidden;
}
.gp-preview .gp-vert-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gp-acc-green), transparent);
}
.gp-preview .gp-vert-card:hover {
  transform: translateY(-3px);
  border-color: var(--gp-line-strong);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.gp-preview .gp-vert-card__icon {
  font-size: 36px;
  margin-bottom: var(--gp-s-4);
  filter: drop-shadow(0 4px 12px rgba(0, 229, 139, 0.25));
}

.gp-preview .gp-vert-card__title {
  font-family: var(--gp-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gp-text-0);
  margin: 0 0 var(--gp-s-3);
}

.gp-preview .gp-vert-card__body {
  font-size: 14px;
  color: var(--gp-text-1);
  line-height: 1.6;
  margin: 0 0 var(--gp-s-4);
  flex: 1 1 auto;
}

.gp-preview .gp-vert-card__cta {
  font-family: var(--gp-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-acc-green);
  letter-spacing: 0.01em;
}

/* Blog teaser grid */
.gp-preview .gp-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gp-s-4);
}
@media (min-width: 768px) { .gp-preview .gp-blog-grid { grid-template-columns: repeat(3, 1fr); } }

.gp-preview .gp-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--gp-text-0);
  transition: all 240ms var(--gp-ease-out);
}
.gp-preview .gp-blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--gp-line-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.gp-preview .gp-blog-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gp-bg-2);
}
.gp-preview .gp-blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 480ms var(--gp-ease-out);
}
.gp-preview .gp-blog-card:hover .gp-blog-card__thumb img {
  transform: scale(1.05);
}

.gp-preview .gp-blog-card__body {
  padding: var(--gp-s-5);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.gp-preview .gp-blog-card__title {
  font-family: var(--gp-font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--gp-text-0);
  margin: 0 0 var(--gp-s-3);
}

.gp-preview .gp-blog-card__excerpt {
  font-size: 14px;
  color: var(--gp-text-1);
  line-height: 1.6;
  margin: 0 0 var(--gp-s-4);
  flex: 1 1 auto;
}

.gp-preview .gp-blog-card__cta {
  font-family: var(--gp-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-acc-green);
}

/* Deferred categories: minimal placeholder until JS hydrates */
.gp-preview .gp-cat--deferred {
  min-height: 80px;
}
.gp-preview .gp-cat--deferred .gp-cat__head {
  margin-bottom: var(--gp-s-4);
}
.gp-preview .gp-cat__expand {
  display: inline-flex;
  align-items: center;
  gap: var(--gp-s-2);
  padding: 8px var(--gp-s-4);
  background: var(--gp-acc-green-soft);
  border: 1px solid rgba(0, 229, 139, 0.4);
  border-radius: var(--gp-r-pill);
  font-family: var(--gp-font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gp-acc-green);
  cursor: pointer;
  transition: all 180ms var(--gp-ease-out);
  margin-left: auto;
}
.gp-preview .gp-cat__expand:hover {
  background: var(--gp-grad-cta);
  color: #FFFFFF;
}
.gp-preview .gp-cat__expand[disabled] {
  opacity: 0.5;
  cursor: wait;
}

/* ============================================================
   ENTRY ANIMATIONS  (page load + scroll reveals)
   All respect prefers-reduced-motion via the rule above.
   ============================================================ */

/* Hero fade-up on initial load */
@keyframes gp-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gp-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes gp-scale-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Hero elements stagger on load */
.gp-preview .gp-hero__eyebrow { animation: gp-fade-up 600ms var(--gp-ease-out) both; }
.gp-preview .gp-hero__title   { animation: gp-fade-up 700ms 80ms var(--gp-ease-out) both; }
.gp-preview .gp-hero__lede    { animation: gp-fade-up 700ms 160ms var(--gp-ease-out) both; }
.gp-preview .gp-hero__cta-row { animation: gp-fade-up 700ms 240ms var(--gp-ease-out) both; }
.gp-preview .gp-hero__center .gp-stat-grid { animation: gp-fade-up 700ms 320ms var(--gp-ease-out) both; }
.gp-preview .gp-jackpot       { animation: gp-fade-up 700ms 400ms var(--gp-ease-out) both; }

/* Stagger individual stat cards */
.gp-preview .gp-stat:nth-child(1) { animation: gp-fade-up 600ms 340ms var(--gp-ease-out) both; }
.gp-preview .gp-stat:nth-child(2) { animation: gp-fade-up 600ms 400ms var(--gp-ease-out) both; }
.gp-preview .gp-stat:nth-child(3) { animation: gp-fade-up 600ms 460ms var(--gp-ease-out) both; }
.gp-preview .gp-stat:nth-child(4) { animation: gp-fade-up 600ms 520ms var(--gp-ease-out) both; }

/* Scroll-reveal helpers — JS toggles .gp-in-view */
.gp-preview .gp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--gp-ease-out), transform 700ms var(--gp-ease-out);
  will-change: opacity, transform;
}
.gp-preview .gp-reveal.gp-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Card stagger when its prov-row becomes visible */
.gp-preview .gp-prov-row.gp-in-view .gp-game-card {
  animation: gp-fade-up 500ms var(--gp-ease-out) both;
}
.gp-preview .gp-prov-row.gp-in-view .gp-game-card:nth-child(1) { animation-delay: 0ms; }
.gp-preview .gp-prov-row.gp-in-view .gp-game-card:nth-child(2) { animation-delay: 60ms; }
.gp-preview .gp-prov-row.gp-in-view .gp-game-card:nth-child(3) { animation-delay: 120ms; }
.gp-preview .gp-prov-row.gp-in-view .gp-game-card:nth-child(4) { animation-delay: 180ms; }
.gp-preview .gp-prov-row.gp-in-view .gp-game-card:nth-child(n+5) { animation-delay: 240ms; }

/* Pillars stagger on view */
.gp-preview .gp-pillars.gp-in-view .gp-pillar:nth-child(1) { animation: gp-fade-up 600ms 0ms var(--gp-ease-out) both; }
.gp-preview .gp-pillars.gp-in-view .gp-pillar:nth-child(2) { animation: gp-fade-up 600ms 120ms var(--gp-ease-out) both; }
.gp-preview .gp-pillars.gp-in-view .gp-pillar:nth-child(3) { animation: gp-fade-up 600ms 240ms var(--gp-ease-out) both; }

/* FAQ items stagger */
.gp-preview .gp-faq__list.gp-in-view .gp-faq__item {
  animation: gp-fade-up 500ms var(--gp-ease-out) both;
}
.gp-preview .gp-faq__list.gp-in-view .gp-faq__item:nth-child(1) { animation-delay: 0ms; }
.gp-preview .gp-faq__list.gp-in-view .gp-faq__item:nth-child(2) { animation-delay: 60ms; }
.gp-preview .gp-faq__list.gp-in-view .gp-faq__item:nth-child(3) { animation-delay: 120ms; }
.gp-preview .gp-faq__list.gp-in-view .gp-faq__item:nth-child(4) { animation-delay: 180ms; }
.gp-preview .gp-faq__list.gp-in-view .gp-faq__item:nth-child(n+5) { animation-delay: 240ms; }

/* CTA fade + scale on view */
.gp-preview .gp-cta__inner.gp-in-view {
  animation: gp-scale-in 700ms var(--gp-ease-out) both;
}

/* Subtle continuous shimmer on hero title gradient */
@keyframes gp-shimmer {
  0%, 100% { filter: brightness(1) saturate(1); }
  50%      { filter: brightness(1.15) saturate(1.15); }
}
/* Shimmer animation kept defined but no longer applied to the hero mark —
   the solid emerald colour above is calmer and more readable. */

/* ============================================================
   GAME LAUNCH OVERLAY  (full-screen, shown when Play Now is clicked)
   Prevents double-click damage on transfer-wallet providers.
   ============================================================ */
.gp-launch-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 11, 14, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: gp-launch-fade-in 220ms ease-out forwards;
}

@keyframes gp-launch-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gp-launch-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  max-width: 320px;
}

.gp-launch-overlay__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(0, 229, 139, 0.15);
  border-top-color: #00E58B;
  border-radius: 50%;
  animation: gp-spin 0.7s linear infinite;
}

.gp-launch-overlay__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F4F6FB;
  letter-spacing: -0.015em;
}

.gp-launch-overlay__subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #7C879F;
  line-height: 1.5;
}

/* ============================================================================
   VERTICAL PREVIEW (Phase C) — per-sport sportsbook & exchange landing pages
   Scoped under .gp-vert (used inside .gp-preview)
   ============================================================================ */
.gp-preview .gp-vert {
  font-family: 'Manrope', sans-serif;
  color: #E8ECF4;
  background: #0A0B0E;
}

/* HERO */
.gp-preview .gp-vert-hero {
  background:
    radial-gradient(ellipse at 18% 18%, rgba(0, 229, 139, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 78%, rgba(0, 229, 139, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0E0F12 0%, #0A0B0E 100%);
  padding: 60px 24px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gp-preview .gp-vert-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .gp-preview .gp-vert-hero { padding: 36px 18px 40px; }
  .gp-preview .gp-vert-hero__inner { grid-template-columns: 1fr; gap: 32px; }
}

.gp-preview .gp-vert-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.gp-preview .gp-vert-eyebrow__pill {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #00E58B;
  background: rgba(0, 229, 139, 0.10);
  border: 1px solid rgba(0, 229, 139, 0.30);
  padding: 6px 12px;
  border-radius: 999px;
}
.gp-preview .gp-vert-eyebrow__sport {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #7C879F;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gp-preview .gp-vert-hero__h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 18px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.gp-preview .gp-vert-hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: #B6BFD3;
  margin: 0 0 28px;
  max-width: 580px;
}
@media (max-width: 600px) {
  .gp-preview .gp-vert-hero__sub { font-size: 16px; }
}

.gp-preview .gp-vert-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}
.gp-preview .gp-vert-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 10px;
  background: linear-gradient(180deg, #007D49 0%, #005232 100%);
  color: #FFFFFF;
  border: 1px solid rgba(0, 229, 139, 0.30);
  box-shadow: 0 6px 18px rgba(0, 125, 73, 0.32);
  transition: transform .12s ease, box-shadow .12s ease;
}
.gp-preview .gp-vert-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 125, 73, 0.42);
  color: #FFFFFF;
}
.gp-preview .gp-vert-cta-primary .gp-play-btn__icon {
  width: 12px;
  height: 12px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.4));
}
.gp-preview .gp-vert-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 10px;
  color: #B6BFD3;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  transition: color .12s ease, border-color .12s ease;
}
.gp-preview .gp-vert-cta-secondary:hover {
  color: #FFFFFF;
  border-color: rgba(0, 229, 139, 0.40);
}

.gp-preview .gp-vert-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #7C879F;
  letter-spacing: 0.2px;
}
.gp-preview .gp-vert-trust__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00E58B;
  box-shadow: 0 0 8px rgba(0, 229, 139, 0.6);
}

/* HERO stats grid */
.gp-preview .gp-vert-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gp-preview .gp-vert-stat {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  transition: border-color .15s ease, background .15s ease;
}
.gp-preview .gp-vert-stat:hover {
  border-color: rgba(0, 229, 139, 0.35);
  background: rgba(0, 229, 139, 0.04);
}
.gp-preview .gp-vert-stat__val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #00E58B;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.gp-preview .gp-vert-stat__lbl {
  font-size: 12px;
  color: #B6BFD3;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .gp-preview .gp-vert-stat__val { font-size: 22px; }
  .gp-preview .gp-vert-stat { padding: 16px 12px; }
}

/* SECTIONS */
.gp-preview .gp-vert-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
@media (max-width: 900px) {
  .gp-preview .gp-vert-section { padding: 40px 18px; }
}
.gp-preview .gp-vert-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.gp-preview .gp-vert-h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 14px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.gp-preview .gp-vert-muted {
  color: #7C879F;
  font-size: 14px;
  margin: 0 0 24px;
}
.gp-preview .gp-vert-lede {
  font-size: 17px;
  line-height: 1.7;
  color: #B6BFD3;
  margin: 0;
  max-width: 760px;
}
@media (max-width: 600px) {
  .gp-preview .gp-vert-lede { font-size: 15px; }
}

/* About + features 2-col */
.gp-preview .gp-vert-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .gp-preview .gp-vert-cols { grid-template-columns: 1fr; gap: 32px; }
}
.gp-preview .gp-vert-col-side {
  background: linear-gradient(180deg, rgba(0, 229, 139, 0.04) 0%, rgba(0, 229, 139, 0.02) 100%);
  border: 1px solid rgba(0, 229, 139, 0.18);
  border-radius: 14px;
  padding: 26px 24px;
}
.gp-preview .gp-vert-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gp-preview .gp-vert-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #E8ECF4;
  line-height: 1.5;
}
.gp-preview .gp-vert-features svg {
  width: 16px;
  height: 16px;
  color: #00E58B;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Tournaments */
.gp-preview .gp-vert-tournaments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gp-preview .gp-vert-tournament {
  display: inline-block;
  padding: 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #B6BFD3;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  letter-spacing: 0.2px;
  transition: color .12s ease, border-color .12s ease;
}
.gp-preview .gp-vert-tournament:hover {
  color: #00E58B;
  border-color: rgba(0, 229, 139, 0.40);
}

/* Benefits grid */
.gp-preview .gp-vert-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.gp-preview .gp-vert-benefit {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform .15s ease, border-color .15s ease;
}
.gp-preview .gp-vert-benefit:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 139, 0.30);
}
.gp-preview .gp-vert-benefit__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 229, 139, 0.10);
  color: #00E58B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.gp-preview .gp-vert-benefit__icon svg { width: 20px; height: 20px; }
.gp-preview .gp-vert-benefit__h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 8px;
  color: #FFFFFF;
}
.gp-preview .gp-vert-benefit p {
  font-size: 13px;
  line-height: 1.55;
  color: #B6BFD3;
  margin: 0;
}

/* Steps */
.gp-preview .gp-vert-steps {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  counter-reset: vstep;
}
.gp-preview .gp-vert-steps li {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 20px;
}
.gp-preview .gp-vert-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00E58B;
  background: rgba(0, 229, 139, 0.10);
  border: 1px solid rgba(0, 229, 139, 0.35);
}
.gp-preview .gp-vert-step__h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 6px;
  color: #FFFFFF;
}
.gp-preview .gp-vert-steps p {
  font-size: 13px;
  line-height: 1.5;
  color: #B6BFD3;
  margin: 0;
}

/* FAQs */
.gp-preview .gp-vert-faqs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 880px;
}
.gp-preview .gp-vert-faq {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.gp-preview .gp-vert-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
}
.gp-preview .gp-vert-faq summary::-webkit-details-marker { display: none; }
.gp-preview .gp-vert-faq svg {
  width: 14px;
  height: 14px;
  color: #7C879F;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.gp-preview .gp-vert-faq[open] svg { transform: rotate(180deg); }
.gp-preview .gp-vert-faq p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #B6BFD3;
}
.gp-preview .gp-vert-faq:hover { border-color: rgba(0, 229, 139, 0.25); }

/* Related links */
.gp-preview .gp-vert-related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.gp-preview .gp-vert-related__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #E8ECF4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .12s ease, border-color .12s ease, background .12s ease;
}
.gp-preview .gp-vert-related__item:hover {
  color: #00E58B;
  border-color: rgba(0, 229, 139, 0.40);
  background: rgba(0, 229, 139, 0.04);
}
.gp-preview .gp-vert-related__item svg {
  width: 12px;
  height: 12px;
  color: #7C879F;
  flex-shrink: 0;
}
.gp-preview .gp-vert-related__item:hover svg { color: #00E58B; }

/* Final CTA strip */
.gp-preview .gp-vert-cta-strip {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 229, 139, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, #0E0F12 0%, #0A0B0E 100%);
  padding: 64px 24px;
  text-align: center;
  border-top: 1px solid rgba(0, 229, 139, 0.12);
}
.gp-preview .gp-vert-cta-strip__inner {
  max-width: 680px;
  margin: 0 auto;
}
.gp-preview .gp-vert-cta-strip__h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 36px);
  margin: 0 0 14px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.gp-preview .gp-vert-cta-strip p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #B6BFD3;
  margin: 0 0 28px;
  letter-spacing: 0.2px;
}
@media (max-width: 600px) {
  .gp-preview .gp-vert-cta-strip { padding: 44px 18px; }
}

/* ============================================================================
   HUB PREVIEW additions — sportsbook-preview, betting-exchange-preview,
   asian-sportsbook-preview pages. Scoped under .gp-hub.
   ============================================================================ */

/* Numbered pillar icon (replaces SVG for hub pillars) */
.gp-preview .gp-hub .gp-hub-pillar-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #00E58B;
  letter-spacing: 0.5px;
}

/* Sports grid — 2-col mobile, 3-col tablet, 4-col desktop */
.gp-preview .gp-hub-sports {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.gp-preview .gp-hub-sport {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  text-decoration: none;
  color: #E8ECF4;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.gp-preview .gp-hub-sport:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 229, 139, 0.40);
  background: rgba(0, 229, 139, 0.04);
  color: #FFFFFF;
}
.gp-preview .gp-hub-sport__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.gp-preview .gp-hub-sport__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
}
.gp-preview .gp-hub-sport__tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #7C879F;
  letter-spacing: 0.2px;
}
.gp-preview .gp-hub-sport:hover .gp-hub-sport__tagline { color: #B6BFD3; }
.gp-preview .gp-hub-sport__arrow {
  width: 14px;
  height: 14px;
  color: #7C879F;
  flex-shrink: 0;
  transition: color .12s ease, transform .12s ease;
}
.gp-preview .gp-hub-sport:hover .gp-hub-sport__arrow {
  color: #00E58B;
  transform: translateX(2px);
}

/* Smooth scroll target offset for #hub-sports anchor (fixed header is 78px) */
.gp-preview .gp-hub #hub-sports {
  scroll-margin-top: 90px;
}

/* 4-col variant for the home preview hero-grid */
.gp-preview .gp-vert-grid--4 {
  grid-template-columns: 1fr;
  gap: var(--gp-s-3);
}
@media (min-width: 600px) { .gp-preview .gp-vert-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gp-preview .gp-vert-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* "Pick your vertical" section header subtitle */
.gp-preview .gp-section__sub {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--gp-text-2);
  margin: 6px 0 0;
  line-height: 1.5;
}

/* Casino card subtle highlight — it's the deepest part of the funnel */
.gp-preview .gp-vert-card--casino {
  background: linear-gradient(180deg, rgba(0, 229, 139, 0.06) 0%, var(--gp-bg-2) 100%);
  border-color: rgba(0, 229, 139, 0.20);
}
.gp-preview .gp-vert-card--casino::after {
  background: linear-gradient(90deg, var(--gp-acc-green), rgba(0, 229, 139, 0.30));
}

/* Make hero verticals a bit denser/punchier than the deeper-section default */
.gp-preview .gp-verticals--hero .gp-vert-card {
  padding: 22px 20px;
  min-width: 0; /* allow text wrap inside grid cell */
}
.gp-preview .gp-verticals--hero .gp-vert-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.gp-preview .gp-verticals--hero .gp-vert-card__icon svg { width: 32px; height: 32px; }
.gp-preview .gp-verticals--hero .gp-vert-card__title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
  word-break: keep-all;
  overflow-wrap: break-word;
  white-space: normal;
}
.gp-preview .gp-verticals--hero .gp-vert-card__body {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
}
/* At the 5-col breakpoint, each card has less horizontal room — shrink title slightly */
@media (min-width: 1200px) {
  .gp-preview .gp-vert-grid--5 .gp-vert-card__title { font-size: 16px; }
  .gp-preview .gp-vert-grid--5 .gp-vert-card__body { font-size: 12.5px; }
  .gp-preview .gp-vert-grid--5 .gp-vert-card { padding: 20px 16px; }
}

/* ============================================================================
   HOME PREVIEW Phase C-3b additions — Trade tile + 5-col grid +
   Live Streaming + Why Crypto + Compare table + One Platform + How It Works +
   Become Agent + App Download. All scoped under .gp-preview.
   ============================================================================ */

/* 5-col vertical hero-grid (was 4 — Trade added) */
.gp-preview .gp-vert-grid--5 {
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .gp-preview .gp-vert-grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gp-preview .gp-vert-grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .gp-preview .gp-vert-grid--5 { grid-template-columns: repeat(5, 1fr); } }

/* Section head centered variant */
.gp-preview .gp-section__head--center {
  text-align: center;
  margin-bottom: 28px;
}
.gp-preview .gp-section__head--center .gp-section__title { display: inline-block; }
.gp-preview .gp-section__head--center .gp-section__sub {
  max-width: 760px;
  margin: 10px auto 0;
  font-size: 15px;
  color: var(--gp-text-2);
  line-height: 1.6;
}

/* Feature grid (reusable: 3 or 4 cols) */
.gp-preview .gp-feature-grid {
  display: grid;
  gap: 14px;
}
.gp-preview .gp-feature-grid--3 { grid-template-columns: 1fr; }
.gp-preview .gp-feature-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 600px) { .gp-preview .gp-feature-grid--3,
                              .gp-preview .gp-feature-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gp-preview .gp-feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
                              .gp-preview .gp-feature-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.gp-preview .gp-feature {
  background: var(--gp-bg-2);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
  padding: 24px 22px;
  transition: border-color .15s ease, transform .15s ease;
}
.gp-preview .gp-feature:hover {
  border-color: rgba(0, 229, 139, 0.30);
  transform: translateY(-2px);
}
.gp-preview .gp-feature__icon {
  font-size: 28px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 10px rgba(0, 229, 139, 0.22));
}
.gp-preview .gp-feature__title {
  font-family: var(--gp-font-display);
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--gp-text-0);
}
.gp-preview .gp-feature__body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gp-text-1);
  margin: 0;
}

/* Live streaming section subtle accent */
.gp-preview .gp-live-streaming {
  background: linear-gradient(180deg, rgba(0, 229, 139, 0.03) 0%, transparent 100%);
}

/* Compare table */
.gp-preview .gp-table-wrap {
  background: var(--gp-bg-1);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
  overflow-x: auto;
  padding: 4px;
}
.gp-preview .gp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.gp-preview .gp-compare-table th,
.gp-preview .gp-compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gp-line);
  color: var(--gp-text-1);
}
.gp-preview .gp-compare-table th {
  font-family: var(--gp-font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gp-text-2);
  background: var(--gp-bg-2);
}
.gp-preview .gp-compare-table tr:last-child td { border-bottom: 0; }
.gp-preview .gp-compare-table .gp-th-highlight {
  background: rgba(0, 229, 139, 0.06);
  color: var(--gp-text-0);
}
.gp-preview .gp-compare-table th.gp-th-highlight {
  color: var(--gp-acc-green);
}
.gp-preview .gp-compare-table .gp-yes { color: var(--gp-acc-green); font-weight: 600; }
.gp-preview .gp-compare-table .gp-no { color: #F38BA8; opacity: 0.85; }

/* How it works steps */
.gp-preview .gp-steps-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .gp-preview .gp-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gp-preview .gp-steps-grid { grid-template-columns: repeat(4, 1fr); } }

.gp-preview .gp-step {
  background: var(--gp-bg-2);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
  padding: 22px 20px;
  position: relative;
}
.gp-preview .gp-step__num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--gp-font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--gp-acc-green);
  opacity: 0.30;
  line-height: 1;
}
.gp-preview .gp-step__h {
  font-family: var(--gp-font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--gp-text-0);
  margin: 0 0 8px;
  padding-right: 32px;
}
.gp-preview .gp-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gp-text-1);
  margin: 0;
}

/* Become Agent card */
.gp-preview .gp-agent-card {
  background:
    radial-gradient(ellipse at top right, rgba(0, 229, 139, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, var(--gp-bg-1) 0%, var(--gp-bg-2) 100%);
  border: 1px solid rgba(0, 229, 139, 0.25);
  border-radius: 18px;
  padding: 40px 36px;
  text-align: center;
}
@media (min-width: 768px) { .gp-preview .gp-agent-card { padding: 56px 48px; } }
.gp-preview .gp-agent-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gp-acc-green);
  margin-bottom: 16px;
}
.gp-preview .gp-agent-card__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gp-acc-green);
  box-shadow: 0 0 8px rgba(0, 229, 139, 0.7);
}
.gp-preview .gp-agent-card__title {
  font-family: var(--gp-font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--gp-text-0);
  letter-spacing: -0.01em;
}
.gp-preview .gp-agent-card__body {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gp-text-1);
}
.gp-preview .gp-agent-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* App download card */
.gp-preview .gp-app-card {
  background: linear-gradient(135deg, rgba(0, 229, 139, 0.06) 0%, var(--gp-bg-2) 60%);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-r-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 768px) {
  .gp-preview .gp-app-card { grid-template-columns: 1fr; text-align: center; }
}
.gp-preview .gp-app-card__icon img {
  display: block;
  width: 64px; height: 64px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
}
@media (max-width: 768px) {
  .gp-preview .gp-app-card__icon { display: flex; justify-content: center; }
}
.gp-preview .gp-app-card__h {
  font-family: var(--gp-font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--gp-text-0);
}
.gp-preview .gp-app-card__copy p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gp-text-1);
  margin: 0;
}
.gp-preview .gp-app-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
@media (max-width: 768px) {
  .gp-preview .gp-app-card__actions { align-items: center; }
}
.gp-preview .gp-app-card__note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gp-text-2);
  letter-spacing: 0.2px;
}

/* Inline SVG icons inside vertical cards — neon-green stroke */
.gp-preview .gp-verticals--hero .gp-vert-card__icon {
  color: var(--gp-acc-green);
  background: rgba(0, 229, 139, 0.08);
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(0, 229, 139, 0.20));
}
.gp-preview .gp-vert-card--casino .gp-vert-card__icon {
  background: rgba(0, 229, 139, 0.14);
}

/* Odds-format chips (6 horizontal pills) */
.gp-preview .gp-odds-formats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  max-width: 920px;
}
.gp-preview .gp-odds-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gp-bg-2);
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gp-text-1);
  transition: border-color .12s ease, color .12s ease;
}
.gp-preview .gp-odds-chip:hover {
  border-color: rgba(0, 229, 139, 0.40);
  color: var(--gp-text-0);
}
.gp-preview .gp-odds-chip strong {
  color: var(--gp-acc-green);
  font-family: var(--gp-font-display);
  font-weight: 600;
  font-size: 13px;
}
.gp-preview .gp-odds-chip span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gp-text-2);
  letter-spacing: 0.3px;
}

/* Bonuses section (3-card grid) */
.gp-preview .gp-bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) { .gp-preview .gp-bonus-grid { grid-template-columns: repeat(3, 1fr); } }
.gp-preview .gp-bonus-card {
  background: var(--gp-bg-2);
  border: 1px solid var(--gp-line);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s ease, transform .15s ease;
}
.gp-preview .gp-bonus-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 139, 0.30);
}
.gp-preview .gp-bonus-card--featured {
  background:
    radial-gradient(ellipse at top right, rgba(0, 229, 139, 0.10) 0%, transparent 55%),
    var(--gp-bg-2);
  border-color: rgba(0, 229, 139, 0.25);
}
.gp-preview .gp-bonus-card__pill {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  background: rgba(0, 229, 139, 0.12);
  color: var(--gp-acc-green);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gp-preview .gp-bonus-card__h {
  font-family: var(--gp-font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--gp-text-0);
  letter-spacing: -0.01em;
}
.gp-preview .gp-bonus-card__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gp-text-1);
  margin: 0 0 16px;
}
.gp-preview .gp-bonus-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}
.gp-preview .gp-bonus-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gp-text-1);
}
.gp-preview .gp-bonus-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--gp-acc-green);
  border-bottom: 2px solid var(--gp-acc-green);
  transform: rotate(-45deg);
}
.gp-preview .gp-bonus-card__cta {
  display: inline-block;
  font-family: var(--gp-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-acc-green);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: opacity .12s ease;
}
.gp-preview .gp-bonus-card__cta:hover { opacity: 0.85; color: var(--gp-acc-green); }
.gp-preview .gp-bonus-footnote {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gp-text-2);
  margin: 24px auto 0;
  max-width: 760px;
  line-height: 1.55;
  letter-spacing: 0.2px;
}

/* ============================================================================
   SLIM PAGE HEADER (Phase D-2) — used by master_preview for logged-in pages.
   Replaces the legacy .inner-hero full-bleed banner with a clean breadcrumb bar.
   ============================================================================ */
.gp-page-header {
    background: #0A0B0E;
    padding: 48px 0 36px;       /* was 24px 0 12px — more breathing room above and below */
    font-family: 'Manrope', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 28px;        /* was 12px — more space before the page content */
}
.gp-page-header__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.gp-page-header__nav {
    font-size: 16px;            /* was 13px — bigger, more readable */
    letter-spacing: 0.3px;
}
.gp-page-header__crumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;   /* center like the legacy breadcrumb */
    gap: 12px;
    color: #7C879F;
    flex-wrap: wrap;
}
.gp-page-header__crumbs a {
    color: #00E58B;
    text-decoration: none;
    font-weight: 600;
    transition: opacity .12s ease;
}
.gp-page-header__crumbs a:hover { opacity: 0.85; color: #00E58B; }
.gp-page-header__crumbs li[aria-current="page"] {
    color: #FFFFFF;
    font-weight: 600;
}
.gp-page-header__crumb-sep {
    color: #3C4254;
    font-size: 18px;            /* slightly bigger separator slash */
    line-height: 1;
}
@media (max-width: 600px) {
    .gp-page-header { padding: 32px 0 24px; margin-bottom: 20px; }
    .gp-page-header__nav { font-size: 14px; }
}

/* ============================================================================
   GAME SEARCH BAR — added 2026-06-02
   Sticky filter that lives below the hero on /games, /casino, /slots, /live-casino,
   /crash-games, /plinko, etc. (all preview pages with game grids).
   ============================================================================ */
.gp-preview .gp-search-bar {
    position: sticky;
    top: 78px;
    z-index: 50;
    background: rgba(10, 11, 14, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.gp-preview .gp-search-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #14141A;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 0 16px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.gp-preview .gp-search-wrap:focus-within {
    border-color: rgba(0, 229, 139, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 229, 139, 0.10);
}
.gp-preview .gp-search-icon {
    width: 20px;
    height: 20px;
    color: #7C879F;
    flex-shrink: 0;
}
.gp-preview .gp-search-input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    height: 52px;
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    padding: 0;
}
.gp-preview .gp-search-input::placeholder { color: #7C879F; }
.gp-preview .gp-search-input::-webkit-search-cancel-button { display: none; }
.gp-preview .gp-search-clear {
    background: transparent;
    border: 0;
    color: #7C879F;
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: color .12s ease, background .12s ease;
}
.gp-preview .gp-search-clear:hover { color: #FFFFFF; background: rgba(255,255,255,0.06); }
.gp-preview .gp-search-clear svg { width: 16px; height: 16px; }
.gp-preview .gp-search-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #7C879F;
    flex-shrink: 0;
    padding-right: 4px;
}
.gp-preview .gp-search-count strong { color: #00E58B; font-weight: 600; }

/* When a card is hidden by search */
.gp-preview .gp-game-card.gp-search-hidden,
.gp-preview .game-card-item.gp-search-hidden {
    display: none !important;
}
/* Highlight matching cards subtly */
.gp-preview .gp-game-card.gp-search-match,
.gp-preview .game-card-item.gp-search-match {
    box-shadow: 0 0 0 2px rgba(0, 229, 139, 0.45);
    border-radius: 12px;
    animation: gp-search-pulse 1.2s ease-out;
}
@keyframes gp-search-pulse {
    0% { box-shadow: 0 0 0 3px rgba(0, 229, 139, 0.65); }
    100% { box-shadow: 0 0 0 2px rgba(0, 229, 139, 0.30); }
}

@media (max-width: 600px) {
    .gp-preview .gp-search-bar { padding: 12px 0; top: 78px; }
    .gp-preview .gp-search-input { height: 44px; font-size: 14px; }
}

/* ============================================================================
   TOURNAMENT HUBS (Phase E-3) — 6 sub-page pattern
   Used by /premier-league-betting, /nba-basketball-betting, /ipl-cricket-betting,
   /french-open-tennis-betting, /fifa-world-cup-betting and their sub-pages.
   ============================================================================ */

/* Bonus banner strip */
.gp-preview .gp-th-bonus-strip { background: linear-gradient(180deg, rgba(0,229,139,0.04), transparent 70%); }
.gp-preview .gp-th-bonus-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .gp-preview .gp-th-bonus-grid { grid-template-columns: repeat(3, 1fr); } }
.gp-preview .gp-th-bonus { background: #14141A; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 18px 20px; transition: border-color .15s ease, transform .15s ease; }
.gp-preview .gp-th-bonus--featured { border-color: rgba(0,229,139,0.30); background: linear-gradient(180deg, rgba(0,229,139,0.04), #14141A 60%); }
.gp-preview .gp-th-bonus:hover { transform: translateY(-2px); border-color: rgba(0,229,139,0.30); }
.gp-preview .gp-th-bonus__tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: #00E58B; margin-bottom: 8px; }
.gp-preview .gp-th-bonus__h { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: #FFFFFF; margin-bottom: 4px; line-height: 1.2; letter-spacing: -0.01em; }
.gp-preview .gp-th-bonus__p { font-size: 12px; color: #B6BFD3; margin: 0; line-height: 1.5; }
.gp-preview .gp-th-bonus__fineprint { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #7C879F; text-align: center; margin: 14px 0 0; letter-spacing: 0.3px; }

/* Sub-page nav (Overview / Standings / Fixtures / Results / Teams) */
.gp-preview .gp-th-subnav { padding: 0; }
.gp-preview .gp-th-subnav__inner { display: flex; gap: 8px; overflow-x: auto; padding: 16px 0; flex-wrap: wrap; }
.gp-preview .gp-th-tab { padding: 10px 18px; background: #14141A; border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; color: #B6BFD3; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13px; text-decoration: none; transition: border-color .12s ease, color .12s ease, background .12s ease; white-space: nowrap; }
.gp-preview .gp-th-tab:hover { color: #FFFFFF; border-color: rgba(0,229,139,0.30); }
.gp-preview .gp-th-tab--active { color: #00E58B; border-color: rgba(0,229,139,0.45); background: rgba(0,229,139,0.08); }

/* Next match card */
.gp-preview .gp-th-next { background: #0E0F12; border: 1px solid rgba(0,229,139,0.25); border-radius: 14px; padding: 20px; max-width: 480px; }
.gp-preview .gp-th-next__time { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #7C879F; letter-spacing: 0.4px; margin-bottom: 10px; }
.gp-preview .gp-th-next__teams { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: #FFFFFF; margin-bottom: 8px; }
.gp-preview .gp-th-next__vs { color: #7C879F; font-weight: 400; margin: 0 8px; font-size: 14px; }
.gp-preview .gp-th-next__round { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #B6BFD3; margin-bottom: 12px; }
.gp-preview .gp-th-next__cta { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: #00E58B; text-decoration: none; font-size: 13px; }

/* Fixture row */
.gp-preview .gp-th-fixture-list { display: flex; flex-direction: column; gap: 8px; }
.gp-preview .gp-th-fixture { display: grid; grid-template-columns: 160px 1fr auto auto; gap: 14px; align-items: center; background: #0E0F12; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px 18px; }
@media (max-width: 700px) { .gp-preview .gp-th-fixture { grid-template-columns: 1fr; gap: 6px; } }
.gp-preview .gp-th-fixture--live { border-color: rgba(0,229,139,0.30); background: linear-gradient(90deg, rgba(0,229,139,0.04), #0E0F12 30%); }
.gp-preview .gp-th-fixture__time { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #7C879F; letter-spacing: 0.3px; }
.gp-preview .gp-th-fixture__live-dot { display: inline-block; width: 7px; height: 7px; background: #00E58B; border-radius: 50%; margin-right: 6px; box-shadow: 0 0 8px rgba(0,229,139,0.7); animation: gp-th-pulse 2s ease-in-out infinite; }
@keyframes gp-th-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.gp-preview .gp-th-fixture__teams { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px; color: #FFFFFF; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.gp-preview .gp-th-fixture__teams img { vertical-align: middle; border-radius: 4px; }
.gp-preview .gp-th-fixture__team { display: inline-flex; align-items: center; gap: 6px; }
.gp-preview .gp-th-fixture__vs { color: #7C879F; font-weight: 400; font-size: 12px; }
.gp-preview .gp-th-fixture__score { font-family: 'JetBrains Mono', monospace; color: #00E58B; font-weight: 700; }
.gp-preview .gp-th-fixture__round { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #B6BFD3; background: rgba(255,255,255,0.04); padding: 4px 10px; border-radius: 999px; }
.gp-preview .gp-th-fixture__cta { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13px; color: #00E58B; text-decoration: none; padding: 6px 12px; border: 1px solid rgba(0,229,139,0.30); border-radius: 8px; }
.gp-preview .gp-th-fixture__cta:hover { background: rgba(0,229,139,0.10); color: #00E58B; }

/* Standings table */
.gp-preview .gp-th-table-wrap { overflow-x: auto; background: #0E0F12; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; margin-bottom: 16px; }
.gp-preview .gp-th-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 600px; }
.gp-preview .gp-th-table thead th { background: #14141A; color: #00E58B; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; padding: 12px 14px; text-align: left; border-bottom: 1px solid rgba(0,229,139,0.20); }
.gp-preview .gp-th-table__num { text-align: center; }
.gp-preview .gp-th-table__rank { width: 40px; text-align: center; color: #7C879F; }
.gp-preview .gp-th-table tbody td { padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); color: #E8ECF4; }
.gp-preview .gp-th-table tbody tr:last-child td { border-bottom: 0; }
.gp-preview .gp-th-table tbody tr:hover { background: rgba(0,229,139,0.03); }
.gp-preview .gp-th-table__team { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.gp-preview .gp-th-table__team img { border-radius: 4px; flex-shrink: 0; }
.gp-preview .gp-th-table__team a { color: #FFFFFF; text-decoration: none; }
.gp-preview .gp-th-table__team a:hover { color: #00E58B; }
.gp-preview .gp-th-table__form { display: flex; gap: 4px; }
.gp-preview .gp-th-form { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; border-radius: 4px; }
.gp-preview .gp-th-form--w { background: rgba(0,229,139,0.20); color: #00E58B; }
.gp-preview .gp-th-form--d { background: rgba(249,200,70,0.20); color: #F9C846; }
.gp-preview .gp-th-form--l { background: rgba(243,139,168,0.20); color: #F38BA8; }

/* Teams grid */
.gp-preview .gp-th-teams-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.gp-preview .gp-th-team-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 18px 14px; background: #0E0F12; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; text-decoration: none; color: #FFFFFF; transition: border-color .15s ease, transform .15s ease; text-align: center; }
.gp-preview .gp-th-team-card:hover { transform: translateY(-2px); border-color: rgba(0,229,139,0.30); color: #FFFFFF; }
.gp-preview .gp-th-team-card__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(0,229,139,0.10); color: #00E58B; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; }
.gp-preview .gp-th-team-card__name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13px; line-height: 1.2; }
.gp-preview .gp-th-team-card__rank { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #7C879F; }

/* Per-team hero */
.gp-preview .gp-th-team-hero { display: flex; gap: 18px; align-items: center; margin-bottom: 22px; }
.gp-preview .gp-th-team-hero img { border-radius: 8px; }
.gp-preview .gp-th-team-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; }
.gp-preview .gp-th-team-stat { background: #0E0F12; border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 14px; text-align: center; }
.gp-preview .gp-th-team-stat__val { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: #00E58B; line-height: 1; }
.gp-preview .gp-th-team-stat__lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #7C879F; margin-top: 6px; letter-spacing: 0.3px; }

/* Empty / loading state */
.gp-preview .gp-th-empty { padding: 32px 24px; background: #0E0F12; border: 1px dashed rgba(255,255,255,0.10); border-radius: 14px; text-align: center; }

/* Live dot for "Live now" h2 */
.gp-preview .gp-th-live-dot { display: inline-block; width: 10px; height: 10px; background: #00E58B; border-radius: 50%; box-shadow: 0 0 12px rgba(0,229,139,0.7); animation: gp-th-pulse 2s ease-in-out infinite; vertical-align: middle; margin-right: 8px; }

/* Preconnect to logo CDN — make sure browser hits it early */
.gp-preview .gp-th { font-family: 'Manrope', sans-serif; }

/* ── Tournament hub hero pills (4 vertical chooser) ── */
.gp-preview .gp-th-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 0;
}
.gp-preview .gp-th-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.gp-preview .gp-th-hero-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 229, 139, 0.45);
    color: #00E58B;
    background: rgba(0, 229, 139, 0.06);
}
.gp-preview .gp-th-hero-pill--primary {
    background: linear-gradient(180deg, #007D49 0%, #005232 100%);
    border-color: rgba(0, 229, 139, 0.40);
    box-shadow: 0 6px 14px rgba(0, 125, 73, 0.30);
    color: #FFFFFF;
}
.gp-preview .gp-th-hero-pill--primary:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 125, 73, 0.40);
}
.gp-preview .gp-th-hero-pill__icon { font-size: 16px; line-height: 1; }
.gp-preview .gp-th-hero-pill__label { font-size: 14px; letter-spacing: 0.2px; }

/* Make the 4-vertical chooser section more prominent — highlight + animate in on entry */
.gp-preview .gp-th-verticals-wrap {
    background: linear-gradient(180deg, rgba(0, 229, 139, 0.04) 0%, transparent 70%);
    border-radius: 16px;
}
.gp-preview .gp-th-verticals {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.gp-preview .gp-th-verticals .gp-hub-sport {
    padding: 18px 18px;
    background: #14141A;
    border: 1px solid rgba(0, 229, 139, 0.18);
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.gp-preview .gp-th-verticals .gp-hub-sport:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 139, 0.50);
    box-shadow: 0 8px 20px rgba(0, 125, 73, 0.18);
}
.gp-preview .gp-th-verticals .gp-hub-sport__name {
    font-size: 16px;
}

@media (max-width: 600px) {
    .gp-preview .gp-th-hero-pills { gap: 8px; }
    .gp-preview .gp-th-hero-pill { padding: 10px 14px; font-size: 13px; }
    .gp-preview .gp-th-hero-pill__label { font-size: 13px; }
}

/* ── Standings tabs (All / Home / Away / Form) ── */
.gp-preview .gp-st-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 14px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0;
}
.gp-preview .gp-st-tab {
    appearance: none;
    background: transparent;
    border: 0;
    color: #97a1ae;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.2px;
    padding: 9px 18px;
    margin: 0;
    cursor: pointer;
    border-radius: 22px;
    transition: background .12s ease, color .12s ease;
}
.gp-preview .gp-st-tab:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.04);
}
.gp-preview .gp-st-tab--active {
    background: #FFFFFF;
    color: #0A0B0E;
}
.gp-preview .gp-st-panel { display: none; }
.gp-preview .gp-st-panel--active { display: block; }

/* ── Cricket score & summary ── */
.gp-preview .gp-th-fixture__score--cricket {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-variant-numeric: tabular-nums;
}
.gp-preview .gp-th-fixture__cricket-side {
    color: #00E58B;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}
.gp-preview .gp-th-fixture__cricket-sep {
    color: #5a6472;
    font-weight: 400;
}
.gp-preview .gp-th-fixture__summary {
    width: 100%;
    flex: 0 0 100%;
    margin-top: 4px;
    padding: 6px 10px 0;
    font-size: 12px;
    color: #97a1ae;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ──────────────────────────────────────────────────────────
   Stacked fixture row (LiveScore-style, sport-agnostic)
   Used across overview / fixtures / results / team_detail.
   ────────────────────────────────────────────────────────── */

.gp-preview .gp-th-day { margin-bottom: 18px; }
.gp-preview .gp-th-day__hdr {
    text-align: center;
    color: #5a6472;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 0 10px;
    position: relative;
}
.gp-preview .gp-th-day__hdr::before,
.gp-preview .gp-th-day__hdr::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
}
.gp-preview .gp-th-day__hdr::before { left: 0; }
.gp-preview .gp-th-day__hdr::after { right: 0; }
.gp-preview .gp-th-day__rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gp-preview .gp-th-fx {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #14141A;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: background .12s ease, border-color .12s ease, transform .12s ease;
}
.gp-preview .gp-th-fx:hover {
    background: #181820;
    border-color: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
}
.gp-preview .gp-th-fx--fin { cursor: default; }
.gp-preview .gp-th-fx--fin:hover { transform: none; }
.gp-preview .gp-th-fx--live {
    border-color: rgba(0, 229, 139, 0.20);
    background: linear-gradient(180deg, rgba(0, 229, 139, 0.03) 0%, #14141A 100%);
}
.gp-preview .gp-th-fx--canc { opacity: 0.55; }

/* Left meta column: time + status stacked */
.gp-preview .gp-th-fx__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}
.gp-preview .gp-th-fx__time {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #97a1ae;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}
.gp-preview .gp-th-fx__status {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #5a6472;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.gp-preview .gp-th-fx__status--live {
    color: #00E58B;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.gp-preview .gp-th-fx__status--live::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #00E58B;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 229, 139, 0.7);
    animation: gp-th-pulse 2s ease-in-out infinite;
}

/* Middle column: two teams stacked */
.gp-preview .gp-th-fx__teams {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.gp-preview .gp-th-fx__team {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.gp-preview .gp-th-fx__logo {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
}
.gp-preview .gp-th-fx__logo--ph {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}
.gp-preview .gp-th-fx__name {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #E5E7EB;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* Right column: scores stacked */
.gp-preview .gp-th-fx__scores {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    text-align: right;
    flex-shrink: 0;
    min-width: 40px;
}
.gp-preview .gp-th-fx__score-line {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    height: 22px;
    line-height: 22px;
}
.gp-preview .gp-th-fx__score {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    font-variant-numeric: tabular-nums;
    min-width: 16px;
    text-align: right;
}
.gp-preview .gp-th-fx__score-sub {
    font-size: 11px;
    color: #97a1ae;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}
.gp-preview .gp-th-fx__vs {
    font-size: 12px;
    color: #5a6472;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Mobile: shrink left meta, keep stacking */
@media (max-width: 600px) {
    .gp-preview .gp-th-fx {
        grid-template-columns: 70px 1fr auto;
        gap: 10px;
        padding: 12px 14px;
    }
    .gp-preview .gp-th-fx__time { font-size: 12px; }
    .gp-preview .gp-th-fx__status { font-size: 10px; }
    .gp-preview .gp-th-fx__name { font-size: 13px; }
    .gp-preview .gp-th-fx__logo { width: 20px; height: 20px; }
    .gp-preview .gp-th-fx__score { font-size: 15px; }
}

/* When ANY logo in the row fails to load (cricket badge 404s) OR was missing
   at render time, hide BOTH logos so the row stays balanced. */
.gp-preview .gp-th-fx__teams--nologo .gp-th-fx__logo { display: none; }
.gp-preview .gp-th-fx__teams--nologo .gp-th-fx__team { gap: 0; }

/* ──────────────────────────────────────────────────────────
   Tennis draw / bracket — adapted from GS dev's drop-in spec
   ────────────────────────────────────────────────────────── */

.gp-preview .pt-loading,
.gp-preview .pt-empty {
    padding: 32px 18px;
    text-align: center;
    color: #97a1ae;
    font-style: italic;
    font-family: 'Manrope', sans-serif;
}

.gp-preview .pt-dtype-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.gp-preview .pt-dtype-tab {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.10);
    color: #97a1ae;
    font-family: 'Manrope', sans-serif;
    padding: 8px 20px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .12s ease;
}
.gp-preview .pt-dtype-tab:hover { color: #fff; border-color: rgba(255,255,255,.20); }
.gp-preview .pt-dtype-tab--active {
    background: #00E58B;
    border-color: #00E58B;
    color: #0A0B0E;
}

.gp-preview .pt-disc-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}
.gp-preview .pt-disc-tab {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.10);
    color: #97a1ae;
    padding: 6px 16px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .12s ease;
}
.gp-preview .pt-disc-tab--active {
    background: rgba(0, 229, 139, 0.10);
    border-color: rgba(0, 229, 139, 0.40);
    color: #00E58B;
}

.gp-preview .pt-table {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
}
.gp-preview .pt-content {
    display: flex;
    align-items: flex-start;
    min-width: max-content;
    position: relative;
}
.gp-preview .pt-tour {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: relative;
}
.gp-preview .pt-round-lbl {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #5a6472;
    white-space: nowrap;
    height: 28px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4px;
}
.gp-preview .pt-col {
    position: relative;
    flex-shrink: 0;
}
.gp-preview .pt-pair { position: absolute; left: 0; }
.gp-preview .pt-conn {
    position: absolute;
    background: rgba(255, 255, 255, 0.10);
    pointer-events: none;
}
.gp-preview .pt-conn--h { height: 1px; }
.gp-preview .pt-conn--v { width: 1px; }

.gp-preview .pt-card,
.gp-preview a.pt-card {
    background: #14141A;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: border-color .12s ease, transform .12s ease;
}
.gp-preview a.pt-card:hover {
    border-color: rgba(0, 229, 139, 0.40);
    transform: translateY(-1px);
    text-decoration: none;
    color: inherit;
}
.gp-preview .pt-card--canc { opacity: .55; }
.gp-preview .pt-card--tbd {
    background: rgba(20, 20, 26, 0.4);
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.06);
}
.gp-preview .pt-card-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.gp-preview .pt-date {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #5a6472;
}
.gp-preview .pt-st {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
}
.gp-preview .pt-st--fin,
.gp-preview .pt-st--sched { color: #5a6472; }
.gp-preview .pt-st--live { color: #00E58B; }
.gp-preview .pt-st--canc { color: #e0a020; }

.gp-preview .pt-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    flex: 1;
    gap: 6px;
}
.gp-preview .pt-sep { height: 1px; background: rgba(255, 255, 255, 0.06); flex-shrink: 0; }
.gp-preview .pt-entry--w .pt-name { font-weight: 700; color: #FFFFFF; }
.gp-preview .pt-entry--l .pt-name { color: #97a1ae; }
.gp-preview .pt-entry--p1 { padding-bottom: 1px; }
.gp-preview .pt-entry--p2 { padding-top: 1px; }
.gp-preview .pt-name {
    flex: 1;
    font-family: 'Manrope', sans-serif;
    font-size: 12.5px;
    color: #d6dae0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.gp-preview .pt-name--tbd { color: #5a6472; font-style: italic; }
.gp-preview .pt-seed { font-size: 10px; color: #5a6472; margin-left: 3px; }
.gp-preview .pt-ctry {
    font-size: 9px;
    color: #7a8493;
    margin-left: 4px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.gp-preview .pt-scores {
    display: flex;
    gap: 5px;
    align-items: baseline;
    flex-shrink: 0;
}
.gp-preview .pt-set {
    font-size: 12.5px;
    font-variant-numeric: tabular-nums;
    color: #97a1ae;
    min-width: 11px;
    text-align: center;
}
.gp-preview .pt-set--w { color: #FFFFFF; font-weight: 700; }
.gp-preview .pt-tb {
    font-size: 8px;
    color: #5a6472;
    vertical-align: super;
    margin-left: 1px;
}

/* Draw toolbar: dtype tabs on left, zoom controls on right */
.gp-preview .pt-draw-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    flex-wrap: wrap;
}
/* Override the original margin-bottom of pt-dtype-tabs when inside the toolbar */
.gp-preview .pt-draw-toolbar .pt-dtype-tabs {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.gp-preview .pt-zoom {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 4px;
}
.gp-preview .pt-zoom-btn {
    appearance: none;
    background: transparent;
    border: 0;
    color: #d6dae0;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: background .12s ease, color .12s ease;
    line-height: 1;
}
.gp-preview .pt-zoom-btn:hover {
    background: rgba(0, 229, 139, 0.10);
    color: #00E58B;
}
.gp-preview .pt-zoom-btn--fit {
    width: auto;
    padding: 0 12px;
    font-size: 11px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.gp-preview .pt-zoom-level {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #97a1ae;
    min-width: 38px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    user-select: none;
}

/* When zoom transform is applied, the .pt-content gets transform:scale.
   Reserve scaled space so connectors and scrolling stay aligned. */
.gp-preview .pt-table { position: relative; }

@media (max-width: 600px) {
    .gp-preview .pt-zoom-btn--fit { display: none; } /* tap to zoom on mobile instead */
}

/* Third Place Play-Off — standalone card below the main bracket (FIFA WC) */
.gp-preview .pt-third-place {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.gp-preview .pt-third-place-lbl {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #5a6472;
    margin-bottom: 6px;
}

/* ──────────────────────────────────────────────────────────
   Responsible gambling trust strip — sits above footer-bottom
   E-E-A-T / harm-reduction signal for Google and players
   ────────────────────────────────────────────────────────── */
.gp-rg-strip {
    background: #0E0F12;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 22px 0;
    font-family: 'Manrope', sans-serif;
}
.gp-rg-strip__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}
.gp-rg-strip__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: linear-gradient(180deg, #C42727 0%, #8B1818 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(196, 39, 39, 0.30);
}
.gp-rg-strip__badge-num {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}
.gp-rg-strip__copy { min-width: 0; }
.gp-rg-strip__h {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.01em;
}
.gp-rg-strip__p {
    margin: 0;
    font-size: 12px;
    color: #97a1ae;
    line-height: 1.55;
}
.gp-rg-strip__p a {
    color: #00E58B;
    text-decoration: none;
    border-bottom: 1px dotted rgba(0, 229, 139, 0.40);
}
.gp-rg-strip__p a:hover { color: #FFFFFF; border-bottom-color: #FFFFFF; }
.gp-rg-strip__partners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}
.gp-rg-strip__partners a {
    display: inline-block;
    text-decoration: none;
}
.gp-rg-strip__partner {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #d6dae0;
    letter-spacing: 0.02em;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.gp-rg-strip__partners a:hover .gp-rg-strip__partner {
    background: rgba(0, 229, 139, 0.06);
    border-color: rgba(0, 229, 139, 0.40);
    color: #00E58B;
}

@media (max-width: 900px) {
    .gp-rg-strip__inner {
        grid-template-columns: auto 1fr;
        gap: 14px;
    }
    .gp-rg-strip__partners {
        grid-column: 1 / -1;
        justify-content: flex-start;
        margin-top: 4px;
    }
}
@media (max-width: 500px) {
    .gp-rg-strip__badge { width: 44px; height: 44px; }
    .gp-rg-strip__badge-num { font-size: 15px; }
    .gp-rg-strip__h { font-size: 13px; }
    .gp-rg-strip__p { font-size: 11px; }
}

/* ──────────────────────────────────────────────────────────
   Featured-game SEO landing pages (/casino/{cat}/{slug})
   Phase E-4 — pan-Asian + India + Africa messaging
   ────────────────────────────────────────────────────────── */
.gp-preview .gp-fg-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #97a1ae;
    flex-wrap: wrap;
}
.gp-preview .gp-fg-breadcrumbs a {
    color: #97a1ae;
    text-decoration: none;
    transition: color .12s ease;
}
.gp-preview .gp-fg-breadcrumbs a:hover { color: #00E58B; }

.gp-preview .gp-fg-hero {
    padding: 26px 0 32px;
    background: linear-gradient(180deg, rgba(0, 229, 139, 0.04) 0%, transparent 100%);
}
.gp-preview .gp-fg-hero__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
}
.gp-preview .gp-fg-hero__copy { min-width: 0; }
.gp-preview .gp-fg-hero__eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #00E58B;
    margin-bottom: 10px;
}
.gp-preview .gp-fg-hero__h1 {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.gp-preview .gp-fg-hero__hook {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #d6dae0;
    margin: 0 0 24px;
    line-height: 1.55;
    max-width: 640px;
}
.gp-preview .gp-fg-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.gp-preview .gp-fg-cta-primary { /* inherits gp-play-btn */ }
.gp-preview .gp-fg-cta-secondary {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #00E58B;
    text-decoration: none;
    transition: color .12s ease;
}
.gp-preview .gp-fg-cta-secondary:hover { color: #FFFFFF; }

.gp-preview .gp-fg-trustline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 12.5px;
    color: #97a1ae;
}
.gp-preview .gp-fg-trustline__dot {
    width: 6px;
    height: 6px;
    background: #00E58B;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 229, 139, 0.7);
}

.gp-preview .gp-fg-hero__art {
    width: 220px;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    background: #14141A;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gp-preview .gp-fg-hero__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Crypto-benefits strip — sits below hero */
.gp-preview .gp-fg-crypto-strip {
    padding-top: 8px;
    padding-bottom: 8px;
}
.gp-preview .gp-fg-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.gp-preview .gp-fg-benefit {
    background: #14141A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 16px 14px;
    transition: border-color .12s ease, transform .12s ease;
}
.gp-preview .gp-fg-benefit:hover {
    border-color: rgba(0, 229, 139, 0.25);
    transform: translateY(-1px);
}
.gp-preview .gp-fg-benefit__icon {
    font-size: 20px;
    margin-bottom: 6px;
}
.gp-preview .gp-fg-benefit__h {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}
.gp-preview .gp-fg-benefit p {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #97a1ae;
    line-height: 1.5;
    margin: 0;
}

.gp-preview .gp-fg-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gp-preview .gp-fg-list li {
    position: relative;
    padding: 12px 16px 12px 36px;
    background: #14141A;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #d6dae0;
    line-height: 1.55;
}
.gp-preview .gp-fg-list li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 18px;
    width: 8px;
    height: 8px;
    background: #00E58B;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 229, 139, 0.5);
}

.gp-preview .gp-fg-prose {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #d6dae0;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 0 14px;
}
.gp-preview .gp-fg-disclaimer {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #5a6472;
    font-style: italic;
    margin-top: 14px;
}

.gp-preview .gp-fg-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.gp-preview .gp-fg-related {
    display: block;
    padding: 14px 16px;
    background: #14141A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: border-color .12s ease, transform .12s ease;
}
.gp-preview .gp-fg-related:hover {
    border-color: rgba(0, 229, 139, 0.35);
    transform: translateY(-1px);
    text-decoration: none;
    color: inherit;
}
.gp-preview .gp-fg-related__name {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}
.gp-preview .gp-fg-related__hook {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #97a1ae;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 720px) {
    .gp-preview .gp-fg-hero__grid {
        grid-template-columns: 1fr;
    }
    .gp-preview .gp-fg-hero__art {
        width: 140px;
        height: 140px;
        order: -1;
    }
}

/* Prominent welcome-bonus + referral banner on featured-game pages */
.gp-preview .gp-fg-promo {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #1A4D2E 0%, #0F3320 60%, #0A0B0E 100%);
    border: 1px solid rgba(0, 229, 139, 0.30);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(0, 125, 73, 0.18);
    position: relative;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.gp-preview .gp-fg-promo:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 139, 0.55);
    box-shadow: 0 12px 32px rgba(0, 125, 73, 0.30);
    text-decoration: none;
    color: inherit;
}
.gp-preview .gp-fg-promo::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0,229,139,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.gp-preview .gp-fg-promo__art {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(180deg, #F7B500 0%, #E89900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(247, 181, 0, 0.40), inset 0 2px 0 rgba(255,255,255,0.30);
    flex-shrink: 0;
}
.gp-preview .gp-fg-promo__coin {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
    line-height: 1;
}
.gp-preview .gp-fg-promo__sparkle {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #FFFFFF 0%, transparent 70%);
    border-radius: 50%;
    animation: gp-fg-promo-sparkle 2.4s ease-in-out infinite;
}
@keyframes gp-fg-promo-sparkle {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50%      { opacity: 1.0; transform: scale(1.2); }
}
.gp-preview .gp-fg-promo__copy { min-width: 0; }
.gp-preview .gp-fg-promo__tag {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #00E58B;
    margin-bottom: 4px;
}
.gp-preview .gp-fg-promo__h {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(18px, 2.3vw, 24px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
    line-height: 1.2;
}
.gp-preview .gp-fg-promo__p {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #b8c0cc;
    line-height: 1.5;
    margin: 0;
    max-width: 560px;
}
.gp-preview .gp-fg-promo__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #FFFFFF;
    color: #0A0B0E;
    border-radius: 30px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    transition: transform .12s ease;
}
.gp-preview .gp-fg-promo:hover .gp-fg-promo__cta { transform: translateX(2px); }
.gp-preview .gp-fg-promo__cta svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 720px) {
    .gp-preview .gp-fg-promo {
        grid-template-columns: 60px 1fr;
        padding: 14px 16px;
        gap: 14px;
    }
    .gp-preview .gp-fg-promo__art { width: 60px; height: 60px; }
    .gp-preview .gp-fg-promo__coin { font-size: 30px; }
    .gp-preview .gp-fg-promo__cta {
        grid-column: 1 / -1;
        justify-content: center;
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* Search-state banner — appears on flat-grid category pages when ?search= is active */
.gp-preview .gp-search-state {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 18px;
    background: rgba(0, 229, 139, 0.06);
    border: 1px solid rgba(0, 229, 139, 0.25);
    border-radius: 10px;
    margin-bottom: 18px;
    font-family: 'Manrope', sans-serif;
    flex-wrap: wrap;
}
.gp-preview .gp-search-state--active { display: flex; }
.gp-preview .gp-search-state__msg {
    font-size: 13px;
    color: #d6dae0;
}
.gp-preview .gp-search-state__msg strong {
    color: #00E58B;
    font-weight: 700;
}
.gp-preview .gp-search-state__reset {
    font-size: 13px;
    font-weight: 600;
    color: #00E58B;
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid rgba(0, 229, 139, 0.40);
    border-radius: 18px;
    transition: all .12s ease;
    white-space: nowrap;
}
.gp-preview .gp-search-state__reset:hover {
    background: #00E58B;
    color: #0A0B0E;
    text-decoration: none;
}

/* Flat-grid render-cap notice — appears under grid when total games > render cap */
.gp-preview .gp-simple-grid-more {
    margin-top: 22px;
    padding: 12px 16px;
    background: #14141A;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 12.5px;
    color: #97a1ae;
    text-align: center;
}

/* 4-up bonus grid override (was 3-up, now includes referral card) */
@media (min-width: 768px) {
    .gp-preview .gp-fg .gp-th-bonus-grid,
    .gp-preview .gp-th-bonus-grid:has(.gp-th-bonus--referral) {
        grid-template-columns: repeat(4, 1fr);
    }
}
.gp-preview .gp-th-bonus--referral {
    border-color: rgba(247, 181, 0, 0.30);
    background: linear-gradient(180deg, rgba(247, 181, 0, 0.05) 0%, #14141A 60%);
}
.gp-preview .gp-th-bonus--referral:hover {
    border-color: rgba(247, 181, 0, 0.55);
}
.gp-preview .gp-th-bonus--referral .gp-th-bonus__tag {
    color: #F7B500;
}

/* Make all bonus cards clickable (they're now <a> tags pointing to register) */
.gp-preview a.gp-th-bonus {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform .15s ease, border-color .15s ease;
}
.gp-preview a.gp-th-bonus:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

/* Tournament hub sub-page editorial — adds unique content per /standings, /fixtures, /draw, /results, /teams */
.gp-preview .gp-th-editorial {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 22px 26px;
}
.gp-preview .gp-th-editorial .gp-vert-h2 {
    margin-top: 0;
}
.gp-preview .gp-th-editorial__p {
    font-family: 'Manrope', sans-serif;
    font-size: 14.5px;
    color: #d6dae0;
    line-height: 1.7;
    margin: 0 0 14px;
    max-width: 880px;
}
.gp-preview .gp-th-editorial__p:last-child { margin-bottom: 0; }

/* ──────────────────────────────────────────────────────────
   Announcement Bar — Happy Hour / Bonus Hour countdown
   Renders above the header, hidden on iframe pages
   ────────────────────────────────────────────────────────── */
.gp-ann-bar {
    background: linear-gradient(90deg, #007D49 0%, #00A862 50%, #007D49 100%);
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    position: relative;
    z-index: 1020;
    overflow: hidden;
}
.gp-ann-bar--upcoming {
    background: linear-gradient(90deg, #1A2840 0%, #243C5C 50%, #1A2840 100%);
}
.gp-ann-bar--custom {
    background: linear-gradient(90deg, #1A1A2A 0%, #2A1A3A 50%, #1A1A2A 100%);
}
.gp-ann-bar__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.gp-ann-bar__pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    animation: gp-ann-pulse 1.6s ease-in-out infinite;
}
@keyframes gp-ann-pulse {
    0%, 100% { opacity: 0.6; transform: scale(0.85); }
    50%      { opacity: 1.0; transform: scale(1.15); }
}
.gp-ann-bar__tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 11px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.gp-ann-bar__h {
    color: #FFFFFF;
    font-weight: 700;
}
.gp-ann-bar__sep {
    opacity: 0.45;
    font-weight: 700;
}
.gp-ann-bar__bonus {
    color: #FFFFFF;
    font-weight: 600;
}
.gp-ann-bar__cd {
    background: rgba(0, 0, 0, 0.25);
    padding: 3px 11px;
    border-radius: 10px;
    font-variant-numeric: tabular-nums;
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
}
.gp-ann-bar__cd [data-countdown] {
    font-weight: 700;
    margin-left: 3px;
}
.gp-ann-bar__cta {
    color: #0A0B0E;
    background: #FFFFFF;
    padding: 5px 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 12.5px;
    text-decoration: none;
    margin-left: 4px;
    transition: transform 0.15s ease;
}
.gp-ann-bar__cta:hover {
    background: #FFFFFF;
    color: #007D49;
    transform: translateX(2px);
    text-decoration: none;
}
.gp-ann-bar__custom {
    color: #FFFFFF;
    font-weight: 600;
}
.gp-ann-bar__close {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
    line-height: 1;
    padding: 0 4px;
    cursor: pointer;
    margin-left: auto;
    transition: color 0.15s ease;
}
.gp-ann-bar__close:hover { color: #FFFFFF; }

@media (max-width: 720px) {
    .gp-ann-bar__inner {
        gap: 6px;
        padding: 8px 12px;
        font-size: 12.5px;
    }
    .gp-ann-bar__cta {
        order: 99;
        flex: 1 0 100%;
        text-align: center;
        margin: 4px 0 0;
    }
    .gp-ann-bar__close {
        position: absolute;
        top: 6px;
        right: 8px;
    }
    .gp-ann-bar__sep { display: none; }
}

/* ──────────────────────────────────────────────────────────
   Announcement Bar — header overlap fix
   The bar sits at the top of the viewport with high z-index;
   the fixed .header sits below it; body padding compensates.
   ────────────────────────────────────────────────────────── */

/* When the bar is visible, give it fixed top placement above the header */
.gp-ann-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100; /* higher than .header (z-index 99) */
}

/* Compensate body padding to avoid the bar overlapping page content.
   These need to be applied to the BODY, not the header — the header is
   already position:fixed and we just shift its top offset.

   The bar height is approximately 42-44px on desktop and 56-60px on mobile
   when the CTA wraps. We use CSS variables so JS can correct at runtime. */
body.has-gp-ann-bar { padding-top: var(--gp-ann-bar-h, 44px); }
body.has-gp-ann-bar .header { top: var(--gp-ann-bar-h, 44px) !important; }
body.has-gp-ann-bar .header.menu-fixed { top: var(--gp-ann-bar-h, 44px) !important; }

@media (max-width: 720px) {
    body.has-gp-ann-bar { padding-top: var(--gp-ann-bar-h, 64px); }
    body.has-gp-ann-bar .header { top: var(--gp-ann-bar-h, 64px) !important; }
    body.has-gp-ann-bar .header.menu-fixed { top: var(--gp-ann-bar-h, 64px) !important; }
}

/* Custom admin message in announcement bar (replaces auto-built title · bonus) */
.gp-ann-bar__msg {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 13.5px;
    line-height: 1.4;
    max-width: 720px;
    text-align: center;
}
@media (max-width: 720px) {
    .gp-ann-bar__msg {
        font-size: 12.5px;
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* ──────────────────────────────────────────────────────────
   Announcement Bar — center alignment + attention-grab animation
   Override block (placed last to take precedence)
   ────────────────────────────────────────────────────────── */

/* Brighter gradient + shimmer sweep so the bar actually catches the eye */
.gp-ann-bar--active {
    background: linear-gradient(90deg, #00C97A 0%, #00E58B 50%, #00C97A 100%) !important;
    box-shadow: 0 2px 10px rgba(0, 229, 139, 0.3);
}
.gp-ann-bar--upcoming {
    background: linear-gradient(90deg, #1E3A5F 0%, #2E5A8C 50%, #1E3A5F 100%) !important;
    box-shadow: 0 2px 10px rgba(46, 90, 140, 0.4);
}

/* Animated shimmer sweep across the bar */
.gp-ann-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%);
    animation: gp-ann-shimmer 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes gp-ann-shimmer {
    0%   { left: -100%; }
    60%  { left: 100%; }
    100% { left: 100%; }
}

/* Pulse the whole bar subtly at intervals to redraw attention */
.gp-ann-bar--active,
.gp-ann-bar--upcoming {
    animation: gp-ann-glow 3s ease-in-out infinite;
}
@keyframes gp-ann-glow {
    0%, 100% { box-shadow: 0 2px 10px rgba(0, 229, 139, 0.3); }
    50%      { box-shadow: 0 2px 18px rgba(0, 229, 139, 0.55); }
}
.gp-ann-bar--upcoming {
    animation-name: gp-ann-glow-blue;
}
@keyframes gp-ann-glow-blue {
    0%, 100% { box-shadow: 0 2px 10px rgba(46, 90, 140, 0.4); }
    50%      { box-shadow: 0 2px 20px rgba(80, 140, 220, 0.6); }
}

/* Centered, balanced layout */
.gp-ann-bar__inner {
    justify-content: center !important;
    text-align: center;
    gap: 14px !important;
    padding: 11px 50px 11px 18px !important;
    position: relative;
    z-index: 2;
}

/* Make the custom message clearly the hero */
.gp-ann-bar__msg {
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px;
    color: #FFFFFF !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 820px !important;
}

/* Tag chip — keep small but high-contrast */
.gp-ann-bar__tag {
    background: rgba(0, 0, 0, 0.35) !important;
    color: #FFFFFF;
    font-size: 10.5px !important;
    padding: 4px 11px !important;
    letter-spacing: 0.10em !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Countdown chip stays distinct */
.gp-ann-bar__cd {
    background: rgba(0, 0, 0, 0.40) !important;
    padding: 4px 14px !important;
    font-size: 13px !important;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.20);
}
.gp-ann-bar__cd [data-countdown] {
    color: #FFE680 !important; /* warm yellow so the timer reads instantly */
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255, 230, 128, 0.5);
}

/* CTA pulse so the deposit button feels alive */
.gp-ann-bar__cta {
    animation: gp-ann-cta-bounce 2.5s ease-in-out infinite;
}
@keyframes gp-ann-cta-bounce {
    0%, 100% { transform: translateX(0); box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
    50%      { transform: translateX(3px); box-shadow: 0 2px 12px rgba(255, 255, 255, 0.4); }
}

/* Mobile: stack cleanly, keep emphasis */
@media (max-width: 720px) {
    .gp-ann-bar__inner {
        gap: 8px !important;
        padding: 10px 38px 10px 12px !important;
    }
    .gp-ann-bar__msg {
        font-size: 13px !important;
        flex: 1 1 100%;
    }
    .gp-ann-bar__cd {
        font-size: 12px !important;
        padding: 3px 10px !important;
    }
}

/* LIVE indicator badge — only renders during an active Happy Hour window */
.gp-ann-bar__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 11px;
    background: #DC2626;
    color: #FFFFFF;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.10em;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.6);
    animation: gp-ann-live-glow 1.8s ease-in-out infinite;
    position: relative;
    z-index: 3;
}
@keyframes gp-ann-live-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(220, 38, 38, 0.4); }
    50%      { box-shadow: 0 0 16px rgba(255, 80, 80, 0.85); }
}
.gp-ann-bar__live-badge .gp-ann-bar__pulse {
    background: #FFFFFF;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    width: 6px;
    height: 6px;
}

/* End/start countdown subtle colour distinction */
.gp-ann-bar__cd--ends [data-countdown]  { color: #FFA8A8 !important; }
.gp-ann-bar__cd--starts [data-countdown] { color: #FFE680 !important; }

/* ──────────────────────────────────────────────────────────
   Announcement bar — final centering for ALL responsive sizes
   ────────────────────────────────────────────────────────── */

/* Reset positioning so close button is absolute and content can truly center */
.gp-ann-bar { position: fixed; }
.gp-ann-bar__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center !important;
    text-align: center;
    gap: 12px;
    padding: 11px 50px !important; /* symmetric padding so center math works */
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    min-height: 44px;
}

/* Close button always absolutely positioned top-right of bar */
.gp-ann-bar__close {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
}

/* Tablet — keep one line if it fits */
@media (max-width: 900px) {
    .gp-ann-bar__inner {
        gap: 10px;
        padding: 10px 44px !important;
    }
    .gp-ann-bar__msg {
        font-size: 13.5px !important;
    }
}

/* Phone — stack tag/badge above msg above countdown, all centered */
@media (max-width: 640px) {
    .gp-ann-bar__inner {
        gap: 6px 8px;
        padding: 9px 40px !important;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center !important;
    }
    .gp-ann-bar__msg {
        flex: 1 1 100%;
        font-size: 12.5px !important;
        line-height: 1.4;
        text-align: center;
        order: 2;
    }
    .gp-ann-bar__tag,
    .gp-ann-bar__live-badge {
        order: 1;
    }
    .gp-ann-bar__cd {
        order: 3;
        margin: 0 auto;
    }
    .gp-ann-bar__cta {
        flex: 1 1 100%;
        order: 4;
        text-align: center;
        margin: 4px auto 0;
        max-width: 200px;
    }
    /* Hide dot separators on mobile — they look messy when stacked */
    .gp-ann-bar__sep { display: none; }
}

/* Very small phones */
@media (max-width: 380px) {
    .gp-ann-bar__inner { padding: 8px 36px !important; }
    .gp-ann-bar__msg { font-size: 12px !important; }
    .gp-ann-bar__tag, .gp-ann-bar__live-badge { font-size: 10px !important; padding: 3px 8px !important; }
    .gp-ann-bar__cd { font-size: 11px !important; padding: 3px 10px !important; }
}
