/* ============================================================
   Shark Casino — Marketing Site
   A neon-floor, after-hours casino vibe.
   ============================================================ */

/* -------- Reset / Base -------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--bone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--mint); color: var(--ink); }

/* -------- Tokens -------- */

:root {
  --ink:         #06090F;
  --ink-deep:    #03050A;
  --surface:     #0E1421;
  --surface-2:   #161E2E;
  --surface-3:   #1F2A3E;
  --line:        rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);

  --mint:        #2EE89A;
  --mint-deep:   #14B07A;
  --mint-soft:   rgba(46, 232, 154, 0.14);

  --gold:        #F5C84B;
  --gold-warm:   #E5A82A;
  --gold-deep:   #8B6212;
  --gold-soft:   rgba(245, 200, 75, 0.18);

  --rouge:       #E5475E;
  --rouge-deep:  #B11E36;

  --magenta:     #C642B2;
  --cyan:        #4EC8EA;
  --violet:      #6A4FE6;

  --bone:        #F4EFE4;
  --paper:       #FAF6EC;
  --mute:        #8A95A8;
  --mute-soft:   #5A6378;

  --felt:        #0D5C3D;

  --shadow-lift: 0 30px 60px -20px rgba(0, 0, 0, 0.6),
                 0 10px 24px -8px rgba(0, 0, 0, 0.45);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --container: 1240px;
}

/* -------- Typography -------- */

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--bone);
}

h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); letter-spacing: -0.005em; }
h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); letter-spacing: 0.03em; }
h4 { font-size: 1.05rem; letter-spacing: 0.12em; }

p { margin: 0 0 1em; color: rgba(244, 239, 228, 0.78); }

em, .italic {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0 0 1.25rem;
}

.kicker::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.kicker.gold { color: var(--gold); }
.kicker.rouge { color: var(--rouge); }
.kicker.cyan { color: var(--cyan); }

.serif-flair {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--gold);
}

/* Wordmark — Anton with extruded gold treatment */
.wordmark {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #FFE38A 0%, #F5C84B 45%, #C68A14 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    1px 1px 0 rgba(0, 0, 0, 0.6),
    0 0 24px rgba(245, 200, 75, 0.35);
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.5));
}

/* -------- Layout helpers -------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section--tight  { padding: 70px 0; }
.section--loose  { padding: 150px 0 130px; }

.grid { display: grid; gap: 24px; }
.grid-2  { grid-template-columns: repeat(2, 1fr); }
.grid-3  { grid-template-columns: repeat(3, 1fr); }
.grid-4  { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* -------- Atmospheric backdrop --------
   Subtle neon glows pinned to corners; faint card-suit pattern. */

.bg-floor {
  position: relative;
  isolation: isolate;
}

.bg-floor::before {
  content: '';
  position: absolute;
  inset: -40% -10% -10% -10%;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 12% 10%, rgba(198, 66, 178, 0.22) 0%, transparent 60%),
    radial-gradient(50% 45% at 90% 20%, rgba(78, 200, 234, 0.18) 0%, transparent 65%),
    radial-gradient(70% 60% at 50% 110%, rgba(46, 232, 154, 0.12) 0%, transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}

.bg-floor::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><g fill='%23ffffff' fill-opacity='0.025'><path d='M40 30 a8 8 0 1 1 0 -0.01 z M40 30 q-6 14 0 22 q6 -8 0 -22 z'/><path d='M120 110 l8 -10 l8 10 l-4 0 l0 6 l-8 0 l0 -6 z'/><path d='M70 96 l4 -6 l4 6 l4 -6 l4 6 l-2 4 l-12 0 z'/></g></svg>");
  background-size: 280px 280px;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}

/* -------- Header / Nav -------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(6, 9, 15, 0.85) 0%, rgba(6, 9, 15, 0.55) 100%);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Anton', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand__logo {
  width: 38px;
  height: 38px;
  display: inline-block;
  object-fit: cover;
  border-radius: 9px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 20px -6px rgba(46, 232, 154, 0.35);
}

.brand__name { line-height: 1; }
.brand__name span { color: var(--gold); }

.site-nav { display: flex; gap: 4px; align-items: center; }
.site-nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.72);
  border-radius: var(--r-pill);
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav a:hover { color: var(--bone); background: rgba(255, 255, 255, 0.04); }
.site-nav a.is-active { color: var(--mint); }
.site-nav a.is-active::before {
  content: '';
  position: absolute;
  inset: auto 14px -2px 14px;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink) !important;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-warm) 100%);
  border-radius: var(--r-pill);
  box-shadow: 0 6px 18px -4px rgba(245, 200, 75, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -4px rgba(245, 200, 75, 0.55);
}
.nav-cta__short { display: none; }
@media (max-width: 600px) {
  .nav-cta { padding: 10px 14px; letter-spacing: 0.08em; }
  .nav-cta__full { display: none; }
  .nav-cta__short { display: inline; }
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--bone);
  border-radius: var(--r-md);
  padding: 0;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: currentColor;
  margin: 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; flex-direction: column; }
  .site-header.is-open .site-nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 16px 20px 24px;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .site-header.is-open .site-nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
}

/* -------- Buttons -------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--gold {
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-warm) 100%);
  box-shadow:
    0 16px 30px -10px rgba(245, 200, 75, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 22px 36px -10px rgba(245, 200, 75, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.5); }

.btn--mint {
  color: var(--ink);
  background: linear-gradient(180deg, var(--mint) 0%, var(--mint-deep) 100%);
  box-shadow:
    0 16px 30px -10px rgba(46, 232, 154, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--mint:hover { transform: translateY(-2px); }

.btn--ghost {
  color: var(--bone);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); }

.btn svg { width: 18px; height: 18px; }

.store-row { display: flex; flex-wrap: wrap; gap: 12px; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.store-btn:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.22); background: var(--surface-3); }

.store-btn__icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
}
.store-btn__icon svg { width: 28px; height: 28px; }
.store-btn__label {
  display: flex; flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.store-btn__label small {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
}
.store-btn__label strong {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--bone);
}

/* -------- Hero -------- */

.hero {
  position: relative;
  padding: 80px 0 100px;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.95fr);
  gap: 44px;
  align-items: center;
}

@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
}

.hero__copy h1 {
  margin-bottom: 1.2rem;
}

.hero__copy h1 .gold {
  background: linear-gradient(180deg, #FFE38A 0%, #F5C84B 55%, #C68A14 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__copy h1 .mint {
  background: linear-gradient(180deg, #6FF5C0 0%, #2EE89A 60%, #14B07A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lede {
  font-size: 1.18rem;
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 2rem;
  color: rgba(244, 239, 228, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: var(--mute);
  letter-spacing: 0.04em;
}
.hero__meta li { list-style: none; }
.hero__meta li::before { content: '✦'; color: var(--mint); margin-right: 8px; }
.hero__meta ul { padding: 0; margin: 0; display: flex; gap: 22px; flex-wrap: wrap; }

.hero__art {
  position: relative;
  margin-left: auto;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1.18 / 1;
  isolation: isolate;
  overflow: visible;
}

/* -------- Phone collage (hero-only iPhone-style frames) -------- */

.hero__halo {
  position: absolute;
  inset: 2% 0 0;
  background:
    radial-gradient(44% 48% at 50% 52%, rgba(46, 232, 154, 0.24) 0%, transparent 72%),
    radial-gradient(34% 42% at 25% 62%, rgba(198, 66, 178, 0.15) 0%, transparent 70%),
    radial-gradient(34% 42% at 76% 62%, rgba(78, 200, 234, 0.16) 0%, transparent 72%);
  filter: blur(26px);
  z-index: 0;
  pointer-events: none;
}

.phone-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.phone-collage::before {
  content: '';
  position: absolute;
  left: 14%;
  right: 10%;
  bottom: 4%;
  height: 22%;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(46, 232, 154, 0.24), rgba(46, 232, 154, 0.06) 62%, transparent 100%);
  filter: blur(12px);
  opacity: 0.9;
}

.hero-phone {
  position: absolute;
  margin: 0;
  aspect-ratio: 750 / 1334;
  transform-origin: 50% 84%;
  filter:
    drop-shadow(0 26px 26px rgba(0, 0, 0, 0.44))
    drop-shadow(0 44px 70px rgba(0, 0, 0, 0.34));
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.hero-phone__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 13% / 7.25%;
  padding: 3.1%;
  background:
    linear-gradient(145deg, rgba(122, 132, 150, 0.95) 0%, #202733 24%, #05070B 58%, #313A48 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.hero-phone__frame::after {
  content: '';
  position: absolute;
  inset: 3.1%;
  border-radius: 11% / 6.2%;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.12) 0 9%, transparent 10% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 76%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-phone__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11% / 6.2%;
  background: #06090f;
}

.hero-phone--center {
  top: 2%;
  left: 50%;
  width: 44%;
  z-index: 3;
  transform: translateX(-50%) translateY(-1%);
}

.hero-phone--left {
  top: 13%;
  left: 2%;
  width: 40%;
  z-index: 2;
  transform: rotate(-13deg);
  opacity: 0.94;
}

.hero-phone--right {
  top: 13%;
  right: 0;
  width: 40%;
  z-index: 2;
  transform: rotate(13deg);
  opacity: 0.94;
}

.hero__art:hover .hero-phone--center { transform: translateX(-50%) translateY(-4%); }
.hero__art:hover .hero-phone--left { transform: translate(-3%, -2%) rotate(-15deg); }
.hero__art:hover .hero-phone--right { transform: translate(3%, -2%) rotate(15deg); }

@media (max-width: 1100px) {
  .hero__art { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .hero__art { max-width: 430px; aspect-ratio: 1.12; }
  .hero-phone--center { top: 4%; width: 44%; }
  .hero-phone--left { top: 16%; left: 2%; width: 37%; transform: rotate(-11deg); }
  .hero-phone--right { top: 16%; right: 1%; width: 37%; transform: rotate(11deg); }
}

/* -------- Loose ornamental chip (legacy, kept for other pages) -------- */

.hero__chip {
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFE38A 0%, #F5C84B 40%, #8B6212 100%);
  box-shadow:
    0 24px 50px -10px rgba(245, 200, 75, 0.5),
    inset 0 0 0 6px rgba(0,0,0,0.25),
    inset 0 0 0 10px rgba(255,228,138,0.6),
    inset 0 0 0 16px rgba(0,0,0,0.3);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.hero__chip--mint {
  background: radial-gradient(circle at 30% 30%, #6FF5C0 0%, #2EE89A 40%, #0F8A60 100%);
  box-shadow:
    0 24px 50px -10px rgba(46, 232, 154, 0.5),
    inset 0 0 0 6px rgba(0,0,0,0.25),
    inset 0 0 0 10px rgba(111,245,192,0.6),
    inset 0 0 0 16px rgba(0,0,0,0.3);
}
.hero__chip--rouge {
  background: radial-gradient(circle at 30% 30%, #FF8A98 0%, #E5475E 40%, #7E1A2A 100%);
  box-shadow:
    0 24px 50px -10px rgba(229, 71, 94, 0.5),
    inset 0 0 0 6px rgba(0,0,0,0.25),
    inset 0 0 0 10px rgba(255,138,152,0.6),
    inset 0 0 0 16px rgba(0,0,0,0.3);
}

.hero__chip--a { top: 6%; left: -40px; animation-delay: 0s; }
.hero__chip--b { bottom: 14%; right: -34px; width: 110px; height: 110px; animation-delay: 1.5s; }
.hero__chip--c { top: 38%; right: -54px; width: 72px; height: 72px; animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

/* -------- Marquee / Live ticker -------- */

.ticker {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.ticker__track {
  display: flex;
  gap: 50px;
  padding: 16px 0;
  white-space: nowrap;
  animation: tick 60s linear infinite;
  width: max-content;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bone);
}
.ticker__item strong { font-weight: 700; }
.ticker__item .mint { color: var(--mint); }
.ticker__item .gold { color: var(--gold); }
.ticker__item .rouge { color: var(--rouge); }
.ticker__item .mute { color: var(--mute); font-weight: 500; }

.ticker__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rouge);
  box-shadow: 0 0 0 0 rgba(229, 71, 94, 0.7);
  animation: pulse 1.6s ease-out infinite;
}

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

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(229, 71, 94, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(229, 71, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 71, 94, 0); }
}

/* -------- Section header -------- */

.sec-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 60px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.sec-head__no {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 200, 75, 0.5);
  letter-spacing: -0.02em;
}

.sec-head__title { max-width: 760px; }
.sec-head__title h2 { margin-bottom: 0.5rem; }
.sec-head__title p { font-size: 1.1rem; color: rgba(244, 239, 228, 0.7); margin: 0; max-width: 620px; }

@media (max-width: 700px) {
  .sec-head { grid-template-columns: 1fr; gap: 8px; }
  .sec-head__no { font-size: 4rem; }
}

/* -------- Feature pillar grid (home) -------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1100px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  padding: 30px 26px 28px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.pillar:hover { transform: translateY(-6px); border-color: rgba(46, 232, 154, 0.4); }

.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 80% -20%, var(--glow, rgba(46, 232, 154, 0.18)) 0%, transparent 70%);
  pointer-events: none;
}

.pillar__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  margin-bottom: 22px;
  color: var(--mint);
}
.pillar__icon svg { width: 28px; height: 28px; }

.pillar.is-mint    { --glow: rgba(46, 232, 154, 0.20); }
.pillar.is-gold   .pillar__icon { color: var(--gold); }
.pillar.is-gold    { --glow: rgba(245, 200, 75, 0.20); }
.pillar.is-rouge  .pillar__icon { color: var(--rouge); }
.pillar.is-rouge   { --glow: rgba(229, 71, 94, 0.22); }
.pillar.is-cyan   .pillar__icon { color: var(--cyan); }
.pillar.is-cyan    { --glow: rgba(78, 200, 234, 0.22); }

.pillar h3 {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.pillar p {
  font-size: 0.94rem;
  color: rgba(244, 239, 228, 0.7);
  margin: 0 0 18px;
  line-height: 1.55;
}

.pillar__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
}
.pillar__cta::after {
  content: '→';
  transition: transform 0.2s ease;
}
.pillar:hover .pillar__cta::after { transform: translateX(4px); }

/* -------- Phone mockup -------- */

.phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 19.5;
  background: #000;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 50px 80px -30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
  margin: 0 auto;
}

.phone::before { /* dynamic island */
  content: '';
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  background: var(--ink);
  border-radius: 32px;
  overflow: hidden;
}

.phone__screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.phone.is-tilt-l { transform: rotate(-4deg); }
.phone.is-tilt-r { transform: rotate(4deg); }

.phone-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 660px;
}

.phone-stage .phone {
  transition: transform 0.4s ease;
}
.phone-stage .phone:hover { transform: rotate(0) translateY(-6px); }

.phone-stage--triple {
  gap: 16px;
}
.phone-stage--triple .phone--side {
  max-width: 250px;
  opacity: 0.85;
  filter: blur(0.4px) brightness(0.85);
}

@media (max-width: 900px) {
  .phone-stage--triple .phone--side { display: none; }
}

/* -------- Split feature row -------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}

.split--reverse > :first-child { order: 2; }

.split__copy h2 { margin-bottom: 1rem; }
.split__copy p { font-size: 1.08rem; max-width: 540px; }

.split__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.split__list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 0.96rem;
  color: rgba(244, 239, 228, 0.82);
}
.split__list li::before {
  content: '';
  width: 22px; height: 22px;
  margin-top: 3px;
  background: var(--mint-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%232EE89A' d='M6.3 10.7 3.6 8l-1 1L6.3 12.7 13 6 12 5z'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; padding: 30px 0; }
  .split--reverse > :first-child { order: 0; }
}

/* -------- Game cards (casino floor) -------- */

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 1000px) { .game-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .game-grid { grid-template-columns: 1fr; } }

.game {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.game:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.18); }

.game__art {
  aspect-ratio: 5 / 4;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.game__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.game:hover .game__art img { transform: scale(1.04); }

.game__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,9,15,0.85) 100%);
}

.game__tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--mint);
  border-radius: var(--r-pill);
}
.game__tag.is-gold { background: var(--gold); }
.game__tag.is-rouge { background: var(--rouge); color: var(--bone); }
.game__tag.is-violet { background: var(--violet); color: var(--bone); }

.game__body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game__title {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.game__sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.game__body p {
  font-size: 0.94rem;
  color: rgba(244, 239, 228, 0.7);
  margin: 0 0 18px;
  line-height: 1.55;
}

.game__chips {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.game__chip {
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--mute);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
}

/* -------- Stat strip -------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 800px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

.stat {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
@media (max-width: 800px) {
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

.stat__no {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--bone);
  margin-bottom: 8px;
}
.stat__no.gold { color: var(--gold); }
.stat__no.mint { color: var(--mint); }

.stat__label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

/* -------- Quote / pull quote -------- */

.pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--bone);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.pull-quote::before { content: '“'; color: var(--gold); margin-right: 4px; }
.pull-quote::after  { content: '”'; color: var(--gold); margin-left: 4px; }

/* -------- Loan Shark callout -------- */

.callout {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, #1A0C2E 0%, #281530 60%, #0E1421 100%);
  border-radius: var(--r-xl);
  border: 1px solid rgba(245, 200, 75, 0.18);
  overflow: hidden;
}
.callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 80% 20%, rgba(245, 200, 75, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.callout::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 200, 75, 0.4), transparent 50%, rgba(198, 66, 178, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

.callout__art {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.callout__body { position: relative; z-index: 1; }
.callout__body h2 { margin-bottom: 18px; }

@media (max-width: 900px) {
  .callout { grid-template-columns: 1fr; padding: 36px; }
}

/* -------- Big numbers / leaderboard preview -------- */

.leaderboard-list {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.leader-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.leader-row:last-child { border-bottom: none; }
.leader-row__rank {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  color: var(--mute);
}
.leader-row__user { font-weight: 600; min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.leader-row__amt {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.leader-row--1 { background: linear-gradient(90deg, color-mix(in srgb, var(--gold) 14%, transparent), transparent 60%); }
.leader-row--2 { background: linear-gradient(90deg, color-mix(in srgb, var(--cyan) 12%, transparent), transparent 60%); }
.leader-row--3 { background: linear-gradient(90deg, color-mix(in srgb, var(--rouge) 12%, transparent), transparent 60%); }
.leader-row--1 .leader-row__rank { color: var(--gold); }
.leader-row--2 .leader-row__rank { color: var(--cyan); }
.leader-row--3 .leader-row__rank { color: var(--rouge); }

/* -------- Mini odds card -------- */

.odds-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.odds-card__matchup {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: rgba(244, 239, 228, 0.85);
}
.odds-card__matchup span { color: var(--mute); font-size: 0.78rem; }

.odds-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.odds-row__team { font-weight: 500; }
.odds-row__line { font-family: 'Anton', sans-serif; font-size: 1rem; color: var(--mint); letter-spacing: 0.02em; }

/* -------- Bet ticket -------- */

.ticket {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 24px 26px 26px;
  position: relative;
}
.ticket::before, .ticket::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  background: var(--ink);
  border-radius: 50%;
}
.ticket::before { left: -11px; top: 50%; transform: translateY(-50%); }
.ticket::after  { right: -11px; top: 50%; transform: translateY(-50%); }

.ticket__header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--line-strong);
}
.ticket__type { font-family: 'Anton', sans-serif; font-size: 1.4rem; letter-spacing: 0.04em; }
.ticket__status {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  padding: 4px 10px;
  border: 1px solid var(--mint);
  border-radius: var(--r-pill);
}

.ticket__leg {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
}
.ticket__leg-game { color: var(--mute); font-size: 0.78rem; }
.ticket__leg-pick { font-weight: 600; }
.ticket__leg-line { font-family: 'Anton', sans-serif; font-size: 1.1rem; color: var(--mint); }

.ticket__totals {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
  display: flex; justify-content: space-between; align-items: center;
}
.ticket__totals strong { font-family: 'Anton', sans-serif; font-size: 1.4rem; color: var(--gold); letter-spacing: 0.02em; }
.ticket__totals small { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }

/* -------- Showcase row of phones -------- */

.showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: end;
}
.showcase .phone {
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.showcase .phone:nth-child(2) { transform: translateY(-30px); }
.showcase .phone:nth-child(4) { transform: translateY(-30px); }
.showcase .phone:nth-child(3) { transform: translateY(-60px); }

@media (max-width: 1100px) {
  .showcase { grid-template-columns: repeat(3, 1fr); }
  .showcase .phone:nth-child(4),
  .showcase .phone:nth-child(5) { display: none; }
}
@media (max-width: 700px) {
  .showcase { grid-template-columns: 1fr; }
  .showcase .phone { transform: none !important; max-width: 280px; }
  .showcase .phone:nth-child(2),
  .showcase .phone:nth-child(3),
  .showcase .phone:nth-child(4),
  .showcase .phone:nth-child(5) { display: none; }
}

/* -------- Diagonal art band -------- */

.art-band {
  position: relative;
  margin: 80px 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.art-band__track {
  display: flex;
  gap: 22px;
  padding: 30px 0;
  animation: drift 80s linear infinite;
  width: max-content;
}
.art-band__card {
  position: relative;
  width: 240px;
  height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-lift);
}
.art-band__card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.art-band__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 9, 15, 0.8) 100%);
}
.art-band__card span {
  position: absolute;
  left: 18px; bottom: 14px;
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  z-index: 1;
}

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

/* -------- Page hero (interior pages) -------- */

.page-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1000px) { .page-hero__grid { grid-template-columns: 1fr; } }

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  margin-bottom: 1rem;
}
.page-hero__art {
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
  aspect-ratio: 9/16;
  box-shadow: var(--shadow-lift);
}
.page-hero__art img { width: 100%; height: 100%; object-fit: cover; }

/* -------- League badges -------- */

.leagues {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.league {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
}
.league svg { width: 16px; height: 16px; color: var(--mint); }

/* -------- Track list (racing) -------- */

.track-list {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.track-row {
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.track-row:last-child { border-bottom: none; }
.track-row__icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-3);
  border-radius: 50%;
  color: var(--mint);
}
.track-row__icon svg { width: 18px; height: 18px; }
.track-row__name { font-weight: 600; }
.track-row__meta { font-size: 0.78rem; color: var(--mute); margin-top: 2px; }
.track-row__status {
  font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(46, 232, 154, 0.14);
  color: var(--mint);
}
.track-row__post {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
}

/* -------- Trophy card mini -------- */

.trophy {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 22px 20px 16px;
  text-align: center;
}
.trophy__cup {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 30%, #FFE38A 0%, #E5A82A 70%, #8B6212 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(0,0,0,0.18), 0 12px 20px -6px rgba(245, 200, 75, 0.45);
  color: #4A2F08;
}
.trophy__cup svg { width: 28px; height: 28px; }
.trophy__tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}
.trophy__date {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.trophy__amt {
  margin-top: 10px;
  padding: 6px 0;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
}

/* -------- Footer -------- */

.site-footer {
  position: relative;
  margin-top: 100px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
  padding: 80px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { color: var(--mute); font-size: 0.92rem; max-width: 360px; }

.footer__col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mute);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a {
  font-size: 0.94rem;
  color: rgba(244, 239, 228, 0.78);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--mint); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--mute);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom .socials {
  display: flex;
  gap: 12px;
}
.footer__bottom .socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--bone);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.footer__bottom .socials a:hover {
  color: var(--mint); border-color: rgba(46, 232, 154, 0.5);
}
.footer__bottom .socials svg { width: 16px; height: 16px; }

/* -------- Reveal-on-scroll -------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track,
  .art-band__track,
  .hero__chip,
  .ticker__dot { animation: none !important; }
}

/* -------- Misc helpers -------- */

.text-center { text-align: center; }
.gold  { color: var(--gold); }
.mint  { color: var(--mint); }
.rouge { color: var(--rouge); }
.mute  { color: var(--mute); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(46, 232, 154, 0.1);
  border: 1px solid rgba(46, 232, 154, 0.3);
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}
.tag.gold {
  background: rgba(245, 200, 75, 0.1);
  border-color: rgba(245, 200, 75, 0.3);
  color: var(--gold);
}
.tag.rouge {
  background: rgba(229, 71, 94, 0.1);
  border-color: rgba(229, 71, 94, 0.3);
  color: var(--rouge);
}

.divider {
  height: 1px;
  width: 100%;
  background: var(--line);
  margin: 60px 0;
}

/* -------- Live game card -------- */

.live-card {
  position: relative;
  padding: 22px 24px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
}
.live-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.live-card__name { font-family: 'Anton', sans-serif; font-size: 1.3rem; letter-spacing: 0.04em; }
.live-card__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rouge);
}
.live-card__live::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rouge);
  animation: pulse 1.6s ease-out infinite;
}
.live-card__seats {
  display: flex; gap: 6px; margin-bottom: 14px;
}
.live-card__seat {
  flex: 1; height: 6px;
  border-radius: 3px;
  background: var(--surface-3);
}
.live-card__seat.is-taken { background: var(--mint); }
.live-card__meta { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--mute); }
.live-card__meta strong { color: var(--gold); font-family: 'Anton', sans-serif; font-size: 1rem; letter-spacing: 0.02em; }

/* -------- Big CTA band -------- */

.cta-band {
  position: relative;
  margin: 80px 0 0;
  padding: 90px 60px;
  text-align: center;
  background: radial-gradient(80% 100% at 50% 0%, rgba(46, 232, 154, 0.12) 0%, transparent 70%),
              radial-gradient(60% 80% at 50% 100%, rgba(245, 200, 75, 0.18) 0%, transparent 70%),
              linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--mint) 0%, transparent 40%, var(--gold) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.25;
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { font-size: 1.1rem; max-width: 620px; margin: 0 auto 2rem; }

@media (max-width: 700px) {
  .cta-band { padding: 60px 24px; }
}
