:root {
  color-scheme: dark;
  --bg: #07090d;
  --surface: #0d121b;
  --card: #121925;
  --card-high: #182231;
  --line: #263244;
  --text: #f5f7fa;
  --muted: #aab4c3;
  --weak: #738095;
  --blue: #1677ff;
  --blue-light: #2d8cff;
  --blue-deep: #0c3f8f;
  --red: #f04444;
  --green: #27c281;
  --yellow: #f4b740;
  --radius: 16px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 5%, rgba(22, 119, 255, 0.08), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(38, 50, 68, 0.66);
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  gap: 10px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.brand-name {
  color: var(--text);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 16px;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}

.desktop-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -26px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.icon-button,
.login-button,
.follow-button,
.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
}

.icon-button:hover {
  border-color: var(--line);
  background: var(--card);
  color: var(--text);
}

.notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--red);
}

.login-button {
  height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  gap: 8px;
  font-weight: 700;
}

.mobile-search-section {
  display: none;
}

.hero-section {
  padding-top: 30px;
}

.hero-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(38, 50, 68, 0.9);
  border-radius: 22px;
  background: var(--surface);
  isolation: isolate;
}

.hero-image,
.hero-shade,
.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.88) 32%, rgba(5, 7, 10, 0.2) 72%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.72) 0%, transparent 40%);
}

.hero-lines {
  z-index: 2;
  opacity: 0.55;
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(22, 119, 255, 0.24) 36.1% 36.3%, transparent 36.4%),
    linear-gradient(110deg, transparent 0 41%, rgba(240, 68, 68, 0.2) 41.1% 41.25%, transparent 41.35%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 54%;
  min-height: 590px;
  padding: 68px 60px;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
}

.status-ticket {
  border-color: rgba(240, 68, 68, 0.35);
  background: rgba(240, 68, 68, 0.15);
  color: #ff7777;
}

.status-entry {
  border-color: rgba(22, 119, 255, 0.4);
  background: rgba(22, 119, 255, 0.16);
  color: #73aeff;
}

.status-soon {
  border-color: rgba(244, 183, 64, 0.35);
  background: rgba(244, 183, 64, 0.12);
  color: #ffd172;
}

.series-label {
  color: var(--muted);
  font-size: 11px;
}

.hero-overline,
.section-kicker {
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.hero-overline {
  margin: 29px 0 7px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(50px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.hero-description {
  max-width: 520px;
  margin: 24px 0 20px;
  color: #c5cdda;
  font-size: 16px;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  gap: 9px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-red {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 34px rgba(240, 68, 68, 0.18);
}

.button-blue {
  background: var(--blue);
  color: white;
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  backdrop-filter: blur(12px);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
}

.hero-facts {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: 24px;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(5, 7, 10, 0.7);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  min-width: 104px;
  padding: 15px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts div:first-child {
  border-left: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 17px;
}

.hero-facts span {
  margin-top: 3px;
  color: var(--weak);
  font-size: 10px;
}

.quick-actions-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.quick-action {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18, 25, 37, 0.94), rgba(13, 18, 27, 0.96));
  gap: 13px;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.quick-action:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 119, 255, 0.55);
}

.quick-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border-radius: 12px;
  background: rgba(22, 119, 255, 0.14);
  color: var(--blue-light);
}

.quick-icon-red {
  background: rgba(240, 68, 68, 0.13);
  color: #ff7474;
}

.quick-action strong,
.quick-action small {
  display: block;
}

.quick-action strong {
  font-size: 15px;
}

.quick-action small {
  margin-top: 4px;
  color: var(--weak);
  font-size: 11px;
}

.content-section {
  padding: 78px 0 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 6px 0 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.section-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.section-link:hover {
  color: var(--text);
}

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

.event-card,
.fighter-card,
.result-card,
.course-card,
.rank-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.event-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.event-card:hover,
.fighter-card:hover,
.course-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 119, 255, 0.55);
}

.event-visual {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.event-visual::before,
.event-visual::after {
  position: absolute;
  content: "";
}

.event-visual::after {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.42)),
    linear-gradient(90deg, rgba(7, 10, 16, 0.34), transparent 55%);
}

.event-photo,
.fighter-photo,
.course-photo,
.story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-photo {
  position: absolute;
  inset: 0;
  filter: saturate(0.82) contrast(1.06);
}

.visual-shanghai .event-photo {
  object-position: 36% 38%;
}

.visual-chengdu .event-photo {
  object-position: center 58%;
}

.visual-shenzhen .event-photo {
  object-position: center 46%;
}

.visual-shanghai {
  background:
    radial-gradient(circle at 25% 80%, rgba(240, 68, 68, 0.36), transparent 35%),
    radial-gradient(circle at 75% 40%, rgba(22, 119, 255, 0.42), transparent 36%),
    #0b1018;
}

.visual-chengdu {
  background:
    linear-gradient(130deg, rgba(22, 119, 255, 0.12), transparent 45%),
    repeating-linear-gradient(105deg, transparent 0 32px, rgba(255, 255, 255, 0.03) 33px 34px),
    #111b29;
}

.visual-shenzhen {
  background:
    radial-gradient(circle at 75% 30%, rgba(240, 68, 68, 0.22), transparent 32%),
    linear-gradient(150deg, #151921, #0c1119);
}

.event-date {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(5, 7, 10, 0.62);
  backdrop-filter: blur(8px);
}

.event-date b {
  font-size: 22px;
  line-height: 1;
}

.event-date small {
  margin-top: 5px;
  color: var(--muted);
}

.event-visual > .status {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
}

.visual-fighters {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.visual-fighters b {
  z-index: 2;
  color: var(--weak);
  font-size: 12px;
  font-style: italic;
}

.fighter-silhouette {
  display: grid;
  width: 104px;
  height: 144px;
  place-items: center;
  border-radius: 60px 60px 0 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 58px;
  font-weight: 900;
}

.fighter-silhouette.red {
  background: linear-gradient(180deg, rgba(240, 68, 68, 0.65), rgba(70, 14, 18, 0.85));
}

.fighter-silhouette.blue {
  background: linear-gradient(180deg, rgba(22, 119, 255, 0.68), rgba(8, 36, 75, 0.9));
}

.city-word {
  position: absolute;
  right: -8px;
  bottom: -32px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 112px;
  font-weight: 950;
  letter-spacing: -0.12em;
}

.event-body {
  padding: 18px;
}

.event-topline,
.event-footer {
  display: flex;
  justify-content: space-between;
}

.event-topline {
  color: var(--weak);
  font-size: 11px;
}

.event-body h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.event-body > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-body > p span {
  padding: 0 4px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
}

.event-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--weak);
  font-size: 11px;
}

.event-footer strong {
  color: var(--text);
}

.event-footer .blue-text {
  color: var(--blue-light);
}

.results-section {
  position: relative;
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.result-list {
  display: grid;
  gap: 12px;
}

.result-card {
  padding: 19px;
}

.result-head,
.result-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-head {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.verified {
  display: inline-flex;
  align-items: center;
  color: #64dea9;
  gap: 6px;
  font-size: 11px;
  font-weight: 750;
}

.result-head time {
  color: var(--weak);
  font-size: 10px;
}

.matchup {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  align-items: center;
  gap: 12px;
  padding: 21px 0;
}

.matchup-side {
  display: flex;
  align-items: center;
  gap: 12px;
}

.matchup-side-right {
  justify-content: flex-end;
  text-align: right;
}

.matchup-side strong,
.matchup-side small {
  display: block;
}

.matchup-side strong {
  font-size: 16px;
}

.matchup-side small {
  margin-top: 4px;
  color: var(--weak);
  font-size: 10px;
}

.corner-avatar,
.mini-avatar {
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.corner-avatar {
  position: relative;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 2px solid;
  background: #0b1018;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.28);
}

.corner-avatar img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.result-card:first-child .corner-red img {
  object-position: 50% 25%;
  transform: scale(1.35);
  transform-origin: 50% 26%;
}

.result-card:first-child .corner-blue img {
  object-position: 50% 20%;
  transform: scale(1.18);
  transform-origin: 50% 22%;
}

.result-card:nth-child(2) .corner-red img {
  object-position: 28% 28%;
  transform: scale(2.15);
  transform-origin: 24% 24%;
}

.result-card:nth-child(2) .corner-blue img {
  object-position: 50% 20%;
  transform: scale(1.3);
  transform-origin: 50% 25%;
}

.corner-red {
  border-color: rgba(240, 68, 68, 0.75);
}

.corner-blue {
  border-color: rgba(22, 119, 255, 0.75);
}

.result-center {
  text-align: center;
}

.result-center b,
.result-center span {
  display: block;
}

.result-center b {
  color: white;
  font-size: 25px;
  font-style: italic;
  letter-spacing: 0.02em;
}

.result-center span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.result-foot {
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.result-foot button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue-light);
  cursor: pointer;
  gap: 6px;
  font-size: 11px;
  font-weight: 750;
}

.rank-panel {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  padding: 20px;
}

.rank-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rank-panel-head h3 {
  margin: 5px 0 0;
  font-size: 22px;
}

.rank-note {
  color: var(--weak);
  font-size: 9px;
}

.rank-list {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(4, minmax(66px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-list li {
  display: grid;
  grid-template-columns: 28px 40px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 66px;
  border-top: 1px solid var(--line);
  gap: 10px;
}

.rank-list > li > b {
  color: var(--weak);
  font-size: 11px;
  font-style: italic;
}

.mini-avatar {
  width: 36px;
  height: 36px;
  font-size: 12px;
}

.avatar-a,
.fighter-bg-a {
  background: linear-gradient(150deg, #43151b, #141721 62%, #102e57);
}

.avatar-b,
.fighter-bg-b {
  background: linear-gradient(150deg, #153f78, #101824 58%, #47151c);
}

.avatar-c,
.fighter-bg-c {
  background: linear-gradient(150deg, #1e2939, #4d2c13);
}

.avatar-d,
.fighter-bg-d {
  background: linear-gradient(150deg, #3d1a45, #12324f);
}

.rank-list strong,
.rank-list small {
  display: block;
}

.rank-list strong {
  font-size: 13px;
}

.rank-list small {
  margin-top: 3px;
  color: var(--weak);
  font-size: 9px;
}

.trend-up {
  color: var(--green);
  font-size: 10px;
}

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

.fighter-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.fighter-card-top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 260px;
  overflow: hidden;
}

.fighter-card-top::before,
.fighter-card-top::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.fighter-card-top::before {
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.03) 34%, rgba(6, 8, 12, 0.82));
}

.fighter-card-top::after {
  background: linear-gradient(135deg, rgba(240, 68, 68, 0.12), transparent 45%, rgba(22, 119, 255, 0.14));
  mix-blend-mode: screen;
}

.fighter-photo {
  position: absolute;
  inset: 0;
  filter: saturate(0.78) contrast(1.08);
}

.fighter-bg-a .fighter-photo {
  object-position: center 26%;
}

.fighter-bg-b .fighter-photo {
  object-position: 36% center;
}

.fighter-bg-c .fighter-photo {
  object-position: center 22%;
}

.fighter-bg-d .fighter-photo {
  object-position: center 33%;
}

.fighter-initial {
  color: rgba(255, 255, 255, 0.12);
  font-size: 160px;
  font-weight: 950;
  line-height: 0.8;
  transform: translateY(10px);
}

.follow-button {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(5, 7, 10, 0.45);
  color: white;
  backdrop-filter: blur(8px);
}

.follow-button.active {
  border-color: rgba(240, 68, 68, 0.5);
  background: rgba(240, 68, 68, 0.18);
  color: #ff7575;
}

.follow-button.active svg {
  fill: currentColor;
}

.weight-badge {
  position: absolute;
  z-index: 2;
  bottom: 13px;
  left: 13px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(5, 7, 10, 0.5);
  font-size: 10px;
  backdrop-filter: blur(8px);
}

.fighter-card-body {
  padding: 17px;
}

.fighter-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.fighter-title h3 {
  margin: 0;
  font-size: 18px;
}

.fighter-title p {
  margin: 4px 0 0;
  color: var(--weak);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.small-verified {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
}

.small-verified svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}

.record-row {
  display: flex;
  align-items: baseline;
  margin-top: 18px;
  gap: 9px;
}

.record-row strong {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.record-row span {
  color: var(--red);
  font-size: 10px;
  font-weight: 750;
}

.fighter-card-body > p {
  margin: 9px 0 0;
  color: var(--weak);
  font-size: 10px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  gap: 16px;
}

.lead-story,
.story-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.lead-story {
  overflow: hidden;
}

.lead-story-image {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.lead-story-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 9, 13, 0.65), transparent 55%);
  content: "";
}

.lead-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.story-tag,
.distance {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.play-button {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(5, 7, 10, 0.55);
  backdrop-filter: blur(9px);
}

.lead-story-content {
  padding: 22px;
}

.lead-story-content > span,
.story-row span {
  color: var(--blue-light);
  font-size: 10px;
}

.lead-story-content h3 {
  max-width: 650px;
  margin: 8px 0;
  font-size: 23px;
  line-height: 1.45;
}

.lead-story-content p,
.story-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

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

.story-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  padding: 13px;
  gap: 16px;
}

.story-row h3 {
  margin: 7px 0 6px;
  font-size: 15px;
  line-height: 1.5;
}

.story-thumb {
  position: relative;
  display: grid;
  height: 96px;
  overflow: hidden;
  place-items: center;
  border-radius: 12px;
  font-weight: 900;
}

.story-thumb::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 10, 0.7), rgba(5, 7, 10, 0.08));
  content: "";
}

.story-thumb img {
  position: absolute;
  inset: 0;
  filter: saturate(0.72) contrast(1.05);
}

.story-thumb span {
  z-index: 2;
  align-self: end;
  margin: 0 0 9px 9px;
  justify-self: start;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(5, 7, 10, 0.55);
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  backdrop-filter: blur(6px);
}

.story-thumb-a {
  background: linear-gradient(145deg, #142743, #45171c);
}

.story-thumb-b {
  background: linear-gradient(145deg, #182434, #0d4377);
}

.story-thumb-c {
  background: linear-gradient(145deg, #321949, #111a27);
}

.location-selector {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--card);
  color: var(--muted);
  cursor: pointer;
  gap: 6px;
  font-size: 12px;
}

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

.course-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.course-visual {
  position: relative;
  display: grid;
  height: 180px;
  overflow: hidden;
  place-items: center;
}

.course-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.06), rgba(5, 7, 10, 0.46));
  content: "";
}

.course-photo {
  position: absolute;
  inset: 0;
  filter: saturate(0.75) contrast(1.06);
}

.course-a .course-photo {
  object-position: center 30%;
}

.course-b .course-photo {
  object-position: center 44%;
}

.course-c .course-photo {
  object-position: center 46%;
}

.course-a {
  background:
    repeating-linear-gradient(95deg, transparent 0 38px, rgba(255, 255, 255, 0.035) 39px 40px),
    linear-gradient(145deg, #172d4d, #171218);
}

.course-b {
  background: linear-gradient(145deg, #421a20, #0d1724 72%);
}

.course-c {
  background: linear-gradient(145deg, #1a3844, #10141e);
}

.distance {
  z-index: 2;
  background: rgba(5, 7, 10, 0.52);
  color: var(--muted);
}

.course-icon {
  color: rgba(255, 255, 255, 0.12);
  font-size: 72px;
  font-weight: 950;
  font-style: italic;
}

.course-body {
  padding: 18px;
}

.course-org {
  display: flex;
  align-items: center;
  color: var(--muted);
  gap: 7px;
  font-size: 10px;
}

.course-body h3 {
  margin: 11px 0 8px;
  font-size: 18px;
}

.course-body > p {
  margin: 0;
  color: var(--weak);
  font-size: 11px;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.course-footer b {
  color: var(--red);
  font-size: 20px;
}

.course-footer del {
  margin-left: 7px;
  color: var(--weak);
  font-size: 10px;
}

.course-footer button {
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.sponsor-section {
  padding-top: 84px;
}

.sponsor-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(22, 119, 255, 0.4);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 50%, rgba(22, 119, 255, 0.22), transparent 25rem),
    linear-gradient(130deg, #101722, #0a0e15);
}

.sponsor-card::before {
  position: absolute;
  top: -70%;
  right: 26%;
  width: 1px;
  height: 210%;
  background: rgba(22, 119, 255, 0.25);
  content: "";
  transform: rotate(25deg);
}

.sponsor-copy {
  z-index: 1;
  align-self: center;
  padding: 54px;
}

.sponsor-copy h2 {
  margin: 9px 0 14px;
  font-size: 38px;
  letter-spacing: -0.05em;
}

.sponsor-copy > p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.8;
}

.sponsor-stats {
  display: flex;
  gap: 38px;
  margin: 29px 0;
}

.sponsor-stats strong,
.sponsor-stats span {
  display: block;
}

.sponsor-stats strong {
  font-size: 24px;
}

.sponsor-stats span {
  margin-top: 4px;
  color: var(--weak);
  font-size: 10px;
}

.sponsor-assets {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px;
  gap: 11px;
}

.sponsor-assets::before {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(22, 119, 255, 0.25);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 28px rgba(22, 119, 255, 0.04),
    0 0 0 62px rgba(22, 119, 255, 0.025);
}

.sponsor-assets span {
  z-index: 1;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(18, 25, 37, 0.85);
  font-size: 11px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.partner-section {
  padding: 72px 0 82px;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 210px;
  padding: 44px 50px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(110deg, rgba(240, 68, 68, 0.075), transparent 30%),
    linear-gradient(250deg, rgba(22, 119, 255, 0.11), transparent 32%),
    var(--card);
}

.partner-card h2 {
  margin: 7px 0 9px;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
}

.partner-actions {
  display: grid;
  width: min(100%, 390px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.partner-actions .button {
  width: 100%;
  padding-right: 18px;
  padding-left: 18px;
}

.site-footer {
  padding: 36px 0 110px;
  border-top: 1px solid var(--line);
  background: #05070a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-logo {
  height: 64px;
}

.footer-inner p {
  margin: 0;
  color: var(--weak);
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
}

.footer-inner small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(38, 50, 68, 0.6);
  color: #536074;
  font-size: 9px;
}

.footer-inner small a {
  color: #71829a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.mobile-more-layer {
  display: none;
}

.search-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: start center;
  opacity: 0;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.search-overlay.open {
  visibility: visible;
  opacity: 1;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 5, 8, 0.76);
  backdrop-filter: blur(10px);
}

.search-panel {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 760px);
  margin-top: 10vh;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  transform: translateY(-12px);
  transition: transform 180ms ease;
}

.search-overlay.open .search-panel {
  transform: translateY(0);
}

.search-panel-header {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  gap: 10px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  height: 50px;
  flex: 1;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  color: var(--weak);
  gap: 10px;
}

.search-input-wrap input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.search-input-wrap kbd {
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--weak);
  font-size: 9px;
}

.search-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.search-panel-body {
  padding: 22px;
}

.search-label {
  margin: 0 0 12px;
  color: var(--weak);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.search-chips {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 27px;
  gap: 8px;
}

.search-chips button {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
}

.search-shortcuts {
  display: grid;
}

.search-shortcuts a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  gap: 10px;
}

.search-shortcuts > a > span {
  color: var(--blue-light);
  font-size: 10px;
  font-style: italic;
}

.search-shortcuts strong,
.search-shortcuts small {
  display: block;
}

.search-shortcuts strong {
  font-size: 13px;
}

.search-shortcuts small {
  margin-top: 3px;
  color: var(--weak);
  font-size: 9px;
}

.toast {
  position: fixed;
  z-index: 120;
  bottom: 28px;
  left: 50%;
  visibility: hidden;
  padding: 12px 17px;
  border: 1px solid rgba(39, 194, 129, 0.35);
  border-radius: 10px;
  background: rgba(12, 34, 28, 0.95);
  color: #8de2bc;
  opacity: 0;
  font-size: 12px;
  transform: translate(-50%, 10px);
  transition: 180ms ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .hero-content {
    width: 62%;
  }

  .results-layout {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    display: none;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 58px;
  }

  .brand-logo {
    height: 44px;
  }

  .brand {
    gap: 8px;
  }

  .brand-name {
    font-size: 20px;
  }

  .desktop-nav,
  .search-trigger.icon-button,
  .login-button {
    display: none;
  }

  .mobile-search-section {
    display: block;
    padding-top: 12px;
  }

  .mobile-search {
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    color: var(--weak);
    gap: 9px;
    text-align: left;
  }

  .hero-section {
    padding-top: 12px;
  }

  .hero-card {
    min-height: 570px;
    border-radius: 18px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.84) 50%, rgba(5, 7, 10, 0.22) 85%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.2), transparent);
  }

  .hero-content {
    justify-content: flex-end;
    width: 100%;
    min-height: 570px;
    padding: 26px 22px 122px;
  }

  .series-label {
    display: none;
  }

  .hero-overline {
    margin-top: 20px;
  }

  .hero-content h1 {
    font-size: 47px;
  }

  .hero-description {
    margin: 17px 0 15px;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-meta {
    display: grid;
    gap: 7px;
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    margin-top: 20px;
  }

  .button {
    min-height: 48px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-facts {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero-facts div {
    min-width: 0;
    flex: 1;
    padding: 12px 10px;
    text-align: center;
  }

  .hero-facts strong {
    font-size: 15px;
  }

  .quick-actions-section {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
  }

  .quick-action {
    flex-direction: column;
    justify-content: center;
    min-height: 91px;
    padding: 10px 3px;
    gap: 7px;
    text-align: center;
  }

  .quick-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .quick-action strong {
    font-size: 11px;
  }

  .quick-action small {
    display: none;
  }

  .content-section {
    padding-top: 57px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2 {
    font-size: 23px;
  }

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

  .section-link {
    font-size: 11px;
  }

  .horizontal-scroll {
    display: flex;
    overflow-x: auto;
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 7px;
    gap: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .horizontal-scroll::-webkit-scrollbar {
    display: none;
  }

  .horizontal-scroll > * {
    width: 83vw;
    max-width: 340px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .event-visual {
    height: 185px;
  }

  .results-layout {
    display: block;
  }

  .result-card {
    padding: 15px;
  }

  .matchup {
    grid-template-columns: 1fr 92px 1fr;
    gap: 5px;
  }

  .matchup-side {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .matchup-side-right {
    flex-direction: column-reverse;
  }

  .corner-avatar {
    width: 48px;
    height: 48px;
  }

  .matchup-side strong {
    font-size: 13px;
  }

  .result-center b {
    font-size: 22px;
  }

  .result-center span {
    font-size: 8px;
  }

  .result-foot {
    font-size: 9px;
  }

  .fighter-grid {
    display: flex;
  }

  .fighter-card-top {
    height: 220px;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .lead-story-image {
    height: 220px;
  }

  .lead-story-content {
    padding: 17px;
  }

  .lead-story-content h3 {
    font-size: 18px;
  }

  .story-row {
    grid-template-columns: 90px minmax(0, 1fr);
    padding: 10px;
    gap: 12px;
  }

  .story-thumb {
    height: 82px;
  }

  .story-row h3 {
    font-size: 13px;
  }

  .story-row p {
    display: none;
  }

  .course-grid {
    display: flex;
  }

  .course-visual {
    height: 150px;
  }

  .sponsor-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sponsor-copy {
    padding: 31px 24px;
  }

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

  .sponsor-copy > p {
    font-size: 12px;
    line-height: 1.7;
  }

  .sponsor-stats {
    justify-content: space-between;
    margin: 25px 0;
    gap: 10px;
  }

  .sponsor-assets {
    min-height: 190px;
    padding: 30px;
    border-top: 1px solid var(--line);
  }

  .partner-section {
    padding: 56px 0;
  }

  .partner-card {
    display: block;
    padding: 30px 22px;
  }

  .partner-card h2 {
    font-size: 28px;
  }

  .partner-card p {
    font-size: 12px;
    line-height: 1.7;
  }

  .partner-actions {
    margin-top: 24px;
  }

  .partner-actions .button {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }

  .footer-inner {
    display: block;
  }

  .footer-links {
    margin-top: 27px;
  }

  .footer-inner small {
    display: block;
    margin-top: 25px;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 7px max(8px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: rgba(9, 12, 18, 0.95);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav a,
  .mobile-more-trigger {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--weak);
    gap: 4px;
    font-size: 9px;
  }

  .mobile-bottom-nav > a svg {
    width: 20px;
    height: 20px;
  }

  .mobile-bottom-nav a.active {
    color: var(--blue-light);
  }

  .mobile-more-trigger {
    position: relative;
    color: #d9e7ff;
    cursor: pointer;
    font-weight: 800;
    transform: translateY(-16px);
  }

  .mobile-more-trigger-icon {
    display: grid;
    width: 49px;
    height: 49px;
    place-items: center;
    border: 4px solid #090c12;
    border-radius: 17px;
    background: linear-gradient(145deg, var(--blue), #235ddf 58%, #ec4d58);
    color: white;
    box-shadow:
      0 10px 28px rgba(22, 119, 255, 0.32),
      inset 0 1px rgba(255, 255, 255, 0.2);
    transition:
      transform 180ms ease,
      border-radius 180ms ease;
  }

  .mobile-more-trigger-icon svg {
    width: 23px;
    height: 23px;
    transform: rotate(var(--more-icon-rotation, 0deg));
    transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-more-trigger > span:last-child {
    margin-top: 1px;
  }

  .mobile-more-trigger[aria-expanded="true"] .mobile-more-trigger-icon {
    border-radius: 50%;
    transform: scale(1.04);
  }

  .mobile-more-layer {
    position: fixed;
    z-index: 69;
    inset: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .mobile-more-layer.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-more-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 5, 8, 0.66);
    backdrop-filter: blur(5px);
  }

  .mobile-more-menu {
    position: absolute;
    right: 14px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 14px;
    overflow: hidden;
    padding: 17px;
    border: 1px solid rgba(84, 112, 154, 0.36);
    border-radius: 20px;
    background:
      radial-gradient(circle at 50% 115%, rgba(22, 119, 255, 0.22), transparent 42%),
      rgba(14, 19, 28, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
    transform: translateY(18px) scale(0.98);
    transform-origin: center bottom;
    transition: transform 180ms ease;
  }

  .mobile-more-layer.open .mobile-more-menu {
    transform: translateY(0) scale(1);
  }

  .mobile-more-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2px 3px 14px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }

  .mobile-more-heading span,
  .mobile-more-heading strong {
    display: block;
  }

  .mobile-more-heading span {
    color: var(--blue-light);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
  }

  .mobile-more-heading strong {
    margin-top: 4px;
    font-size: 19px;
  }

  .mobile-more-list {
    display: grid;
  }

  .mobile-more-list a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    align-items: center;
    min-height: 69px;
    border-bottom: 1px solid var(--line);
    gap: 12px;
  }

  .mobile-more-list a:last-child {
    border-bottom: 0;
  }

  .mobile-more-item-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(22, 119, 255, 0.22);
    border-radius: 12px;
    background: rgba(22, 119, 255, 0.1);
    color: var(--blue-light);
  }

  .mobile-more-item-icon svg {
    width: 19px;
    height: 19px;
  }

  .mobile-more-list strong,
  .mobile-more-list small {
    display: block;
  }

  .mobile-more-list strong {
    color: var(--text);
    font-size: 13px;
  }

  .mobile-more-list small {
    margin-top: 4px;
    color: var(--weak);
    font-size: 9px;
  }

  .mobile-more-arrow {
    width: 16px;
    height: 16px;
    color: var(--weak);
  }

  .search-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 82vh;
    margin: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 20px 20px 0 0;
    transform: translateY(40px);
  }

  .search-input-wrap kbd {
    display: none;
  }

  .toast {
    bottom: 84px;
    width: max-content;
    max-width: calc(100% - 32px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
