:root {
  --bg: #0A1F1C;
  --bg2: #000000;
  --panel: #0E2622;
  --panel2: #122C27;
  --text: #FFFFFF;
  --muted: #9E9E9E;
  --line: #2E3B3A;
  --gold: #FFCC00;
  --green: #00C853;
  --orange: #FF6B00;
  --ice: #A0E7FF;
  --heading-font: "Source Han Sans CN", "Noto Sans CJK SC", "Microsoft YaHei", "Arial Black", sans-serif;
  --body-font: "Source Han Serif CN", "Noto Serif CJK SC", "SimSun", Georgia, serif;
  --mono-font: "JetBrains Mono", "Cascadia Mono", "Courier New", monospace;
  --max-width: 1440px;
  --content-width: 1280px;
  --space-outer: clamp(1.25rem, 4vw, 4rem);
  --space-section: clamp(3rem, 8vw, 7rem);
  --header-h: 76px;
  --radius: 0px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body[data-theme="ice"] {
  --bg: #062033;
  --bg2: #03101A;
  --panel: #082A40;
  --panel2: #0A3249;
  --line: #245066;
  --gold: #FFCC00;
  --green: #00C853;
  --orange: #FF6B00;
  --ice: #A0E7FF;
}
body[data-theme="ice"] .brand__logo::after {
  background: var(--ice);
}
a {
  color: var(--ice);
  text-decoration: none;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}
a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: var(--heading-font);
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
::selection {
  background: var(--gold);
  color: #000;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  background: var(--gold);
  color: #000;
  font-family: var(--heading-font);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  transition: top 0.3s var(--ease);
  border-bottom: none;
}
.skip-link:focus {
  top: 1rem;
  border-bottom: none;
}
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  z-index: 1500;
  pointer-events: none;
}
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 0.75rem 0.5rem 1.5rem;
  background: rgba(10, 31, 28, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
body[data-theme="ice"] .site-header {
  background: rgba(6, 32, 51, 0.82);
}
.header-panel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.25rem 0;
  border-bottom: none;
  white-space: nowrap;
}
.brand:hover {
  border-bottom: none;
}
.brand__logo {
  position: relative;
  font-family: var(--heading-font);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.1;
}
.brand__logo::after {
  content: "";
  position: absolute;
  right: -0.45rem;
  bottom: 0.25rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.brand__tagline {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.16em;
  font-family: var(--mono-font);
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border-bottom: none;
  white-space: nowrap;
  position: relative;
}
.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(0, 200, 83, 0.06));
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.nav-link:hover {
  color: var(--gold);
  border-bottom: none;
}
.nav-link:hover::before {
  opacity: 1;
}
.nav-link[aria-current="page"] {
  background: linear-gradient(135deg, var(--gold), #F0B800);
  color: #000;
  font-weight: 700;
  border-bottom: none;
}
.nav-link[aria-current="page"]::before {
  display: none;
}
.nav-link[aria-current="page"] .status-dot {
  background: #000;
}
.nav-link[aria-current="page"] .status-dot::after {
  background: var(--gold);
}
.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--line);
  position: relative;
  flex-shrink: 0;
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid transparent;
}
.nav-link:nth-child(1) .status-dot {
  background: var(--green);
}
.nav-link:nth-child(2) .status-dot {
  background: var(--gold);
}
.nav-link:nth-child(3) .status-dot {
  background: var(--ice);
}
.nav-link:nth-child(4) .status-dot {
  background: var(--orange);
}
.nav-link:nth-child(5) .status-dot {
  background: var(--green);
}
.nav-link:nth-child(6) .status-dot {
  background: var(--gold);
}
.nav-link:nth-child(1) .status-dot::after {
  border-color: var(--green);
  animation: pulse-dot 3s infinite;
}
.nav-link:nth-child(4) .status-dot::after {
  border-color: var(--orange);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.theme-switch:hover {
  border-color: var(--ice);
  color: var(--ice);
}
.theme-switch__icon {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--ice);
  position: relative;
  box-shadow: 0 0 8px rgba(160, 231, 255, 0.6);
}
.theme-switch__icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  color: var(--text);
  font-size: 0.85rem;
  font-family: var(--heading-font);
}
.nav-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.nav-toggle__bar {
  width: 1rem;
  height: 2px;
  background: currentColor;
  position: relative;
  display: inline-block;
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1rem;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.nav-toggle__bar::before {
  top: -5px;
}
.nav-toggle__bar::after {
  top: 5px;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  transform: translateY(-5px) rotate(-45deg);
}
.mobile-nav-panel {
  position: fixed;
  top: calc(var(--header-h) + 2rem);
  left: 1rem;
  right: 1rem;
  z-index: 999;
  background: rgba(10, 31, 28, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  transform-origin: top center;
}
body[data-theme="ice"] .mobile-nav-panel {
  background: rgba(6, 32, 51, 0.96);
}
.mobile-nav-panel[hidden] {
  display: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.mobile-nav__link:last-child {
  border-bottom: none;
}
.mobile-nav__link:hover {
  background: rgba(255, 204, 0, 0.1);
  color: var(--gold);
  border-bottom-color: transparent;
}
.mobile-nav__link[aria-current="page"] {
  background: linear-gradient(135deg, var(--gold), #F0B800);
  color: #000;
  font-weight: 700;
  border-bottom: none;
}
.mobile-nav__link[aria-current="page"] .status-dot {
  background: #000;
}
.mobile-nav__link[aria-current="page"] .status-dot::after {
  border-color: rgba(0, 0, 0, 0.5);
}
.footer-board {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding: var(--space-section) var(--space-outer) 2rem;
  margin-top: var(--space-section);
  position: relative;
}
.footer-board::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 40px, transparent 40px 80px, var(--green) 80px 120px, transparent 120px 160px);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: var(--content-width);
  margin: 0 auto;
}
.brand--footer {
  margin-bottom: 1rem;
}
.footer-note {
  color: var(--muted);
  font-size: 0.875rem;
  max-width: 30rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  line-height: 1.6;
}
.footer-heading {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--gold);
}
.footer-cols__links,
.footer-cols__legal,
.footer-cols__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-link {
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.2rem 0;
  border-bottom: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-link::before {
  content: "→";
  color: var(--green);
  font-family: var(--mono-font);
  transition: transform 0.3s var(--ease);
}
.footer-link:hover {
  color: var(--gold);
  border-bottom: none;
  transform: translateX(3px);
}
.footer-link:hover::before {
  transform: translateX(3px);
}
.footer-contact-line {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: var(--mono-font);
}
.footer-extra {
  max-width: var(--content-width);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-copyright,
.footer-icp,
.footer-culture {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--mono-font);
}
.footer-culture {
  color: var(--gold);
  font-family: var(--body-font);
}
.page-shell {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--space-section)) var(--space-outer) var(--space-section);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-family: var(--mono-font);
  color: var(--muted);
  margin-bottom: 2rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a {
  color: var(--ice);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.btn-family {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 0;
  border: 2px solid var(--gold);
  color: #000;
  background: var(--gold);
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-family:hover {
  background: transparent;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.btn-family--outline {
  background: transparent;
  color: var(--gold);
}
.btn-family--outline:hover {
  background: var(--gold);
  color: #000;
}
.btn-family--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-family--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0, 200, 83, 0.06);
}
.wide-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: var(--space-section);
}
.wide-grid--2col {
  grid-template-columns: 1fr 1fr;
}
.wide-grid--1col {
  grid-template-columns: 1fr;
}
.metric-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.5rem;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--green);
}
.metric-card--gold::before {
  background: var(--gold);
}
.metric-card--orange::before {
  background: var(--orange);
}
.metric-card--ice::before {
  background: var(--ice);
}
.metric-card__label {
  font-size: 0.8rem;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.metric-card__value {
  font-family: var(--mono-font);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin: 0.5rem 0;
}
.metric-card__value em {
  color: var(--gold);
  font-style: normal;
}
.metric-card__trend {
  font-size: 0.8rem;
  color: var(--green);
  font-family: var(--mono-font);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.metric-card__trend[data-trend="down"] {
  color: var(--orange);
}
.panel-box {
  background: var(--panel2);
  border: 1px solid var(--line);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.panel-box__title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.2rem;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.panel-box__title::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.panel-box__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-family: var(--mono-font);
  color: var(--muted);
  padding-top: 0.8rem;
  border-top: 1px dashed var(--line);
  margin-top: 0.8rem;
}
.panel-box__status .live-tag {
  color: var(--green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.panel-box__status .live-tag::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.2s infinite;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.15);
}
.filter-btn {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  transition: all 0.3s var(--ease);
  border-radius: 0;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--gold), #F0B800);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
}
.filter-empty {
  border: 1px dashed var(--line);
  padding: 3rem;
  text-align: center;
  color: var(--muted);
  font-family: var(--mono-font);
  display: none;
}
.img-slot {
  background: linear-gradient(145deg, var(--panel), var(--bg2));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-slot::before {
  content: "PHOTO DATA";
  font-family: var(--mono-font);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--line);
}
.img-slot--wide {
  aspect-ratio: 21 / 9;
  min-height: auto;
}
.img-slot--tall {
  aspect-ratio: 4 / 5;
  min-height: auto;
}
.img-slot--square {
  aspect-ratio: 1 / 1;
  min-height: auto;
}
.img-slot--wide::before {
  content: "GAME PHOTO";
}
.img-slot--tall::before {
  content: "PLAYER PHOTO";
}
.img-slot--square::before {
  content: "DATA CARD";
}
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-section);
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: var(--space-section) 0;
}
.divider-slash {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--green), transparent);
  margin: var(--space-section) 0;
  position: relative;
}
.divider-slash::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.page-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}
.page-title .gold {
  color: var(--gold);
}
.page-title .green {
  color: var(--green);
}
.section-label {
  font-family: var(--mono-font);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: "//";
  color: var(--gold);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono-font);
  font-size: 0.875rem;
}
.data-table th {
  text-align: left;
  color: var(--muted);
  font-family: var(--heading-font);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 2px solid var(--gold);
  padding: 0.75rem 1rem;
}
.data-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem;
  color: var(--text);
}
.data-table tr:hover td {
  background: rgba(255, 204, 0, 0.04);
}
@media (max-width: 1100px) {
  .site-header {
    top: 0.5rem;
    width: calc(100% - 1rem);
    border-radius: 1.2rem;
    padding: 0.4rem 0.75rem 0.4rem 1.2rem;
  }
  .nav-link {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
  .theme-switch__text {
    display: none;
  }
  .theme-switch {
    padding: 0.5rem;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 1rem);
  }
  .brand__tagline {
    display: none;
  }
  .site-nav {
    display: none;
  }
  .theme-switch {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }
  .wide-grid {
    grid-template-columns: 1fr;
  }
  .wide-grid--2col {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-extra {
    flex-direction: column;
    text-align: center;
  }
  .footer-board {
    padding-top: 4rem;
  }
}
@media (max-width: 520px) {
  :root {
    --space-outer: 1rem;
    --space-section: 3rem;
  }
  .brand__logo {
    font-size: 1.35rem;
  }
  .nav-toggle__text {
    display: none;
  }
  .nav-toggle {
    padding: 0.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #scroll-progress {
    display: none;
  }
  .nav-link .status-dot::after {
    animation: none;
  }
  .metric-card:hover {
    transform: none;
  }
}
