:root {
  --bg: #020a12;
  --bg-deep: #01060b;
  --navy: #00182a;
  --panel: #061523;
  --panel-2: #081b2c;
  --line: #1d3547;
  --line-soft: rgba(124,166,198,.18);
  --white: #fff;
  --ice: #f6f8fa;
  --muted: #a7b7c4;
  --red: #e63946;
  --red-hot: #f52038;
  --red-dark: #a90e21;
  --blue: #114da0;
  --blue-hot: #1674d1;
  --cyan: #24c8f2;
  --green: #31e081;
  --gold: #f2a927;
  --font-display: "Bebas Neue",Impact,"Arial Narrow",sans-serif;
  --font-body: "Montserrat",Arial,sans-serif;
  --shadow: 0 24px 80px rgba(0,0,0,.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 22% -8%,rgba(23,93,151,.18),transparent 31%),
  radial-gradient(circle at 85% 18%,rgba(188,16,38,.08),transparent 25%),
  linear-gradient(180deg,#030d17 0,#020910 64%,#01070c 100%);
}

.site-texture {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.22) .55px,transparent .6px);
  background-size: 4px 4px;
  mask-image: linear-gradient(to bottom,#000,transparent 92%);
}

button,a {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

/* V1.10.4 fail-safe: this CTA is mobile-only.
   v161.css explicitly enables it on small screens. */
.mobile-sticky-predictions {
  display: none;
}

#home,
#rankings,
#leagues {
  scroll-margin-top: 112px;
}

/* Header */

.site-header {
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(180deg,rgba(3,11,19,.97),rgba(2,9,15,.95));
  border-bottom: 1px solid rgba(126,166,194,.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(36,200,242,.18),transparent);
}

.header-inner {
  width: min(1160px,calc(100% - 34px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  width: 154px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  overflow: visible;
  padding-top: 8px;
}

.brand img {
  width: 149px;
  height: auto;
  display: block;
  transform: translateY(15px);
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.38));
  transition: transform .18s ease,filter .18s ease;
}

.brand:hover img {
  transform: translateY(16px) scale(1.02);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.42));
}

.desktop-nav {
  margin-left: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.desktop-nav a,.desktop-nav button {
  position: relative;
  height: 44px;
  border: 1px solid rgba(78,115,143,.20);
  background: linear-gradient(180deg,rgba(9,25,39,.82),rgba(6,18,29,.82));
  color: #edf3f7;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: .62px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: color .18s ease,transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease;
}

.desktop-nav a svg,.desktop-nav button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.desktop-nav a:hover,.desktop-nav button:hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(36,200,242,.38);
  background: linear-gradient(180deg,rgba(10,30,47,.94),rgba(7,20,32,.94));
  box-shadow: 0 12px 28px rgba(0,0,0,.24),0 0 0 1px rgba(36,200,242,.08);
}

.desktop-nav .active {
  color: #fff;
  border-color: rgba(245,32,56,.38);
  background: linear-gradient(180deg,rgba(19,34,52,.96),rgba(8,20,31,.96));
  box-shadow: 0 14px 32px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.06),0 0 0 1px rgba(245,32,56,.06);
}

.desktop-nav .active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--red-hot);
  box-shadow: 0 0 14px rgba(245,32,56,.40);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification-btn,.avatar-btn {
  border: 0;
  background: transparent;
  color: #fff;
}

.notification-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: linear-gradient(180deg,rgba(11,28,43,.92),rgba(7,18,28,.92));
  border: 1px solid rgba(78,115,143,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.notification-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notification-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 8px rgba(245,32,56,.9);
}

.avatar-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg,#304a5e,#121e29);
  border: 1px solid rgba(120,159,187,.26);
  font-size: 10px;
  font-weight: 800;
  box-shadow: inset 0 0 18px rgba(255,255,255,.04),0 8px 16px rgba(0,0,0,.18);
  overflow: hidden;
  display: grid;
  place-items: center;
}

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

/* Main */

.page-shell {
  width: min(1160px,calc(100% - 34px));
  margin: 24px auto 54px;
}

.match-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid #284a64;
  border-radius: 12px;
  background: linear-gradient(180deg,rgba(1,8,15,.05) 0,rgba(3,15,27,.18) 34%,rgba(2,12,20,.90) 100%),
  linear-gradient(90deg,rgba(0,24,42,.86),rgba(0,26,50,.46),rgba(0,24,42,.86)),
  url("assets/arena-bg-clean.webp") center 39%/cover no-repeat;
  box-shadow: 0 28px 80px rgba(0,0,0,.30),0 0 0 1px rgba(36,200,242,.04);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(120deg,transparent 0 72%,rgba(17,77,160,.08) 78%,transparent 84%),radial-gradient(circle at 80% 0,rgba(36,200,242,.07),transparent 24%);
}

.match-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%,rgba(36,124,201,.26),transparent 28%),
  radial-gradient(circle at 50% 0,rgba(255,255,255,.14),transparent 16%),
  radial-gradient(circle at 23% 48%,rgba(36,200,242,.06),transparent 16%),
  radial-gradient(circle at 77% 49%,rgba(245,32,56,.06),transparent 16%),
  radial-gradient(circle at 50% 74%,rgba(245,32,56,.14),transparent 22%),
  linear-gradient(180deg,rgba(5,15,24,.01) 0 10%,transparent 26% 71%,rgba(0,0,0,.33) 100%);
  pointer-events: none;
}

.match-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -132px;
  width: 770px;
  height: 220px;
  border: 1px solid rgba(104,169,218,.20);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 -1px 0 rgba(255,255,255,.03),0 -20px 60px rgba(245,32,56,.08);
}

.match-ice-lines {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  opacity: .24;
  background: linear-gradient(90deg,transparent 49.8%,rgba(212,43,64,.55) 50%,transparent 50.2%),
  radial-gradient(ellipse at 50% 103%,transparent 0 41%,rgba(55,121,176,.25) 41.3% 41.7%,transparent 42%);
  pointer-events: none;
}

.spark {
  position: absolute;
  height: 4px;
  border-radius: 99px;
  transform: rotate(-18deg);
  opacity: .85;
  box-shadow: 0 0 10px currentColor;
}

.spark-r1 {
  width: 26px;
  background: var(--red-hot);
  color: var(--red-hot);
  right: 55px;
  top: 110px;
}

.spark-r2 {
  width: 13px;
  background: var(--red-hot);
  color: var(--red-hot);
  left: 59px;
  top: 255px;
}

.spark-b1 {
  width: 19px;
  background: var(--cyan);
  color: var(--cyan);
  right: 115px;
  top: 214px;
}

.spark-b2 {
  width: 10px;
  background: var(--cyan);
  color: var(--cyan);
  left: 115px;
  top: 98px;
}

.match-card-inner {
  position: relative;
  z-index: 2;
  min-height: 470px;
  padding: 28px 34px 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-kicker {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1.4px;
  color: #ff5369;
  margin: 0 0 22px;
  padding: 0 10px;
  text-shadow: 0 0 18px rgba(245,32,56,.40),0 0 34px rgba(245,32,56,.18),0 2px 0 rgba(70,9,16,.40),0 0 2px rgba(255,255,255,.22);
}

.section-kicker::before,.section-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,rgba(245,32,56,0),rgba(255,72,95,.98));
  box-shadow: 0 0 18px rgba(245,32,56,.34),0 0 28px rgba(245,32,56,.12);
}

.section-kicker::before {
  right: 100%;
  margin-right: 14px;
  transform: translateY(-50%);
}

.section-kicker::after {
  left: 100%;
  margin-left: 14px;
  transform: translateY(-50%) scaleX(-1);
}

.match-card .section-kicker {
  background: linear-gradient(180deg,rgba(245,32,56,.10),rgba(245,32,56,.03));
  border: 1px solid rgba(245,32,56,.12);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04),0 10px 28px rgba(0,0,0,.14);
}

.matchup-grid {
  width: min(720px,100%);
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
  gap: 16px;
  margin: auto 0 0;
}

.team-block {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.crest-wrap {
  position: relative;
  height: 130px;
  width: 180px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 15px 18px rgba(0,0,0,.34));
}

.crest-wrap::before {
  content: "";
  position: absolute;
  inset: 10px 22px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(255,255,255,.08) 0,rgba(36,200,242,.10) 34%,transparent 72%);
  box-shadow: 0 0 34px rgba(36,200,242,.06);
  pointer-events: none;
}

.crest-wrap img {
  position: relative;
  z-index: 1;
  max-width: 172px;
  max-height: 122px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.36)) drop-shadow(0 0 10px rgba(255,255,255,.04)) drop-shadow(0 0 16px rgba(36,200,242,.04));
}

.rival-crest img {
  max-width: 122px;
  max-height: 122px;
}

.team-city {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1.05px;
  color: #f7fbfd;
  margin-top: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,.28),0 0 10px rgba(255,255,255,.03);
}

.team-block strong {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: .98;
  letter-spacing: .95px;
  font-weight: 400;
  text-shadow: 0 5px 12px rgba(0,0,0,.40),0 0 14px rgba(255,255,255,.04),0 0 20px rgba(36,200,242,.03);
}

.versus {
  position: relative;
  font-family: var(--font-display);
  font-size: 52px;
  color: #fff;
  align-self: center;
  text-shadow: 0 4px 10px rgba(0,0,0,.45),0 0 16px rgba(255,255,255,.08),0 0 26px rgba(36,200,242,.06);
}

.versus::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(255,255,255,.06),transparent 68%);
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.match-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin: 18px 0 18px;
  color: #f3f7fa;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .62px;
  text-shadow: 0 0 10px rgba(255,255,255,.04);
}

.match-meta span {
  position: relative;
  padding: 8px 0 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.match-meta span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.16),transparent);
  opacity: .5;
}

.match-meta svg,.open-window svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-cta {
  position: relative;
  overflow: hidden;
  width: min(660px,92%);
  height: 64px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 9px;
  background: linear-gradient(180deg,#ff4960 0,#f01d3a 54%,#cb1028 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: .74px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.18);
  box-shadow: 0 20px 44px rgba(230,23,50,.34),0 0 18px rgba(245,32,56,.14),inset 0 1px 0 rgba(255,255,255,.18),0 0 0 1px rgba(245,32,56,.10);
  transition: transform .18s ease,filter .18s ease,box-shadow .18s ease;
}

.main-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(255,255,255,.16),transparent 32%,transparent 72%,rgba(0,0,0,.12));
  pointer-events: none;
}

.main-cta::after {
  content: "";
  position: absolute;
  left: -18%;
  top: 0;
  bottom: 0;
  width: 32%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.14),transparent);
  transform: skewX(-24deg);
  opacity: .7;
  pointer-events: none;
}

.main-cta:hover {
  transform: translateY(-3px) scale(1.004);
  filter: none;
  box-shadow: 0 24px 50px rgba(230,23,50,.36),0 0 22px rgba(245,32,56,.16),inset 0 1px 0 rgba(255,255,255,.18),0 0 0 1px rgba(245,32,56,.10);
}

.main-cta svg {
  position: absolute;
  right: 22px;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.open-window {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 17px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(95,137,169,.22);
  background: linear-gradient(180deg,rgba(6,20,32,.64),rgba(6,17,27,.82));
  color: #f4f8fb;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .66px;
  text-shadow: 0 0 12px rgba(255,255,255,.04),0 0 18px rgba(36,200,242,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04),0 0 0 1px rgba(36,200,242,.03);
}

.open-window b {
  color: #fff;
  font-weight: 400;
}


/* Match states */
.main-cta:disabled {
  cursor: default;
  transform: none;
  filter: none;
  background: linear-gradient(180deg,#20384a,#132635);
  border-color: rgba(117,150,174,.18);
  color: #91a6b5;
  text-shadow: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04),0 10px 24px rgba(0,0,0,.15);
}

.main-cta:disabled::after {
  display: none;
}

.match-card[data-match-state="submitted"] {
  border-color: rgba(36,200,242,.28);
  box-shadow: 0 28px 80px rgba(0,0,0,.30),0 0 0 1px rgba(36,200,242,.05);
}

.match-card[data-match-state="live"] {
  border-color: rgba(255,80,101,.32);
  box-shadow: 0 28px 80px rgba(0,0,0,.34),0 0 32px rgba(245,32,56,.08);
}

.match-card[data-match-state="finished"] {
  border-color: rgba(49,224,129,.28);
  box-shadow: 0 28px 80px rgba(0,0,0,.32),0 0 30px rgba(49,224,129,.06);
}

.match-card[data-match-state="postponed"] {
  border-color: rgba(242,169,39,.30);
}

.match-card[data-match-state="pending"] .section-kicker,
.match-card[data-match-state="submitted"] .section-kicker {
  color: #55d9ff;
  text-shadow: 0 0 18px rgba(36,200,242,.34),0 0 34px rgba(36,200,242,.12);
}

.match-card[data-match-state="live"] .section-kicker {
  color: #ff4f67;
  text-shadow: 0 0 20px rgba(245,32,56,.40),0 0 38px rgba(245,32,56,.16);
}

.match-card[data-match-state="finished"] .section-kicker {
  color: #4ce18b;
  text-shadow: 0 0 18px rgba(49,224,129,.34),0 0 34px rgba(49,224,129,.12);
}

.match-card[data-match-state="postponed"] .section-kicker {
  color: #f2b441;
  text-shadow: 0 0 18px rgba(242,169,39,.32),0 0 34px rgba(242,169,39,.10);
}

.match-card[data-match-state="live"] .versus,
.match-card[data-match-state="finished"] .versus {
  min-width: 104px;
  font-size: 54px;
  letter-spacing: 1px;
}

.match-state-panel {
  width: min(860px,94%);
  margin-top: 16px;
  padding: 15px 17px;
  border: 1px solid rgba(91,137,171,.22);
  border-radius: 10px;
  background: linear-gradient(180deg,rgba(7,24,39,.88),rgba(4,16,27,.90));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04),0 14px 30px rgba(0,0,0,.18);
  text-align: left;
}

.match-state-panel[hidden] {
  display: none;
}

.match-state-panel.is-submitted {
  border-color: rgba(36,200,242,.24);
  background: linear-gradient(180deg,rgba(7,29,45,.90),rgba(4,17,28,.92));
}

.match-state-panel.is-live {
  border-color: rgba(245,32,56,.24);
  background: linear-gradient(180deg,rgba(30,16,27,.68),rgba(4,17,28,.94));
}

.match-state-panel.is-finished {
  border-color: rgba(49,224,129,.22);
  background: linear-gradient(180deg,rgba(11,34,31,.76),rgba(4,17,28,.94));
}

.match-state-panel.is-postponed {
  border-color: rgba(242,169,39,.25);
  background: linear-gradient(180deg,rgba(35,27,15,.68),rgba(4,17,28,.94));
}

.match-state-panel-head,
.match-result-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.match-state-panel-head strong,
.match-result-copy strong,
.match-state-alert strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .55px;
  line-height: 1;
}

.match-state-panel-head span,
.match-result-copy span,
.match-state-alert span {
  display: block;
  margin-top: 5px;
  color: #b9c7d1;
  font-size: 11px;
  line-height: 1.45;
}

.match-state-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.match-state-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(101,145,177,.20);
  border-radius: 999px;
  background: rgba(10,32,49,.72);
  color: #eef5f8;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .45px;
  white-space: nowrap;
}

.match-state-chip.red {
  color: #ff7182;
  border-color: rgba(245,32,56,.26);
  background: rgba(245,32,56,.08);
}

.match-state-chip.cyan {
  color: #62ddff;
  border-color: rgba(36,200,242,.24);
  background: rgba(36,200,242,.08);
}

.match-state-chip.green {
  color: #5dea99;
  border-color: rgba(49,224,129,.24);
  background: rgba(49,224,129,.08);
}

.match-state-chip.gold {
  color: #f6bd58;
  border-color: rgba(242,169,39,.25);
  background: rgba(242,169,39,.08);
}

.match-call-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
  margin-top: 13px;
}

.match-call-row {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(104,146,177,.14);
  border-radius: 8px;
  background: rgba(4,17,28,.52);
}

.match-call-copy {
  min-width: 0;
}

.match-call-copy span {
  display: block;
  color: #8fa6b6;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.match-call-copy strong {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: #f5f8fa;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-call-status {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .4px;
}

.match-call-status.live {
  color: #5edaff;
}

.match-call-status.success {
  color: #4ce18b;
}

.match-result-main {
  justify-content: flex-start;
}

.match-result-score {
  flex: 0 0 auto;
  min-width: 82px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 52px;
  line-height: .9;
  text-align: center;
  text-shadow: 0 0 18px rgba(49,224,129,.12);
}

.match-result-copy {
  min-width: 0;
}

.match-state-alert {
  position: relative;
  padding-left: 38px;
}

.match-state-alert::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(242,169,39,.32);
  border-radius: 50%;
  color: #f6bd58;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(242,169,39,.08);
}

/* Personal progress */
.my-game-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(390px, 1.5fr) minmax(230px, .9fr);
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding: 16px 20px;
  overflow: hidden;
  border: 1px solid #28445a;
  border-radius: 12px;
  background:
    radial-gradient(circle at 8% 50%, rgba(245, 32, 56, .11), transparent 21%),
    radial-gradient(circle at 82% 45%, rgba(36, 200, 242, .08), transparent 27%),
    linear-gradient(100deg, #081827 0%, #071421 48%, #06131f 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.my-game-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(245, 32, 56, .62), transparent 20%, transparent 74%, rgba(36, 200, 242, .38));
  opacity: .78;
}

.my-game-card::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 200, 242, .07), transparent 69%);
  pointer-events: none;
}

.my-game-identity,
.my-game-stats,
.level-progress {
  position: relative;
  z-index: 1;
}

.my-game-identity {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.my-game-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  background: linear-gradient(145deg, #1b4260, #0a1c2b);
  border: 1px solid rgba(78, 183, 243, .42);
  box-shadow: 0 0 0 4px rgba(36, 200, 242, .045), 0 0 20px rgba(36, 200, 242, .08);
  overflow: hidden;
}

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

.my-game-kicker {
  margin: 0 0 2px;
  color: var(--red-hot);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .95px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(245, 32, 56, .2);
}

.my-game-name {
  color: #fff;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
  letter-spacing: .55px;
  white-space: nowrap;
}

.my-game-name span {
  color: #58bff0;
  font-size: 20px;
}

.my-game-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.my-game-stat {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-left: 1px solid rgba(119, 159, 188, .15);
}

.my-game-stat:first-child {
  border-left: 0;
}

.stat-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 23, 36, .9);
}

.stat-rank {
  color: #57c7f2;
  border-color: rgba(36, 200, 242, .22);
  box-shadow: 0 0 15px rgba(36, 200, 242, .06);
}

.stat-points {
  color: #f3b33d;
  border-color: rgba(243, 179, 61, .20);
  box-shadow: 0 0 15px rgba(243, 179, 61, .05);
}

.stat-streak {
  color: #ff6548;
  border-color: rgba(245, 64, 45, .20);
  box-shadow: 0 0 15px rgba(245, 64, 45, .06);
}

.my-game-stat strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .4px;
}

.my-game-stat small {
  display: block;
  margin-top: 3px;
  color: #aebdc8;
  font-size: 9px;
  line-height: 1.15;
  white-space: nowrap;
}

.level-progress {
  min-width: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(119, 159, 188, .15);
}

.level-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 7px;
  font-family: var(--font-display);
}

.level-progress-head span {
  color: #d7e0e6;
  font-size: 15px;
  letter-spacing: .55px;
}

.level-progress-head strong {
  color: #50c9f4;
  font-size: 18px;
  font-weight: 400;
  text-shadow: 0 0 12px rgba(36, 200, 242, .16);
}

.level-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #102536;
  border: 1px solid rgba(113, 151, 179, .13);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .35);
}

.level-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #146bc1 0%, #24c8f2 64%, #f52038 100%);
  box-shadow: 0 0 12px rgba(36, 200, 242, .18);
}

/* Panels */

.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.panel {
  position: relative;
  min-width: 0;
  border: 1px solid #28445a;
  border-radius: 12px;
  background: linear-gradient(180deg,#081a2a 0,#06131f 100%);
  box-shadow: 0 22px 56px rgba(0,0,0,.24);
  padding: 18px 18px 16px;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.14),transparent);
}

.panel::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(36,200,242,.08),transparent 70%);
  pointer-events: none;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(116,157,188,.16);
  padding-bottom: 9px;
  margin-bottom: 5px;
}

.panel-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #47b5f0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 27px;
  letter-spacing: .65px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(36,200,242,.08);
}

.panel-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--red-hot),transparent);
}

.panel-head button {
  border: 0;
  background: transparent;
  color: #c7d2da;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .72px;
  padding: 4px 0;
  transition: color .18s ease,transform .18s ease;
}

.panel-head button:hover {
  color: #fff;
  transform: translateX(2px);
}

.rank-list {
  margin: 1px 0 12px;
}

.rank-row {
  height: 44px;
  display: grid;
  grid-template-columns: 28px 35px minmax(0,1fr) auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(114,153,184,.12);
  font-size: 13px;
  position: relative;
  transition: background .18s ease,transform .18s ease;
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row.me {
  background: linear-gradient(90deg,rgba(230,57,70,.11),rgba(36,200,242,.02) 56%,transparent 82%);
}

.rank-row.me::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--red-hot);
  box-shadow: 0 0 12px rgba(245,32,56,.42);
}

.rank-number {
  font-family: var(--font-display);
  font-size: 18px;
  color: #cbd4da;
}

.first .rank-number {
  color: var(--gold);
}

.rank-row b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row strong {
  font-size: 13px;
  white-space: nowrap;
}

.rank-avatar {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #102638;
  border: 1px solid #2a485f;
  font-size: 11px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

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

.rank-avatar-badge {
  position: absolute;
  right: -2px;
  bottom: -1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a0f00;
  border: 1px solid rgba(242,169,39,.45);
  color: #ffd24a;
  font-size: 9px;
  line-height: 1;
}

.rank-avatar.crown {
  color: #ffd24a;
}

.rank-avatar.silver {
  color: #e4e8ea;
}

.rank-avatar.bolt {
  color: #ffe600;
}

.rank-avatar.initials {
  font-size: 9px;
  color: #e7eff4;
}

.panel-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 44px;
  border: 1px solid rgba(92,153,209,.28);
  border-radius: 8px;
  background: linear-gradient(180deg,#1a67c2,#114da0);
  color: #fff;
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: .5px;
  text-shadow: 0 1px 6px rgba(0,0,0,.18);
  box-shadow: 0 12px 24px rgba(17,77,160,.20),inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .18s ease,box-shadow .18s ease,filter .18s ease;
}

.panel-cta::before,.red-small::before,.next-question::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(255,255,255,.14),transparent 34%,transparent 72%,rgba(0,0,0,.10));
  pointer-events: none;
}

.panel-cta:hover,.red-small:hover,.next-question:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.exploit-list {
  margin-top: 2px;
}

.exploit-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 55px minmax(0,1fr) 20px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(114,153,184,.12);
  position: relative;
  transition: background .18s ease,transform .18s ease;
}

.exploit-row:last-child {
  border-bottom: 0;
}

.achievement-badge {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  transform: rotate(0deg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10),0 8px 18px rgba(0,0,0,.25);
}

.achievement-badge svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-badge {
  background: linear-gradient(145deg,#0b5287,#051523);
  box-shadow: inset 0 0 0 2px rgba(230,57,70,.7),0 8px 18px rgba(0,0,0,.25),0 0 18px rgba(36,200,242,.10),0 0 14px rgba(245,32,56,.10);
}

.perfect-badge {
  background: radial-gradient(circle at 50% 50%,#d92c40 0 28%,#0a1723 29% 58%,#124da0 59% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10),0 8px 18px rgba(0,0,0,.25),0 0 18px rgba(36,102,210,.13),0 0 13px rgba(245,32,56,.08);
}

.fire-badge {
  background: linear-gradient(145deg,#ed421e,#ff9f18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12),0 8px 18px rgba(0,0,0,.25),0 0 18px rgba(255,111,26,.16);
}

.fire-badge svg {
  fill: rgba(255,255,255,.16);
}

.exploit-copy {
  min-width: 0;
}

.exploit-copy b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: .35px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,255,255,.025);
}

.exploit-copy p {
  margin: 5px 0 0;
  color: #c4ced5;
  font-size: 11px;
  line-height: 1.45;
}

.exploit-copy p span {
  color: var(--green);
  font-weight: 700;
}

.row-arrow {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #d9e2e8;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.exploits-panel .panel-cta {
  margin-top: 8px;
}

/* Glow accents — classements et exploits */

.ranking-panel {
  background: radial-gradient(circle at 5% 5%,rgba(36,200,242,.055),transparent 30%),
  linear-gradient(180deg,#081a2a 0,#06131f 100%);
}

.ranking-panel::after {
  top: -54px;
  right: -30px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle,rgba(36,200,242,.10),transparent 70%);
}

.exploits-panel {
  background: radial-gradient(circle at 92% 8%,rgba(245,32,56,.055),transparent 30%),
  linear-gradient(180deg,#081a2a 0,#06131f 100%);
}

.exploits-panel::after {
  top: -55px;
  right: -35px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle,rgba(245,32,56,.085),transparent 70%);
}

.ranking-panel .panel-head h2 {
  text-shadow: 0 0 14px rgba(36,200,242,.14);
}

.exploits-panel .panel-head h2 {
  text-shadow: 0 0 14px rgba(36,200,242,.10),0 0 22px rgba(245,32,56,.05);
}

.rank-row:hover {
  background: linear-gradient(90deg,rgba(36,200,242,.045),transparent 78%);
  transform: translateX(2px);
}

.rank-row.first .rank-avatar {
  border-color: rgba(242,169,39,.34);
  box-shadow: 0 0 14px rgba(242,169,39,.12),inset 0 0 12px rgba(242,169,39,.035);
}

.rank-row.me .rank-avatar {
  border-color: rgba(245,32,56,.34);
  box-shadow: 0 0 16px rgba(245,32,56,.12),inset 0 0 12px rgba(36,200,242,.025);
}

.exploit-row:hover {
  background: linear-gradient(90deg,rgba(36,200,242,.035),rgba(245,32,56,.022),transparent 82%);
  transform: translateX(2px);
}

/* Leagues */

.league-banner {
  position: relative;
  min-height: 168px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  overflow: hidden;
  border: 1px solid #28445a;
  border-radius: 12px;
  background: radial-gradient(circle at 8% 50%,rgba(245,32,56,.055),transparent 28%),radial-gradient(circle at 48% 0,rgba(36,200,242,.055),transparent 34%),linear-gradient(90deg,#071624,#07131e 62%,#0a151e);
  box-shadow: 0 20px 54px rgba(0,0,0,.24),0 0 30px rgba(36,200,242,.025);
}

.league-banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 46%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg,transparent,rgba(245,32,56,.78),rgba(36,200,242,.48),transparent);
  opacity: .72;
  box-shadow: 0 0 12px rgba(245,32,56,.10);
  z-index: 3;
  pointer-events: none;
}

.league-banner::after {
  content: "";
  position: absolute;
  left: -45px;
  top: 12px;
  width: 190px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(245,32,56,.075),transparent 68%);
  pointer-events: none;
}

.league-copy {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  position: relative;
  z-index: 2;
}

.league-people {
  width: 59px;
  height: 59px;
  flex: 0 0 auto;
  color: #ff4058;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(180deg,rgba(11,27,41,.86),rgba(6,17,27,.88));
  border: 1px solid rgba(255,64,88,.22);
  box-shadow: 0 0 22px rgba(245,32,56,.11),inset 0 1px 0 rgba(255,255,255,.045);
}

.league-people svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(245,32,56,.15));
}

.league-copy h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: .58px;
  color: #fff;
  text-shadow: 0 0 14px rgba(36,200,242,.09);
}

.league-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 45px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,#f52038,#24c8f2,transparent);
  box-shadow: 0 0 10px rgba(245,32,56,.10);
}

.league-copy p {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.42;
  color: #f3f6f8;
}

.red-small {
  position: relative;
  overflow: hidden;
  height: 44px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background: linear-gradient(180deg,#ff354d,#e61732);
  color: #fff;
  padding: 0 22px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .42px;
  box-shadow: 0 12px 24px rgba(230,23,50,.22),0 0 18px rgba(245,32,56,.07),inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .18s ease,filter .18s ease,box-shadow .18s ease;
}

.league-photo {
  min-height: 168px;
  background: linear-gradient(90deg,#07131e 0,rgba(7,19,30,.48) 16%,transparent 44%),url("assets/league-fans.webp") center 34%/cover no-repeat;
  filter: saturate(1.08) contrast(1.04);
}

.brand-strip {
  position: relative;
  margin-top: 16px;
  min-height: 132px;
  border-top: 1px solid rgba(122,161,190,.16);
  border-bottom: 1px solid rgba(122,161,190,.12);
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr)) 1.45fr;
  align-items: stretch;
  background: linear-gradient(90deg,rgba(7,21,34,.52),rgba(4,12,20,.34));
  padding: 0;
  overflow: hidden;
}

.brand-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,transparent 0 74%,rgba(17,77,160,.08) 84%,transparent 100%);
  pointer-events: none;
}

.strip-feature,.strip-signoff {
  min-width: 0;
  position: relative;
  padding: 16px 16px 14px;
  border-right: 1px solid rgba(139,171,195,.16);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.strip-feature {
  --feature-accent: #f52038;
  --feature-glow: rgba(245,32,56,.18);
  transition: background .2s ease;
}

.strip-feature:nth-child(1) {
  --feature-accent: #ff3550;
  --feature-glow: rgba(255,53,80,.20);
}

.strip-feature:nth-child(2) {
  --feature-accent: #ff4b2f;
  --feature-glow: rgba(255,75,47,.18);
}

.strip-feature:nth-child(3) {
  --feature-accent: #ff8a22;
  --feature-glow: rgba(255,138,34,.18);
}

.strip-feature:nth-child(4) {
  --feature-accent: #ef334b;
  --feature-glow: rgba(239,51,75,.18);
}

.strip-feature:nth-child(5) {
  --feature-accent: #e63946;
  --feature-glow: rgba(230,57,70,.18);
}

.strip-feature::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg,transparent,var(--feature-accent),transparent);
  opacity: .72;
  box-shadow: 0 0 12px var(--feature-glow);
}

.strip-feature::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background: radial-gradient(circle at 18px 29px,var(--feature-glow),transparent 58%);
  pointer-events: none;
  opacity: .72;
}

.strip-signoff {
  border-right: 0;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 12px 22px 12px 16px;
  background: linear-gradient(135deg,rgba(8,20,32,.45) 0%,rgba(7,18,29,.82) 42%,rgba(8,24,41,.98) 100%);
}

.strip-signoff::before {
  content: "";
  position: absolute;
  inset: -10px auto auto -20px;
  width: 150px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(245,32,56,.17),transparent 68%);
  z-index: 0;
  pointer-events: none;
}

.strip-signoff::after {
  content: "";
  position: absolute;
  right: -25px;
  top: -14px;
  width: 170px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(36,200,242,.10),transparent 66%);
  z-index: 0;
  pointer-events: none;
}

.strip-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--feature-accent);
  background: linear-gradient(180deg,rgba(11,26,39,.86),rgba(5,15,24,.88));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05),0 0 20px var(--feature-glow);
}

.strip-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px var(--feature-glow));
}

.strip-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.brand-strip strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .35px;
  display: block;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,.025);
}

.brand-strip span {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  line-height: 1.35;
  color: #c2cdd4;
}

.strip-signoff .signoff-logo,.strip-signoff .signoff-sub {
  position: relative;
  z-index: 2;
}

.signoff-logo {
  font-family: var(--font-display);
  font-size: 49px;
  line-height: .88;
  letter-spacing: 1px;
  text-align: right;
  transform: skew(-6deg);
  color: #fff;
  text-shadow: 0 4px 0 rgba(1,8,14,.45),0 0 18px rgba(255,255,255,.06),0 0 32px rgba(36,200,242,.06);
}

.signoff-logo em {
  color: var(--red-hot);
  font-style: normal;
  text-shadow: 0 4px 0 rgba(98,7,18,.35),0 0 18px rgba(245,32,56,.22),0 0 34px rgba(245,32,56,.12);
}

.signoff-sub {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .9px;
  text-align: right;
  color: #fff;
  transform: skew(-6deg);
  text-shadow: 0 3px 0 rgba(1,8,14,.38),0 0 12px rgba(255,255,255,.05);
}

.signoff-swoosh {
  position: absolute;
  right: -20px;
  bottom: -38px;
  width: 340px;
  height: 190px;
  z-index: 1;
  background: radial-gradient(ellipse at 78% 18%,rgba(18,116,209,.26),transparent 60%);
}

.signoff-swoosh::before,.signoff-swoosh::after {
  content: "";
  position: absolute;
  right: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,transparent,rgba(44,200,242,.20) 10%,rgba(17,77,160,.98) 52%,rgba(36,200,242,.55));
  box-shadow: 0 0 14px rgba(36,200,242,.15);
  transform-origin: right center;
}

.signoff-swoosh::before {
  bottom: 73px;
  width: 286px;
  transform: rotate(-9deg);
}

.signoff-swoosh::after {
  bottom: 56px;
  width: 226px;
  transform: rotate(-9deg);
}

/* Prediction flow */

.prediction-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,6,11,.89);
  backdrop-filter: blur(12px);
}

.prediction-overlay.open {
  display: grid;
}

.prediction-shell {
  position: relative;
  width: min(690px,100%);
  border: 1px solid #29465d;
  border-radius: 14px;
  background: linear-gradient(180deg,#081c2d 0,#040e17 100%);
  box-shadow: 0 35px 120px #000;
  padding: 23px 29px 28px;
  text-align: center;
  overflow: hidden;
}

.prediction-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0,rgba(35,189,236,.08),transparent 35%);
  pointer-events: none;
}

.close-predictions {
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 7px;
  border: 0;
  background: none;
  color: #b5c4cf;
  font-size: 34px;
  line-height: 1;
}

.modal-logo {
  position: relative;
  z-index: 1;
  width: 136px;
  height: auto;
  display: block;
  margin: -11px auto -3px;
}

.prediction-progress {
  height: 4px;
  background: #10283a;
  margin: 2px 0 20px;
  border-radius: 99px;
  overflow: hidden;
}

.prediction-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg,var(--red-hot),var(--cyan));
  transition: width .25s ease;
}

.question-counter {
  margin: 0;
  color: var(--red-hot);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .75px;
}

.question-title {
  margin: 5px 0 3px;
  font-family: var(--font-display);
  font-size: 39px;
  font-weight: 400;
  letter-spacing: .45px;
}

.question-context {
  margin: 0 0 19px;
  color: #a8bbc9;
  font-size: 12px;
  line-height: 1.45;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.choice {
  min-height: 175px;
  border: 1px solid #2a485d;
  border-radius: 8px;
  background: linear-gradient(180deg,#0b2033,#06121d);
  color: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease;
}

.choice:hover,.choice.selected {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(36,200,242,.13),0 16px 32px rgba(0,0,0,.32);
}

.choice.selected {
  background: linear-gradient(180deg,#0b2a43,#071827);
}

.choice img {
  width: 110px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(0 9px 12px rgba(0,0,0,.25));
}

.choice.rival img {
  width: 82px;
}

.choice-copy {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  text-align: center;
}

.choice span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .5px;
}

.choice b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 25px;
  letter-spacing: .4px;
}

.choice-mark {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  background: #102a3d;
  border: 2px solid #31586f;
  font-family: var(--font-display);
  font-size: 34px;
}

.choice:first-child .choice-mark {
  background: #0b4e80;
  border-color: #2fcaf2;
}

.next-question {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 53px;
  margin-top: 15px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background: linear-gradient(180deg,#ff354d,#e61732);
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .58px;
  text-shadow: 0 1px 6px rgba(0,0,0,.18);
  box-shadow: 0 14px 28px rgba(230,23,50,.20),inset 0 1px 0 rgba(255,255,255,.10);
  transition: transform .18s ease,filter .18s ease;
}

.next-question:disabled {
  background: #152c3d;
  color: #657c8c;
  border-color: rgba(95,126,149,.12);
  box-shadow: none;
}

.summary-card {
  grid-column: 1/-1;
  text-align: left;
  border: 1px solid #2a485d;
  background: #071827;
  border-radius: 8px;
  padding: 15px 17px;
  line-height: 1.8;
  font-size: 13px;
}

.summary-card b {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .35px;
}

.summary-card span {
  color: #aab9c5;
}

.community-reveal {
  grid-column: 1/-1;
  margin-top: 4px;
  padding: 13px 15px;
  border-radius: 8px;
  background: linear-gradient(90deg,rgba(36,200,242,.08),rgba(230,57,70,.08));
  border: 1px solid rgba(74,147,194,.22);
  font-size: 12px;
  color: #c9d3da;
}

.community-reveal strong {
  color: var(--cyan);
}

.mobile-nav {
  display: none;
}

@media (max-width:900px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    height: 74px;
  }

  .header-inner {
    width: calc(100% - 24px);
    gap: 16px;
  }

  .brand {
    width: 120px;
    height: 66px;
    padding-top: 4px;
  }

  .brand img {
    width: 118px;
    transform: translateY(10px);
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .page-shell {
    width: calc(100% - 24px);
    margin: 14px auto 35px;
  }

  .match-card {
    min-height: 430px;
  }

  .match-card-inner {
    min-height: 430px;
    padding: 20px 17px 18px;
  }

  .section-kicker {
    font-size: 24px;
    margin-bottom: 14px;
    padding: 0 8px;
  }

  .section-kicker::before,.section-kicker::after {
    width: 42px;
  }

  .matchup-grid {
    grid-template-columns: 1fr 62px 1fr;
    gap: 5px;
    width: 100%;
  }

  .crest-wrap {
    width: 132px;
    height: 103px;
  }

  .crest-wrap img {
    max-width: 128px;
    max-height: 95px;
  }

  .rival-crest img {
    max-width: 93px;
  }

  .team-city {
    font-size: 16px;
  }

  .team-block strong {
    font-size: 27px;
  }

  .versus {
    font-size: 34px;
  }

  .match-meta {
    gap: 9px 20px;
    flex-wrap: wrap;
    font-size: 14px;
    margin: 17px 0;
  }

  .main-cta {
    width: min(560px,95%);
    font-size: 25px;
    height: 58px;
  }

  .open-window {
    font-size: 14px;
    padding: 8px 12px;
  }

  .my-game-card {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 16px 17px;
  }

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

  .level-progress {
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(119, 159, 188, .15);
  }

  .home-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .league-banner {
    grid-template-columns: 1fr;
    min-height: 295px;
  }

  .league-copy {
    padding: 22px;
  }

  .league-photo {
    min-height: 145px;
    background-position: center 30%;
  }

  .brand-strip {
    grid-template-columns: 1fr 1fr;
  }

  .strip-feature,.strip-signoff {
    min-height: 72px;
    padding: 14px 14px 12px;
  }

  .strip-signoff {
    grid-column: 1/-1;
    justify-content: flex-start;
  }

  .signoff-logo,.signoff-sub {
    text-align: left;
  }

  .signoff-logo {
    font-size: 41px;
  }

  .signoff-sub {
    font-size: 24px;
  }

  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    height: 68px;
    padding: 5px 3px calc(5px + env(safe-area-inset-bottom));
    background: rgba(2,9,15,.97);
    border-top: 1px solid #1a3448;
    backdrop-filter: blur(10px);
  }

  .mobile-nav a,.mobile-nav button {
    position: relative;
    border: 0;
    background: transparent;
    color: #a5b5c1;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 8px;
    text-transform: uppercase;
  }

  .mobile-nav svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav .active {
    color: #fff;
  }

  .mobile-nav .active::before {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    top: 3px;
    bottom: 3px;
    border-radius: 14px;
    background: linear-gradient(180deg,rgba(20,52,80,.72),rgba(9,23,36,.72));
    border: 1px solid rgba(73,129,180,.22);
    z-index: -1;
    box-shadow: 0 8px 16px rgba(0,0,0,.16);
  }

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

  .choice {
    min-height: 118px;
    flex-direction: row;
    gap: 14px;
  }

  .choice img {
    width: 86px;
    height: 67px;
    margin: 0;
  }

  .choice.rival img {
    width: 67px;
  }

  .choice-mark {
    margin: 0;
  }

  .prediction-shell {
    padding: 19px 18px 23px;
  }

  .question-title {
    font-size: 33px;
  }
}

@media (max-width:520px) {
  .site-header {
    height: 68px;
  }

  .header-inner {
    width: calc(100% - 18px);
  }

  .brand {
    width: 108px;
    height: 60px;
    padding-top: 4px;
  }

  .brand img {
    width: 106px;
    transform: translateY(9px);
  }

  .notification-btn {
    width: 34px;
    height: 34px;
  }

  .avatar-btn {
    width: 34px;
    height: 34px;
  }

  .page-shell {
    width: calc(100% - 18px);
    margin-top: 10px;
  }

  .match-card {
    min-height: 405px;
    border-radius: 9px;
    background-position: center 35%;
  }

  .match-card-inner {
    min-height: 405px;
    padding: 16px 12px 15px;
  }

  .section-kicker {
    font-size: 21px;
  }

  .section-kicker::before,.section-kicker::after {
    width: 24px;
    margin-right: 8px;
    margin-left: 8px;
  }

  .matchup-grid {
    grid-template-columns: 1fr 44px 1fr;
  }

  .crest-wrap {
    width: 94px;
    height: 80px;
  }

  .crest-wrap img {
    max-width: 94px;
    max-height: 72px;
  }

  .rival-crest img {
    max-width: 70px;
  }

  .team-city {
    font-size: 14px;
  }

  .team-block strong {
    font-size: 22px;
    line-height: 1.02;
  }

  .versus {
    font-size: 27px;
  }

  .match-meta {
    gap: 8px 14px;
    font-size: 12px;
    margin: 16px 0 15px;
  }

  .match-meta svg {
    width: 15px;
    height: 15px;
  }

  .main-cta {
    height: 55px;
    width: 96%;
    font-size: 22px;
  }

  .main-cta svg {
    width: 23px;
    height: 23px;
    right: 15px;
  }

  .open-window {
    font-size: 11px;
  }

  .open-window svg {
    width: 15px;
    height: 15px;
  }

  .my-game-card {
    margin-top: 12px;
    padding: 14px;
  }

  .my-game-avatar {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .my-game-name {
    font-size: 24px;
  }

  .my-game-name span {
    font-size: 18px;
  }

  .my-game-stats {
    gap: 3px;
  }

  .my-game-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 7px 7px 7px 9px;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .my-game-stat strong {
    font-size: 18px;
  }

  .my-game-stat small {
    white-space: normal;
  }

  .panel {
    padding: 15px 14px;
  }

  .panel-head h2 {
    font-size: 23px;
  }

  .panel-head button {
    font-size: 11px;
  }

  .rank-row {
    grid-template-columns: 24px 31px minmax(0,1fr) auto;
    font-size: 12px;
  }

  .rank-row strong {
    font-size: 12px;
  }

  .exploit-row {
    grid-template-columns: 50px minmax(0,1fr) 17px;
    gap: 8px;
  }

  .achievement-badge {
    width: 45px;
    height: 45px;
  }

  .achievement-badge svg {
    width: 34px;
    height: 34px;
  }

  .exploit-copy b {
    font-size: 19px;
  }

  .exploit-copy p {
    font-size: 10px;
  }

  .league-copy {
    padding: 20px 18px;
    gap: 13px;
  }

  .league-people {
    width: 49px;
    height: 49px;
  }

  .league-copy h2 {
    font-size: 28px;
  }

  .league-photo {
    min-height: 130px;
    background-position: center 28%;
  }

  .brand-strip {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .strip-feature,.strip-signoff {
    border-right: 0;
    border-bottom: 1px solid rgba(139,171,195,.12);
    padding: 13px 14px 12px;
  }

  .strip-feature:last-of-type {
    border-bottom: 1px solid rgba(139,171,195,.12);
  }

  .strip-signoff {
    padding: 16px 14px 15px;
    justify-content: flex-start;
  }

  .strip-icon {
    width: 34px;
    height: 34px;
  }

  .strip-icon svg {
    width: 30px;
    height: 30px;
  }

  .brand-strip strong {
    font-size: 20px;
  }

  .brand-strip span {
    font-size: 10px;
  }

  .signoff-logo {
    font-size: 35px;
    text-align: left;
  }

  .signoff-sub {
    font-size: 21px;
    text-align: left;
  }

  .signoff-swoosh {
    right: -48px;
    bottom: -30px;
    width: 250px;
    height: 150px;
  }

  .modal-logo {
    width: 118px;
  }

  .question-title {
    font-size: 30px;
  }

  .question-context {
    font-size: 11px;
  }

  .choice {
    min-height: 104px;
  }

  .choice b {
    font-size: 22px;
  }

  .choice span {
    font-size: 16px;
  }
}

@media (max-width:640px) {
  .match-card .section-kicker {
    font-size: 21px;
    letter-spacing: 1px;
  }

  .section-kicker::before,.section-kicker::after {
    width: 44px;
  }

  .open-window {
    font-size: 12px;
    padding: 7px 10px;
  }
}


@media (max-width:900px) {
  .match-state-panel {
    width: min(760px,96%);
    padding: 13px 14px;
  }

  .match-call-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:520px) {
  .match-card[data-match-state="live"] .versus,
  .match-card[data-match-state="finished"] .versus {
    min-width: 55px;
    font-size: 34px;
  }

  .match-state-panel {
    width: 98%;
    margin-top: 12px;
    padding: 12px;
  }

  .match-state-panel-head,
  .match-result-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .match-state-panel-head strong,
  .match-result-copy strong,
  .match-state-alert strong {
    font-size: 19px;
  }

  .match-state-chips {
    gap: 6px;
    margin-top: 10px;
  }

  .match-state-chip {
    min-height: 28px;
    padding: 0 8px;
    font-size: 12px;
  }

  .match-call-grid {
    grid-template-columns: 1fr;
  }

  .match-result-score {
    min-width: 0;
    font-size: 42px;
  }
}

/* Accessibility */
:where(a, button):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

body.modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


@media (max-width: 900px) {
  html {
    scroll-padding-top: 92px;
  }

  #home,
  #rankings,
  #leagues {
    scroll-margin-top: 92px;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 82px;
  }

  #home,
  #rankings,
  #leagues {
    scroll-margin-top: 82px;
  }
}

/* =========================================================
   V1.11.2.1 — RACCOURCI MINI-LIGUES MOBILE
   ========================================================= */
.mobile-top-leagues {
  display: none;
  color: #dce9f1;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid rgba(32,199,240,.42);
  border-radius: 999px;
  background: rgba(5,28,42,.82);
  font: 800 9px Montserrat,sans-serif;
  letter-spacing: .05em;
}

@media (max-width:900px) {
  .mobile-top-leagues {
    display: inline-flex;
  }
}

@media (max-width:430px) {
  .mobile-top-leagues {
    min-height: 34px;
    padding: 0 9px;
    font-size: 8px;
  }
}

/* V1.12.2 — exploits dynamiques */
.panel-head-action{border:0;background:transparent;color:#c7d2da;font-family:var(--font-display);font-size:13px;letter-spacing:.72px;padding:4px 0;text-decoration:none;transition:color .18s ease,transform .18s ease}.panel-head-action:hover{color:#fff;transform:translateX(2px)}.exploit-row-link{color:inherit;text-decoration:none}.achievement-badge{font-size:24px;line-height:1}.partisan-badge{background:linear-gradient(145deg,#5c4605,#151105);color:#ffd24a;box-shadow:inset 0 0 0 1px rgba(255,210,74,.25),0 8px 18px rgba(0,0,0,.25),0 0 18px rgba(255,210,74,.12)}.row-arrow{display:grid;place-items:center;color:#d9e2e8;font-size:25px;line-height:1}.panel-cta-link{text-decoration:none;display:grid;place-items:center}.exploit-empty{min-height:220px;display:grid;place-items:center;align-content:center;text-align:center;padding:24px 18px;color:#8da5b4}.exploit-empty strong{font-family:var(--font-display);font-size:24px;font-weight:400;color:#fff}.exploit-empty p{max-width:430px;margin:8px auto 0;font-size:10px;line-height:1.55}.exploit-row-link:focus-visible{outline:2px solid var(--cyan);outline-offset:-2px;border-radius:8px}

/* V1.13.2 — polish UI/UX : lisibilite et profils publics */
.match-call-copy span{font-size:11px;line-height:1.4;color:#9fb3c0}.match-call-copy strong{font-size:13px;line-height:1.35}.my-game-stat small{font-size:10px;line-height:1.3}.exploit-copy p{font-size:12px;line-height:1.55;color:#d0d8de}.brand-strip span{font-size:12px;line-height:1.5}.exploit-empty p{font-size:12px;line-height:1.65;color:#9eb2bf}.rank-avatar-link{display:block;color:inherit;text-decoration:none;border-radius:50%}.rank-name-link{min-width:0;color:#fff;text-decoration:none;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.rank-avatar-link:hover .rank-avatar,.rank-avatar-link:focus-visible .rank-avatar{border-color:var(--cyan);box-shadow:0 0 0 3px rgba(32,199,240,.12)}.rank-name-link:hover,.rank-name-link:focus-visible{color:var(--cyan);outline:none}.rank-avatar-link:focus-visible{outline:2px solid var(--cyan);outline-offset:2px}.rank-avatar{transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease}.rank-avatar-link:hover .rank-avatar{transform:translateY(-1px)}
@media(max-width:700px){.match-call-copy span{font-size:10px}.match-call-copy strong{font-size:12px}.exploit-copy p{font-size:11px;line-height:1.55}.brand-strip span{font-size:11px;line-height:1.5}.question-context{font-size:12px;line-height:1.55}.exploit-empty p{font-size:11px}}


/* =========================================================
   V1.13.2.2 — ACCUEIL + ARBITRE DES CALLS
   ========================================================= */

/* Desktop : 5 avantages sur une ligne, puis la signature sur toute la largeur. */
@media (min-width: 901px) {
  .brand-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 0;
  }

  .strip-feature {
    min-height: 142px;
  }

  .strip-feature:nth-child(5) {
    border-right: 0;
  }

  .strip-signoff {
    grid-column: 1 / -1;
    min-height: 112px;
    border-top: 1px solid rgba(139,171,195,.16);
    border-right: 0;
    justify-content: center;
    gap: 58px;
    padding: 17px 26px 18px;
  }

  .strip-signoff::before {
    left: 11%;
    top: -26px;
    width: 230px;
    height: 150px;
  }

  .strip-signoff::after {
    right: 10%;
    top: -32px;
    width: 250px;
    height: 165px;
  }

  .strip-signoff .signoff-logo,
  .strip-signoff .signoff-sub {
    text-align: center;
  }

  .signoff-swoosh {
    right: 9%;
    bottom: -44px;
    width: 390px;
    height: 210px;
  }
}

/* Le personnage vit autour de la modale, sans modifier le workflow des calls. */
.prediction-stage {
  position: relative;
  width: min(690px, 100%);
}

.prediction-stage .prediction-shell {
  width: 100%;
}

.prediction-referee {
  position: absolute;
  z-index: 4;
  width: 250px;
  height: auto;
  right: -205px;
  bottom: -22px;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 20px 24px rgba(0,0,0,.48));
}

@media (max-width: 1120px) and (min-width: 901px) {
  .prediction-referee {
    width: 205px;
    right: -138px;
    bottom: -12px;
  }
}

@media (max-width: 900px) {
  .prediction-stage {
    width: min(690px, 100%);
  }

  .prediction-referee {
    width: 104px;
    right: 8px;
    top: 45px;
    bottom: auto;
    opacity: .9;
    filter: drop-shadow(0 10px 16px rgba(0,0,0,.42));
  }

  .prediction-shell {
    padding-top: 27px;
  }

  .modal-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .prediction-referee {
    width: 82px;
    right: 5px;
    top: 51px;
    opacity: .82;
  }
}


/* V1.13.3 — UX pre-lancement : lisibilite, classement avant-match */
.ranking-pregame-note{margin:0 0 10px;padding:11px 12px;border:1px solid rgba(32,199,240,.22);border-radius:10px;background:rgba(32,199,240,.055);display:grid;gap:3px}.ranking-pregame-note strong{font-family:var(--font-display);font-size:18px;font-weight:400;letter-spacing:.03em;color:#fff}.ranking-pregame-note span{font-size:12px;line-height:1.5;color:#a6bbc7}.rank-row .rank-number{min-width:26px}.match-call-copy span{font-size:12px;line-height:1.5}.match-call-copy strong{font-size:14px}.my-game-stat small{font-size:11px}.exploit-copy p{font-size:13px;line-height:1.6}.brand-strip span{font-size:13px;line-height:1.55}.question-context{font-size:13px;line-height:1.6}.exploit-empty p{font-size:13px;line-height:1.65}.panel-head-action{font-size:14px}.rank-row{font-size:13px}.rank-row strong{font-size:13px}
@media(max-width:700px){.ranking-pregame-note{padding:10px}.ranking-pregame-note strong{font-size:17px}.ranking-pregame-note span{font-size:11px}.match-call-copy span{font-size:11px}.match-call-copy strong{font-size:13px}.my-game-stat small{font-size:10px}.exploit-copy p,.brand-strip span,.question-context,.exploit-empty p{font-size:12px}}

/* =========================================================
   V1.13.5 — POLISH VISUEL FINAL : ACCUEIL / MINI-LIGUES
   ========================================================= */
.league-banner{
  grid-template-columns:1fr 1.08fr;
  min-height:184px;
  background:
    radial-gradient(circle at 8% 50%,rgba(245,32,56,.065),transparent 28%),
    radial-gradient(circle at 58% 0,rgba(36,200,242,.07),transparent 36%),
    linear-gradient(90deg,#071624,#07131e 62%,#071722);
}
.league-photo{
  position:relative;
  min-height:184px;
  background:
    linear-gradient(90deg,#07131e 0,rgba(7,19,30,.76) 12%,rgba(7,19,30,.18) 34%,transparent 52%),
    url("assets/mini-leagues-team.webp") 72% bottom / auto 112% no-repeat;
  filter:none;
}
.league-photo:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(32,199,240,.025),transparent 44%,rgba(2,11,19,.12));
  pointer-events:none;
}
.league-copy p{font-size:13px;line-height:1.55;color:#e6eef3}
.league-copy h2{font-size:34px}
.red-small{transition:transform .18s ease,filter .18s ease,box-shadow .18s ease}
.red-small:hover{transform:translateY(-2px);filter:brightness(1.05);box-shadow:0 15px 30px rgba(230,23,50,.28),0 0 22px rgba(245,32,56,.1),inset 0 1px 0 rgba(255,255,255,.12)}
@media(max-width:900px){
  .league-banner{grid-template-columns:1fr;min-height:310px}
  .league-photo{min-height:155px;background-position:center bottom;background-size:auto 112%}
}
@media(max-width:520px){
  .league-photo{min-height:142px;background-position:center bottom;background-size:auto 108%}
  .league-copy p{font-size:12px}
}
@media(prefers-reduced-motion:reduce){.red-small{transition:none}}

/* =========================================================
   V1.13.5.1 — ACCUEIL : MINI-LIGUES ILLUSTRÉES
   ========================================================= */
.league-banner{
  min-height:222px;
  grid-template-columns:minmax(360px,.9fr) 1.2fr;
  background:
    radial-gradient(circle at 10% 52%,rgba(245,32,56,.075),transparent 28%),
    linear-gradient(90deg,#071624,#07131e 58%,#071722);
}
.league-copy{
  padding:30px 32px;
  align-items:center;
}
.league-copy>div{max-width:430px}
.league-kicker{
  display:block;
  margin:0 0 6px;
  color:#24c8f2;
  font-size:11px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.league-copy h2{font-size:40px;margin-bottom:10px}
.league-copy p{max-width:410px;margin-bottom:18px;font-size:13px;line-height:1.58;color:#dce9ef}
.league-people{display:none}
.league-photo{
  min-height:222px;
  background:
    linear-gradient(90deg,#07131e 0%,rgba(7,19,30,.84) 8%,rgba(7,19,30,.36) 28%,rgba(7,19,30,.02) 52%),
    linear-gradient(180deg,rgba(2,11,19,.02),rgba(2,11,19,.12)),
    url("assets/home-mini-leagues-v11351.webp") 54% 57% / cover no-repeat;
  filter:saturate(1.03) contrast(1.02);
}
.league-photo:after{
  background:
    radial-gradient(circle at 50% 18%,rgba(32,199,240,.08),transparent 44%),
    linear-gradient(180deg,transparent 62%,rgba(2,11,19,.18));
}
@media(max-width:900px){
  .league-banner{grid-template-columns:1fr;min-height:390px}
  .league-copy{padding:26px 28px 20px}
  .league-copy>div{max-width:600px}
  .league-photo{min-height:205px;background-position:center 60%;background-size:cover}
}
@media(max-width:520px){
  .league-banner{min-height:390px}
  .league-copy{padding:22px 22px 17px}
  .league-kicker{font-size:10px}
  .league-copy h2{font-size:35px}
  .league-copy p{font-size:12px;line-height:1.55}
  .league-photo{min-height:205px;background-position:center 61%;background-size:auto 118%}
}
