/* ============================================
   FOOTY ORACLE — Editorial Stadium Edition
   ============================================ */

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse at top, #0a3019 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, #06200f 0%, transparent 50%),
    #040506;
  background-attachment: fixed;
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

/* shared italic accent */
.serif-italic {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.01em;
}

/* ═══ Pitch background + lights ═══ */
.pitch-lines {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(63,209,122,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,209,122,0.6) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.floodlight {
  position: fixed; top: -200px; left: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center,
    rgba(63,209,122,0.32) 0%, rgba(63,209,122,0.08) 30%, transparent 70%);
  pointer-events: none; z-index: 0;
  filter: blur(70px);
}
.floodlight--right {
  left: auto; right: -180px; top: 320px;
  background: radial-gradient(circle at center,
    rgba(251,191,36,0.22) 0%, rgba(251,191,36,0.06) 30%, transparent 70%);
}
.hero-glow {
  position: absolute; top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  width: 1200px; height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(63,209,122,0.18) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
  filter: blur(50px);
}

/* ═══ Section shell ═══ */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .section-inner { padding: 0 3rem; }
}
@media (min-width: 1280px) {
  .section-inner { padding: 0 4rem; }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
.section-head--center {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 5rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin-top: 0.75rem;
}

/* ═══ Buttons ═══ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1ea659 0%, #157a3f 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(63,209,122,0.4);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 8px 24px -8px rgba(30,166,89,0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 14px 32px -10px rgba(30,166,89,0.7);
}
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
}
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fde047 0%, #d97706 100%);
  color: #03150a;
  font-weight: 800;
  font-size: 0.92rem;
  border: 1px solid rgba(253,224,71,0.4);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 12px 32px -10px rgba(251,191,36,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-gold:hover { transform: translateY(-1px); }
.btn-gold:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-lg { padding: 1rem 1.85rem; font-size: 0.95rem; }

/* ═══ NAV ═══ */
.site-nav {
  position: sticky;
  top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(4,5,6,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-inner { padding: 1.1rem 3rem; } }
.brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.13em;
}
.brand-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(63,209,122,0.7);
  margin-top: 3px;
}
.nav-link { position: relative; transition: color 0.2s ease; }
.nav-link:hover { color: #fff; }
.nav-link::after {
  content: ""; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: #3fd17a;
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }
.logo-mark { filter: drop-shadow(0 4px 16px rgba(63,209,122,0.4)); }

.network-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.25);
  color: #fde047;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.network-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fde047;
  box-shadow: 0 0 10px #fde047;
  animation: pulse 2s ease-in-out infinite;
}
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 12px #ef4444;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.45;} }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 1.5rem clamp(8rem, 14vw, 12rem);
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1280px) { .hero { padding-left: 4rem; padding-right: 4rem; } }

.hero-grid {
  position: relative; z-index: 2;
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 6rem; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(63,209,122,0.3);
  background: rgba(15,79,41,0.25);
  color: #3fd17a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero-eyebrow em {
  font-style: normal;
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: #fde047;
  letter-spacing: 0;
  margin: 0 0.15rem;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.012em;
}
.hero-title .serif-italic { font-size: 0.92em; padding-right: 0.05em; }

/* Bigger Fraunces italic accent for hero verbs — typographic signature */
.hero-italic {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.025em;
  color: #3fd17a;
  padding-right: 0.04em;
  text-shadow: 0 0 40px rgba(63, 209, 122, 0.25);
}

.title-grad {
  background: linear-gradient(135deg, #3fd17a 0%, #fde047 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 50px rgba(63,209,122,0.25);
}

.hero-lede {
  margin-top: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.66);
  max-width: 36rem;
}
.hero-lede em {
  font-style: italic;
  font-family: "Fraunces", serif;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}
@media (min-width: 768px) { .hero-lede { font-size: 1.15rem; } }

.hero-cta-row {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 36rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.01em;
  line-height: 1;
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* HERO image stack — looser composition, more breathing room */
.hero-stack {
  position: relative;
  height: clamp(540px, 62vw, 740px);
  padding-right: 2%;
}
.hero-stack figure { margin: 0; overflow: hidden; }
.hero-stack img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.hero-stack figure:hover img { transform: scale(1.04); }
.hero-img-1 {
  position: absolute;
  top: 4%; right: 0;
  width: 70%; height: 54%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.hero-img-1 figcaption {
  position: absolute;
  bottom: 1rem; left: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.5);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-img-2 {
  position: absolute;
  bottom: 22%; left: 0;
  width: 40%; height: 36%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.55);
  z-index: 2;
}
.hero-img-3 {
  position: absolute;
  bottom: 4%; right: 6%;
  width: 34%; height: 28%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.5);
}

.hero-fixture {
  position: absolute;
  bottom: -56px; left: 10%; right: 10%;
  z-index: 5;
  background: rgba(10,13,16,0.94);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 30px 70px -22px rgba(0,0,0,0.75);
}

/* ═══ MARQUEE ═══ */
.marquee {
  margin: 4rem 0;
  padding: 2rem 0;
  border-block: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  animation: marquee 40s linear infinite;
}
.marquee-track .dot-sep {
  font-size: 0.6rem;
  color: #3fd17a;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ EDITORIAL INTRO ═══ */
.editorial-intro {
  padding: clamp(5rem, 10vw, 9rem) 1.5rem;
}
@media (min-width: 768px) { .editorial-intro { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1280px) { .editorial-intro { padding-left: 4rem; padding-right: 4rem; } }

.ed-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .ed-grid { grid-template-columns: 1.1fr 1fr; gap: 6rem; }
}

.ed-cover {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px -25px rgba(0,0,0,0.7);
}
.ed-cover img { width: 100%; height: 100%; object-fit: cover; }
.ed-cover figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-transform: uppercase;
}
.ed-issue { color: #fde047; }
.ed-date { color: rgba(255,255,255,0.6); }

.ed-text { max-width: 32rem; }
.ed-headline {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin-top: 0.75rem;
}
.ed-body {
  margin-top: 1.5rem;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}
.ed-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #3fd17a;
  border-bottom: 1px solid rgba(63,209,122,0.3);
  padding-bottom: 0.4rem;
  transition: gap 0.25s ease;
}
.ed-link:hover { gap: 0.85rem; }

/* ═══ MATCHES ═══ */
.section-fixtures {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.matches-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .matches-grid { grid-template-columns: repeat(2, 1fr); gap: 2.25rem; } }
@media (min-width: 1280px) { .matches-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }

.filter-pill {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: all 0.2s ease;
}
.filter-pill:hover { color: #fff; background: rgba(255,255,255,0.08); }
.filter-pill.is-active {
  background: linear-gradient(135deg, #1ea659, #157a3f);
  border-color: rgba(63,209,122,0.5);
  color: #fff;
}

/* match card */
.match-card {
  position: relative;
  background: linear-gradient(180deg, rgba(17,22,27,0.95) 0%, rgba(10,13,16,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.match-card:hover {
  transform: translateY(-6px);
  border-color: rgba(63,209,122,0.3);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 0 40px -12px rgba(63,209,122,0.3);
}
.match-card__hero { position: relative; height: 160px; overflow: hidden; }
.match-card__hero img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.match-card:hover .match-card__hero img { transform: scale(1.06); opacity: 0.75; }
.match-card__hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,13,16,1) 95%);
}
.match-card__league {
  position: absolute; top: 1rem; left: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
}
.match-card__time {
  position: absolute; top: 1rem; right: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  z-index: 2;
  font-family: "JetBrains Mono", monospace;
}
.match-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  margin-top: -36px;
  position: relative; z-index: 2;
}
.match-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.match-card__team { text-align: center; }
.match-card__team .crest-mini {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin: 0 auto 0.6rem;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
}
.match-card__team .crest-mini .crest-img { width: 100%; height: 100%; }
.match-card__team .name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.match-card__vs {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
}

.match-card__odds {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.match-card__odd {
  text-align: center;
  padding: 0.65rem 0.25rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s ease;
}
.match-card__odd b {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.match-card__odd.is-active {
  background: linear-gradient(135deg, rgba(63,209,122,0.2), rgba(251,191,36,0.12));
  border-color: rgba(63,209,122,0.4);
  color: #fff;
}
.match-card__odd.is-active b { color: #fde047; }

.match-card__footer {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.7rem;
}
.match-card__pool { color: rgba(255,255,255,0.5); }
.match-card__pool b {
  color: #3fd17a;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  margin-left: 4px;
}
.match-card__action {
  color: #3fd17a;
  font-weight: 700;
  display: flex; align-items: center; gap: 4px;
  letter-spacing: 0.05em;
}

/* hero featured (in hero-fixture wrap) odds buttons */
.odds-btn {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  padding: 0.85rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}
.odds-btn span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}
.odds-btn b {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: #fde047;
}
.odds-btn:hover {
  background: rgba(63,209,122,0.08);
  border-color: rgba(63,209,122,0.3);
}
.odds-btn.is-active {
  background: linear-gradient(135deg, rgba(63,209,122,0.25), rgba(251,191,36,0.15));
  border-color: rgba(63,209,122,0.5);
}

/* hero featured fixture frame */
.hero-fixture .crest {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5));
}
.crest-img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
  transition: transform 0.25s ease;
}
.crest-img:hover { transform: scale(1.06); }
.crest-img.crest--lg { width: 64px; height: 64px; }
.crest-img.crest-fallback {
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
}

/* ═══ QUOTE BAND ═══ */
.quote-band {
  position: relative;
  padding: clamp(8rem, 14vw, 12rem) 1.5rem;
  overflow: hidden;
  margin: 4rem 0;
}
.quote-band__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.8);
}
.quote-band__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(4,5,6,0.85) 75%),
    linear-gradient(180deg, rgba(4,5,6,0.5) 0%, rgba(4,5,6,0.5) 100%);
}
.quote-band__inner {
  position: relative; z-index: 2;
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}
.quote-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.005em;
  margin: 1rem 0 1.5rem;
}
.quote-text .serif-italic { font-size: 0.92em; }
.quote-attr {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* ═══ ORACLE ═══ */
.section-oracle {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.oracle-head {
  max-width: 38rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.oracle-sub {
  margin-top: 1.25rem;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.oracle-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(17,22,27,0.85) 0%, rgba(10,13,16,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: clamp(1.75rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.oracle-shell::before {
  content: ""; position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle at center, rgba(251,191,36,0.15) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .oracle-shell { grid-template-columns: 1fr 1.4fr; gap: 4rem; }
}

.oracle-meta-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.oracle-fixture-empty {
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
}
.oracle-fixture-active {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  background: rgba(63,209,122,0.08);
  border: 1px solid rgba(63,209,122,0.3);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}
.oracle-fixture-active .name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.oracle-fixture-active .vs {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: #fde047;
}
.oracle-fix-team {
  display: flex; align-items: center; gap: 0.7rem;
}
.oracle-fix-team .crest-img { flex-shrink: 0; }

.oracle-textarea {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.1rem;
  color: #fff;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.oracle-textarea::placeholder { color: rgba(255,255,255,0.3); }
.oracle-textarea:focus {
  outline: none;
  background: rgba(0,0,0,0.5);
  border-color: rgba(63,209,122,0.5);
}

.oracle-side-img {
  margin: 2.5rem 0 0; padding: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.06);
}
.oracle-side-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(1.1);
}

.oracle-right-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ai-avatar {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fde047 0%, #d97706 100%);
  display: grid; place-items: center;
  font-family: "Bebas Neue", sans-serif;
  color: #03150a;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.ai-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.ai-status.is-thinking { color: #fde047; }
.ai-status.is-thinking::before {
  content: "● ";
  animation: pulse 1s ease-in-out infinite;
}

.oracle-output {
  min-height: 320px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  white-space: pre-wrap;
  font-family: "JetBrains Mono", "Inter", monospace;
  position: relative;
  overflow: auto;
  max-height: 540px;
}
.oracle-placeholder { text-align: center; padding: 3.5rem 0; }
.oracle-cursor::after {
  content: "▊";
  color: #3fd17a;
  animation: blink 1s steps(2) infinite;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

.oracle-verdict {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
}
.verdict-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 0.85rem;
  text-align: center;
}
.verdict-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.verdict-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}
.verdict-bar {
  display: flex;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.verdict-bar .bar { transition: width 0.6s cubic-bezier(0.4,0,0.2,1); }
.bar--home { background: linear-gradient(90deg, #1ea659, #3fd17a); }
.bar--draw { background: linear-gradient(90deg, #d97706, #fde047); }
.bar--away { background: linear-gradient(90deg, #1d4ed8, #60a5fa); }

/* ═══ BREATHING BAND ═══ */
.breath {
  background: #040506;
  padding: clamp(7rem, 13vw, 10rem) 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.breath::before, .breath::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(180deg, transparent, rgba(63, 209, 122, 0.35), transparent);
}
.breath::before { top: 0; }
.breath::after { bottom: 0; }
.breath-line {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  max-width: 38rem;
  margin: 0;
}
.breath-line .serif-italic {
  color: rgba(255, 255, 255, 0.85);
  display: inline-block;
  font-size: 1.05em;
}

/* ═══ MOSAIC ═══ */
.mosaic { padding: clamp(6rem, 12vw, 10rem) 0; }
.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1rem;
}
@media (min-width: 768px) {
  .mosaic-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 320px 240px;
    gap: 1.25rem;
  }
}

.mosaic-cell {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(17,22,27,0.5);
}
.mosaic-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.mosaic-cell:hover img { transform: scale(1.06); }
.mosaic-cell figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.mosaic-tag {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  font-weight: 800;
  text-transform: uppercase;
  color: #fde047;
  margin-bottom: 0.4rem;
}
.mosaic-cap {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.mosaic-cell--lg { grid-row: span 2; min-height: 380px; }
.mosaic-cell--wide { grid-column: span 2; }
@media (max-width: 767px) {
  .mosaic-cell--lg, .mosaic-cell--wide { grid-row: auto; grid-column: auto; min-height: 240px; }
}

/* ═══ LEADERBOARD ═══ */
.section-leaderboard { padding: clamp(5rem, 10vw, 9rem) 0; }
.leaderboard-shell {
  background: linear-gradient(180deg, rgba(17,22,27,0.85), rgba(10,13,16,0.85));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  overflow: hidden;
}
.leaderboard-header {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.75rem;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) {
  .leaderboard-header { grid-template-columns: 70px 2fr 1fr 1fr 1fr; }
}
.leaderboard-row {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 1rem;
  padding: 1.15rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: background 0.2s ease;
}
@media (min-width: 768px) {
  .leaderboard-row { grid-template-columns: 70px 2fr 1fr 1fr 1fr; }
}
.leaderboard-row:hover { background: rgba(63,209,122,0.05); }
.leaderboard-row .rank {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.leaderboard-row.top-1 .rank { color: #fde047; }
.leaderboard-row.top-2 .rank { color: #d4d4d4; }
.leaderboard-row.top-3 .rank { color: #d97706; }
.leaderboard-row .addr {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}
.leaderboard-row .addr-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}
.leaderboard-row .profit {
  text-align: right;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: #3fd17a;
  letter-spacing: 0.02em;
}

/* ═══ HOW IT WORKS ═══ */
.section-how { padding: clamp(6rem, 12vw, 10rem) 0; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.how-card {
  position: relative;
  padding: 2.25rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17,22,27,0.85), rgba(10,13,16,0.85));
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.how-card:hover { border-color: rgba(63,209,122,0.3); transform: translateY(-4px); }
.how-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.5rem;
  background: linear-gradient(135deg, #3fd17a, #fde047);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.how-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  margin-top: 0.85rem;
}
.how-text {
  margin-top: 1rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}
.how-img {
  margin: 1.5rem 0 0; padding: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.06);
}
.how-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.1);
  transition: transform 0.6s ease;
}
.how-card:hover .how-img img { transform: scale(1.05); }

/* ═══ CTA BAND ═══ */
.cta-band {
  position: relative;
  padding: clamp(7rem, 14vw, 11rem) 1.5rem;
  overflow: hidden;
  margin-top: 4rem;
}
.cta-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.9);
}
.cta-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(4,5,6,0.7) 80%),
    linear-gradient(180deg, rgba(4,5,6,0.4), rgba(4,5,6,0.6));
}
.cta-inner {
  position: relative; z-index: 2;
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.005em;
}

/* ═══ FOOTER ═══ */
.site-footer {
  background: rgba(4,5,6,0.5);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5rem 0 2.5rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem; }
}
.footer-tag {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.5);
  font-family: "Fraunces", serif;
  font-style: italic;
  line-height: 1.5;
  font-size: 0.95rem;
}
.footer-h {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}
.site-footer a:hover { color: #3fd17a; }
.footer-rule {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0;
}
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ═══ Toast ═══ */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translate(-50%, 200%);
  background: linear-gradient(135deg, rgba(17,22,27,0.98), rgba(10,13,16,0.98));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(63,209,122,0.3);
  border-radius: 14px;
  padding: 0.95rem 1.6rem;
  color: #fff;
  font-size: 0.875rem;
  z-index: 100;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.6);
  max-width: 90%;
}
.toast.is-show { transform: translate(-50%, 0); }
.toast.is-error { border-color: rgba(239,68,68,0.4); }
.toast.is-success { border-color: rgba(63,209,122,0.5); }

/* ═══ Scrollbar ═══ */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
::-webkit-scrollbar-thumb {
  background: rgba(63,209,122,0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(63,209,122,0.4); }
