:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #646b73;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --soft: #f1f4f0;
  --line: #dfe3e1;
  --red: #c5162e;
  --green: #0a6b4f;
  --navy: #17212b;
  --gold: #c89435;
  --shadow: 0 18px 42px rgba(23, 33, 43, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-main,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-main {
  gap: 14px;
}

.nav-actions {
  display: none;
  gap: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 850;
}

.brand-logo {
  width: 190px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  overflow-x: auto;
}

.mobile-nav-row {
  display: none;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--red);
}

.nav-search,
.nav-v9bet-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  text-decoration: none;
}

.nav-search {
  width: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
}

.nav-search svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-v9bet-cta {
  padding: 0 14px;
  border: 1px solid rgba(255, 214, 109, 0.68);
  border-radius: 999px;
  color: #ffd56d;
  background: linear-gradient(180deg, #19140a, #050505);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.mobile-inline-ad {
  display: none;
}

.hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 17, 22, 0.94), rgba(12, 17, 22, 0.6)),
    url("https://images.unsplash.com/photo-1517927033932-b3d18e61fb3a?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 48px 0 38px;
}

.lead-story {
  max-width: 620px;
  padding-bottom: 0;
}

.lead-story,
.featured-story,
.sidebar-panel,
.article-card,
.article-side,
.toc {
  border-radius: 6px;
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero .label {
  color: #ffd56d;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 90px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead-story h1 {
  white-space: nowrap;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
}

.hero-text {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  font-weight: 800;
}

.featured-story {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  padding: 0;
  color: #fff;
  text-decoration: none;
  background: rgba(8, 11, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.featured-story img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  background: rgba(255, 255, 255, 0.08);
}

.featured-story-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 10px;
  padding: 82px 22px 22px;
  background: linear-gradient(180deg, rgba(5, 8, 10, 0), rgba(5, 8, 10, 0.76) 32%, rgba(5, 8, 10, 0.96));
}

.featured-story-overlay .label {
  width: fit-content;
  margin: 0;
}

.featured-story h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(22px, 2.45vw, 32px);
  line-height: 1.12;
}

.featured-story p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

.hero-promo-strip {
  grid-column: 1 / -1;
  display: block;
  min-height: 74px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 213, 109, 0.28);
  border-radius: 6px;
  color: #fff;
  background: #050505;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.hero-promo-image {
  width: 100%;
  height: auto;
  aspect-ratio: 2320 / 360;
  object-fit: contain;
}

.hero-promo-mobile-image {
  display: none;
  width: 100%;
  height: auto;
  aspect-ratio: 732 / 300;
  object-fit: fill;
}

.hero-promo-mobile-copy {
  display: none;
}

.hero-promo-brand {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 213, 109, 0.48);
  border-radius: 999px;
  color: #ffd56d;
  background: #070707;
  font-weight: 900;
}

.hero-promo-copy,
.hero-promo-item {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.hero-promo-strip strong {
  color: #ffd56d;
  font-size: 15px;
  white-space: nowrap;
}

.hero-promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #07120d;
  background: #ffd56d;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.read-meta {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero .read-meta {
  color: rgba(255, 255, 255, 0.72);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 1px;
  margin-top: -26px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.category-card {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  background: #fff;
  text-decoration: none;
}

.category-card strong {
  font-size: 16px;
  line-height: 1.18;
  text-align: center;
}

.category-card:hover {
  background: var(--soft);
}

.magazine-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  padding: 62px 0 8px;
}

.section-head {
  margin: 0 0 20px;
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
}

.story-list {
  display: grid;
  gap: 14px;
}

.sidebar-panel {
  align-self: start;
  padding: 0;
  color: #fff;
  background: transparent;
}

.sidebar-panel h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.08;
}

.sidebar-panel p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.ad-slot {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  background: #08111a;
  box-shadow: var(--shadow);
}

.ad-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 12, 0.08), rgba(4, 7, 12, 0.3));
  pointer-events: none;
}

.ad-rotator {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 260px;
}

.ad-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 320ms ease, transform 1000ms ease;
}

.ad-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.ad-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-caption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 6px;
  padding: 18px 18px 54px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 10, 15, 0), rgba(6, 10, 15, 0.82) 44%, rgba(6, 10, 15, 0.95));
}

.ad-caption p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.28;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.ad-kicker {
  color: #ffe79a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-logo {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 3;
  width: 110px;
  max-width: 40%;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
}

.ad-dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.ad-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.ad-dot.is-active {
  width: 22px;
  background: #ffe79a;
}

.ad-slot-article {
  margin: 0;
}

.ad-slot-article .ad-rotator {
  min-height: 340px;
}

.ad-slot:hover .ad-slide.is-active {
  transform: scale(1.015);
}

.filter-box {
  width: min(360px, 100%);
}

.search {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.topic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  text-decoration: none;
}

.topic[aria-pressed="true"],
.topic[aria-current="true"],
.topic.is-active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

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

.article-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 33, 43, 0.06);
}

.article-card[hidden] {
  display: none;
}

.card-link {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
  text-decoration: none;
}

.card-link img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center center;
  background: var(--soft);
}

.article-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.22;
}

.article-card p {
  flex: 1;
  color: var(--muted);
  line-height: 1.58;
}

.article-card.compact .card-link {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 8px 16px;
  min-height: 0;
}

.article-card.compact img {
  grid-row: 1 / span 4;
  margin: 0;
}

.article-card.compact .label,
.article-card.compact h3,
.article-card.compact p,
.article-card.compact .read-meta {
  grid-column: 2;
}

.article-card.compact p {
  margin: 0;
}

.category-hero,
.article-hero {
  background: var(--soft);
}

.category-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f5f7f5;
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 62%, rgba(255, 255, 255, 0.7) 62% 63%, transparent 63%),
    linear-gradient(56deg, transparent 0 56%, rgba(255, 255, 255, 0.56) 56% 57%, transparent 57%),
    linear-gradient(92deg, transparent 0 70%, rgba(255, 255, 255, 0.5) 70% 71%, transparent 71%),
    linear-gradient(26deg, transparent 0 68%, rgba(255, 255, 255, 0.44) 68% 69%, transparent 69%);
  opacity: 0.82;
  pointer-events: none;
}

.category-hero::before,
.category-hero::after {
  display: none;
}

.category-hero::before {
  content: "";
  position: absolute;
  right: 4%;
  top: -56px;
  width: min(520px, 48vw);
  aspect-ratio: 1;
  border: 1px solid rgba(37, 64, 84, 0.06);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 72px rgba(255, 255, 255, 0.12),
    inset 0 0 0 152px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.article-hero {
  padding: 46px 0;
}

.category-hero .container {
  min-height: 0;
  padding: 26px 0 24px;
}

.category-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 1;
}

.category-hero-copy {
  min-width: 0;
}

.category-hero .breadcrumb {
  margin-bottom: 14px;
}

.category-hero .eyebrow {
  margin-bottom: 10px;
  color: var(--green);
}

.category-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(42px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.category-hero-description {
  max-width: 920px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  overflow-wrap: break-word;
}

.category-positioning {
  display: inline-flex;
  margin: 16px 0 0;
  color: #23755c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.category-banner-slot {
  justify-self: end;
  width: min(100%, 360px);
}

.category-banner-placeholder {
  position: relative;
  display: block;
  min-height: 180px;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 213, 109, 0.28);
  border-radius: 6px;
  color: #fff;
  background: #050505;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.category-banner-rotator {
  position: absolute;
  inset: 0;
  display: block;
}

.category-banner-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-banner-dots {
  position: absolute;
  right: 10px;
  bottom: 9px;
  z-index: 2;
  display: flex;
  gap: 5px;
}

.category-banner-dots .ad-dot {
  width: 6px;
  height: 6px;
}

.category-banner-dots .ad-dot.is-active {
  width: 16px;
}

.banner-kicker {
  color: #ffd56d;
  font-size: 20px;
  font-weight: 950;
}

.banner-copy {
  max-width: 270px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.18;
}

.banner-benefits {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.banner-cta {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #07120d;
  background: #ffd56d;
  font-size: 13px;
  font-weight: 900;
}

.category-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.category-hero-tags a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(10, 107, 79, 0.14);
  border-radius: 8px;
  color: #174235;
  background: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(23, 33, 43, 0.08);
}

.tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--green);
  background: rgba(10, 107, 79, 0.1);
  font-size: 9px;
  font-weight: 850;
}

.tag-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-quick-card {
  display: none;
  width: min(100%, 332px);
  justify-self: end;
  padding: 22px 24px;
  border: 1px solid rgba(223, 227, 225, 0.72);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(23, 33, 43, 0.12);
}

.category-quick-card-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
}

.category-quick-card a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  color: #26313b;
  text-decoration: none;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.quick-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  color: var(--green);
}

.quick-card-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-card-arrow {
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
}

.category-hero-banner-wrap {
  margin-top: 26px;
}

.category-hero-banner-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.category-hero-banner {
  display: block;
  width: 100%;
}

.category-hero-banner-cta {
  position: absolute;
  right: 22px;
  bottom: 18px;
  padding: 10px 18px;
  border-radius: 4px;
  color: #0b1118;
  background: #ffd33d;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.article-hero h1 {
  max-width: 940px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.article-summary,
.empty-state {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: none;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.article-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 44px;
  padding: 44px 0;
  align-items: start;
}

.article-body {
  font-size: 18px;
  line-height: 1.78;
}

.article-body h2 {
  margin-top: 38px;
  font-size: 30px;
  line-height: 1.18;
}

.article-body h3 {
  margin-top: 30px;
  font-size: 23px;
}

.article-body p,
.article-body li {
  color: #343434;
}

.article-body img {
  width: 100%;
  height: auto;
  margin: 0 0 26px;
  border-radius: 6px;
}

.table-scroll {
  overflow-x: auto;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.article-body th,
.article-body td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.article-side {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 18px;
}

.toc {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.toc strong {
  display: block;
  margin-bottom: 12px;
}

.toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  text-decoration: none;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.35;
}

.related,
.category-body {
  padding: 44px 0 56px;
}

.category-body {
  padding-top: 28px;
}

.league-inline-banner {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  width: min(100%, 265px);
  justify-self: center;
  background: transparent;
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.08);
}

.league-inline-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.category-body-head {
  align-items: start;
  margin-bottom: 18px;
}

.category-body-head .league-inline-banner {
  margin-top: 4px;
  justify-self: end;
}

.category-body-actions .league-inline-banner {
  width: min(100%, 160px);
}

.category-body-head h2 {
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 1.15;
}

.category-body-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.category-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.category-view-all span {
  font-size: 20px;
  line-height: 1;
}

.category-body-actions {
  display: grid;
  justify-items: end;
}

.mobile-inline-ad {
  width: min(100%, 343px);
  overflow: hidden;
  border-radius: 6px;
  background: #050505;
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.12);
}

.mobile-inline-ad img {
  width: 100%;
  height: auto;
}

.v9-reward-floating {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  top: 50%;
  z-index: 31;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 123px;
  min-height: 144px;
  border-radius: 999px;
  text-decoration: none;
  transform-origin: center;
  -webkit-tap-highlight-color: transparent;
  animation:
    rewardFloat 2.8s ease-in-out infinite,
    rewardGlow 2.4s ease-in-out infinite;
}

.v9-reward-art {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease;
}

.v9-reward-chest {
  width: 114px;
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.26));
}

@keyframes rewardFloat {
  0%,
  100% {
    transform: translateY(-50%) translateY(0) scale(1);
  }

  50% {
    transform: translateY(-50%) translateY(-4px) scale(1.02);
  }
}

@keyframes rewardChestPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

@keyframes rewardGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(8, 126, 73, 0.38),
      0 10px 24px rgba(0, 0, 0, 0.2),
      0 0 0 rgba(255, 213, 109, 0);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255, 213, 109, 0.56),
      0 12px 28px rgba(0, 0, 0, 0.24),
      0 0 18px rgba(0, 128, 73, 0.36);
  }
}

.site-footer {
  margin-top: 58px;
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-grid p {
  max-width: 680px;
  margin: 8px 0 0;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 8px;
  min-width: 180px;
}

@media (max-width: 768px) {
  .v9-reward-floating {
    right: max(6px, env(safe-area-inset-right));
    width: 81px;
    min-height: 99px;
  }

  .v9-reward-art {
    animation: rewardChestPulse 1.7s ease-in-out infinite;
  }

  .v9-reward-floating::after {
    position: absolute;
    right: 7px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 226, 123, 0.88);
    box-shadow: 0 0 12px rgba(255, 226, 123, 0.74);
    content: "";
    opacity: 0.78;
  }

  .v9-reward-floating:active .v9-reward-art {
    transform: scale(0.94);
  }

  .v9-reward-chest {
    width: 75px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v9-reward-floating,
  .v9-reward-art {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .category-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 6px;
    gap: 8px;
  }

  .nav-main {
    width: 100%;
    justify-content: space-between;
    min-width: 0;
    gap: 8px;
  }

  .nav-actions {
    display: flex;
    flex: 0 0 auto;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 6px;
    width: 100%;
  }

  .mobile-nav-row > a,
  .mobile-more-toggle {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: #26313b;
    background: #fff;
    text-decoration: none;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-more-toggle[aria-expanded="true"] {
    color: #fff;
    border-color: var(--green);
    background: var(--green);
  }

  .mobile-more-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 40;
    display: grid;
    gap: 4px;
    width: min(240px, calc(100vw - 24px));
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .mobile-more-menu[hidden] {
    display: none;
  }

  .mobile-more-menu a {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 4px;
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
  }

  .mobile-more-menu a:hover {
    background: var(--soft);
  }

  .hero-grid,
  .magazine-layout,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 560px;
  }

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

  .hero-promo-copy {
    grid-column: 1 / -1;
  }

  .lead-story {
    max-width: 100%;
  }

  .featured-story,
  .featured-story img {
    min-height: 340px;
  }

  .lead-story h1 {
    white-space: normal;
    font-size: clamp(46px, 10vw, 72px);
  }

  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-hero-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
  }

  .category-hero .container {
    min-height: 0;
    padding: 28px 0;
  }

  .category-banner-slot {
    display: none;
  }

  .league-inline-banner {
    justify-self: start;
    max-width: 265px;
  }

  .article-side {
    position: static;
  }

  .article-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .category-hero h1 {
    font-size: 48px;
    line-height: 1.03;
  }

  .category-body-actions {
    justify-items: start;
  }

  .category-body-head {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .container,
  .nav {
    width: min(1160px, calc(100% - 24px));
  }

  .brand-logo {
    width: 118px;
  }

  .nav-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px auto;
    align-items: center;
    gap: 8px;
    justify-content: stretch;
  }

  .brand {
    min-width: 0;
  }

  .nav-actions {
    display: contents;
  }

  .nav-search {
    grid-column: 2;
    justify-self: end;
  }

  .nav-v9bet-cta {
    grid-column: 3;
    justify-self: end;
  }

  .nav-v9bet-cta {
    min-height: 34px;
    padding: 0 10px;
  }

  .nav-search {
    width: 34px;
    flex: 0 0 34px;
  }

  .mobile-nav-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 4px;
    width: 100%;
    overflow: visible;
  }

  .mobile-nav-row > a,
  .mobile-more-toggle {
    flex: 0 0 auto;
    padding: 0 5px;
    font-size: 11px;
  }

  .desktop-ad,
  .sidebar-panel .ad-slot,
  .article-side .ad-slot,
  .category-strip {
    display: none;
  }

  .mobile-inline-ad {
    display: block;
    grid-column: 1 / -1;
    margin: 12px auto 4px;
  }

  main > .mobile-inline-ad {
    width: min(343px, calc(100% - 24px));
    margin: 14px auto 2px;
  }

  .hero-grid {
    min-height: 0;
    padding: 24px 0 26px;
    gap: 18px;
  }

  .lead-story h1 {
    white-space: normal;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.04;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.55;
  }

  .featured-story,
  .featured-story img {
    min-height: 300px;
  }

  .featured-story-overlay {
    gap: 8px;
    padding: 68px 16px 16px;
  }

  .featured-story h2 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero-promo-strip {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .hero-promo-image {
    display: none;
  }

  .hero-promo-mobile-image {
    display: block;
  }

  .hero-promo-mobile-copy {
    display: none;
  }

  .hero-promo-brand,
  .hero-promo-cta {
    width: fit-content;
  }

  .hero-promo-item {
    display: none;
  }

  .article-hero h1 {
    font-size: 24px;
    line-height: 1.12;
  }

  .article-hero {
    padding: 20px 0 22px;
  }

  .article-hero .breadcrumb {
    margin-bottom: 12px;
  }

  .article-hero .eyebrow {
    margin-bottom: 8px;
  }

  .article-hero .article-meta {
    margin-top: 12px;
  }

  .article-summary {
    display: -webkit-box;
    margin-top: 14px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 15px;
    line-height: 1.55;
  }

  .category-hero .container {
    padding: 22px 0;
  }

  .category-hero h1 {
    font-size: 40px;
    line-height: 1;
  }

  .category-hero-description {
    font-size: 15px;
    line-height: 1.58;
  }

  .category-hero-tags {
    gap: 8px;
    margin-top: 16px;
  }

  .category-hero-tags a {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .category-quick-card {
    display: none;
  }

  .category-hero-banner-cta {
    display: none;
  }

  .category-body-head h2 {
    font-size: 22px;
  }

  .category-positioning {
    display: block;
    font-size: 14px;
  }

  .sidebar-panel,
  .card-link {
    padding: 18px;
  }

  .ad-rotator {
    aspect-ratio: 16 / 10;
  }

  .ad-slot-article .ad-rotator {
    min-height: 260px;
  }

  .category-strip,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .section-head.split,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .category-body-head .league-inline-banner {
    align-self: flex-start;
    margin-top: 0;
  }

  .article-card.compact .card-link {
    display: flex;
  }

}
