:root {
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --soft: rgba(255, 255, 255, 0.16);
  --panel: rgba(4, 4, 12, 0.88);
  --line: rgba(255, 255, 255, 0.28);
  --accent: #ff3d2e;
  --teal: #67e8f9;
  --green: #0bc56f;
  --nav-font: "Montserrat", "Trebuchet MS", Arial, sans-serif;
  --brand-font: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

html.intro-locked {
  height: 100dvh;
  overflow: hidden;
}

body {
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: #02020a;
  color: var(--ink);
  font-family: var(--nav-font);
}

body.intro-locked {
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  position: fixed;
  inset: 0;
}

body.intro-locked .site-header,
body.intro-locked main,
body.intro-locked .video-shade {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

body.intro-locked .hero-video {
  z-index: 0;
}

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

button {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 30;
  transform: translateY(-140%);
  background: #fff;
  color: #05050d;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-video,
.video-shade {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.08) contrast(1.08);
}

.video-shade {
  z-index: 1;
  pointer-events: none;
  transition: opacity 260ms ease;
  background:
    radial-gradient(circle at 48% 28%, rgba(255, 68, 41, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 9, 0.46), transparent 24%, transparent 72%, rgba(0, 0, 9, 0.64)),
    linear-gradient(180deg, rgba(0, 0, 9, 0.5) 0%, transparent 26%, transparent 70%, rgba(0, 0, 9, 0.62) 100%);
}

.intro-start-button {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 20;
  width: clamp(118px, 12vw, 172px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 220ms ease, transform 220ms ease, filter 180ms ease;
}

body.intro-locked .intro-start-button {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.intro-start-button:hover {
  background: transparent;
  filter: drop-shadow(0 0 26px rgba(34, 211, 238, 0.42));
  transform: translate(-50%, -50%) scale(1.04);
}

.intro-start-button:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.intro-start-button svg {
  width: 100%;
  height: 100%;
  margin-left: 4%;
  overflow: visible;
  fill: none;
  filter:
    drop-shadow(0 0 10px rgba(103, 232, 210, 0.26))
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.7));
}

.intro-play-outline {
  fill: rgba(255, 255, 255, 0.025);
  stroke: url(#intro-play-gradient);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.intro-start-button.is-starting {
  pointer-events: none;
  animation: intro-play-start 560ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.intro-start-button.is-starting .intro-play-outline {
  animation: intro-play-stroke 560ms ease forwards;
}

@keyframes intro-play-start {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.34));
  }
  45% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
    filter: drop-shadow(0 0 42px rgba(34, 211, 238, 0.66));
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.42);
    filter: drop-shadow(0 0 72px rgba(103, 232, 210, 0));
  }
}

@keyframes intro-play-stroke {
  0% {
    stroke-width: 9;
    opacity: 1;
  }
  100% {
    stroke-width: 5;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-start-button,
  .intro-start-button.is-starting,
  .intro-start-button.is-starting .intro-play-outline {
    animation: none;
    transition: opacity 120ms ease;
  }
}

.audio-subtitle {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 8dvh, 86px);
  z-index: 3;
  width: min(760px, calc(100vw - 32px));
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.86), 0 1px 2px rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.audio-subtitle.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 88px;
  padding: 10px clamp(14px, 3.2vw, 58px) 0;
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3.4vw, 64px);
  height: 68px;
  padding: 0 clamp(16px, 2vw, 28px);
  border: 0;
  background: transparent;
}

.nav-group,
.brand,
.nav-actions {
  z-index: 1;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.2vw, 56px);
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-left {
  justify-content: end;
}

.nav-right {
  justify-content: start;
}

.nav-group a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-group a:hover {
  opacity: 0.72;
  transform: translateY(-1px);
}

.socials-nav {
  position: relative;
}

.socials-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
  transition: opacity 180ms ease;
}

.socials-button:hover,
body.socials-open .socials-button {
  opacity: 0.72;
}

.socials-button svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
  transition: transform 180ms ease;
}

body.socials-open .socials-button svg {
  transform: rotate(180deg);
}

.socials-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 12;
  min-width: 190px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: rgba(8, 9, 19, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

body.socials-open .socials-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.socials-menu a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.socials-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(70px, 7vw, 104px);
  min-height: 62px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.48));
}

.nav-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

body.nav-compact .nav-group,
body.nav-compact .brand {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

body.nav-compact .search-button {
  display: grid;
}

body.nav-compact.search-open .search-popover {
  opacity: 1;
  pointer-events: auto;
}

.icon-button,
.menu-button,
.close-menu,
.side-arrow {
  border: 0;
  color: #fff;
  cursor: pointer;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  transition: opacity 180ms ease, transform 180ms ease;
}

.icon-button:hover,
.menu-button:hover,
.close-menu:hover {
  opacity: 0.72;
}

.icon-button:active,
.menu-button:active,
.side-arrow:active {
  transform: scale(0.96);
}

.search-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 94px;
  width: min(272px, calc(100vw - 40px));
  height: 45px;
  display: flex;
  align-items: center;
  background: rgba(8, 9, 19, 0.9);
  border: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

body.search-open .search-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-popover input {
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 52px 0 19px;
  font-family: var(--nav-font);
  font-size: 18px;
  line-height: 1;
  outline: 0;
}

.search-popover input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.search-popover input::-webkit-search-cancel-button {
  appearance: none;
}

.search-submit {
  position: absolute;
  top: 0;
  right: 8px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.search-submit:hover {
  background: rgba(255, 255, 255, 0.1);
}

svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.volume-button .volume-slash {
  display: none;
}

.volume-button.is-muted .volume-wave {
  display: none;
}

.volume-button.is-muted .volume-slash {
  display: block;
}

.menu-button {
  width: 46px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 0 8px;
  border-radius: 50%;
  background: transparent;
}

body.nav-on-light .site-header .nav-group a,
body.nav-on-light .site-header .socials-button,
body.nav-on-light .site-header .icon-button,
body.nav-on-light .site-header .menu-button {
  color: #111;
  text-shadow: none;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

body.menu-open .menu-button span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 92px 24px 72px;
}

.hero-center {
  display: grid;
  place-items: center;
  min-width: 0;
}

h1 {
  margin: 0;
  max-width: min(92vw, 980px);
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--brand-font);
  font-size: clamp(74px, 12vw, 178px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 5px 38px rgba(0, 0, 0, 0.58);
}

.gallery-section {
  position: relative;
  z-index: 3;
  min-height: 100dvh;
  padding: clamp(72px, 9vw, 108px) 22px clamp(54px, 7vw, 82px);
  background: #fbfaf8;
  color: #111;
  text-align: center;
}

.gallery-copy {
  max-width: 780px;
  margin: 0 auto 34px;
}

.gallery-copy h2 {
  margin: 0;
  color: #111;
  font-family: "Arial Narrow", "Montserrat", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1;
}

.gallery-copy p {
  max-width: 650px;
  margin: 22px auto 0;
  color: rgba(17, 17, 17, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.gallery-wrap {
  position: relative;
  width: min(100%, 1030px);
  margin: 0 auto;
  padding: 0 clamp(8px, 6vw, 78px);
}

.gallery-backdrop {
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  bottom: 15%;
  background: #174a75;
}

.gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.03;
  padding: 0;
  border: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.gallery-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.shuffle-gallery-button,
.view-more-button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: #174a75;
  color: #fff;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.shuffle-gallery-button {
  width: 54px;
  display: grid;
  place-items: center;
  padding: 0;
}

.shuffle-gallery-button svg {
  width: 22px;
  height: 22px;
}

.view-more-button {
  min-width: 164px;
  padding: 0 32px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.shuffle-gallery-button:hover,
.view-more-button:hover {
  background: #0f3b60;
  transform: translateY(-1px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 16px;
  padding: 76px clamp(18px, 3vw, 42px) 42px;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.lightbox-open {
  overflow: hidden;
}

body.lightbox-open .lightbox {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  grid-column: 2;
  display: grid;
  place-items: center;
  gap: 14px;
  margin: 0;
  min-width: 0;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 150px);
  object-fit: contain;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.48);
}

.lightbox-count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.lightbox-arrow,
.lightbox-close {
  border: 0;
  color: #fff;
  cursor: pointer;
}

.lightbox-arrow {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-arrow:active,
.lightbox-close:active,
.shuffle-gallery-button:active,
.view-more-button:active {
  transform: scale(0.96);
}

.lightbox-prev {
  grid-column: 1;
  justify-self: center;
}

.lightbox-next {
  grid-column: 3;
  justify-self: center;
}

.lightbox-arrow svg {
  width: 42px;
  height: 26px;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.players-section {
  position: relative;
  z-index: 3;
  min-height: 100dvh;
  padding: clamp(70px, 8vw, 104px) 22px;
  background: #f5f7fb;
  color: #142235;
}

.players-shell {
  width: min(100%, 1160px);
  margin: 0 auto;
}

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

.section-kicker {
  margin: 0 0 10px;
  color: #2f86ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.players-heading h2 {
  margin: 0;
  color: #111927;
  font-family: "Arial Narrow", "Montserrat", Arial, sans-serif;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1;
}

.players-heading p:not(.section-kicker) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #65748a;
  font-size: 15px;
  line-height: 1.7;
}

.player-status {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #fff;
  color: #40516a;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(33, 50, 75, 0.08);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9aa8ba;
}

.player-status.is-online .status-dot {
  background: #3fc17c;
}

.player-status.is-offline .status-dot {
  background: #ff5b59;
}

.chart-panel {
  overflow: hidden;
  border: 1px solid #e2e9f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(33, 50, 75, 0.12);
}

.chart-toolbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 12px;
}

.chart-legend {
  display: inline-flex;
  align-items: start;
  gap: 10px;
  color: #21324c;
}

.legend-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: #2f86ff;
}

.chart-legend strong,
.chart-legend span {
  display: block;
}

.chart-legend strong {
  font-size: 13px;
}

.chart-legend span {
  margin-top: 4px;
  color: #7b8da6;
  font-size: 12px;
}

.range-tabs {
  display: inline-flex;
  padding: 4px;
  border-radius: 8px;
  background: #f0f4fa;
}

.range-tab {
  min-width: 74px;
  min-height: 38px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #7c8ba0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.range-tab.is-active {
  background: #fff;
  color: #21324c;
  box-shadow: 0 6px 18px rgba(33, 50, 75, 0.12);
}

.chart-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.chart-meta div {
  padding: 16px 24px;
  border-right: 1px solid #edf2f7;
}

.chart-meta div:last-child {
  border-right: 0;
}

.chart-meta span,
.chart-meta strong {
  display: block;
}

.chart-meta span {
  color: #8291a7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.chart-meta strong {
  margin-top: 6px;
  color: #17243a;
  font-size: 26px;
  line-height: 1;
}

.copy-ip-button {
  width: 100%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #17243a;
  cursor: pointer;
  text-align: left;
}

.copy-ip-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

.copy-ip-button .copy-ip-text {
  margin-top: 0;
  font-size: 24px;
  line-height: 1.05;
}

.copy-ip-button.is-copied {
  color: #2f86ff;
}

.player-chart {
  position: relative;
  width: 100%;
  min-height: 420px;
  padding: 18px 18px 22px;
}

.player-chart-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 3;
  overflow: visible;
}

.chart-grid-line {
  stroke: #dce5ef;
  stroke-width: 1;
  shape-rendering: crispEdges;
}

.chart-axis-label {
  fill: #728298;
  font-size: 11px;
  font-weight: 400;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.chart-area {
  fill: rgba(47, 134, 255, 0.13);
}

.chart-line {
  fill: none;
  stroke: #2f86ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-point {
  fill: #fff;
  stroke: #2f86ff;
  stroke-width: 3;
}

.chart-empty {
  fill: #6f7f96;
  font-size: 16px;
  font-weight: 700;
}

.site-footer {
  position: relative;
  z-index: 3;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #05050a;
  color: #fff;
}

.footer-media,
.footer-overlay {
  position: absolute;
  inset: 0;
}

.footer-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.footer-overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 12, 0.88) 0%, rgba(4, 5, 12, 0.64) 44%, rgba(4, 5, 12, 0.42) 100%),
    linear-gradient(180deg, rgba(4, 5, 12, 0.18) 0%, rgba(4, 5, 12, 0.88) 100%);
}

.footer-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 54px 22px 28px;
}

.footer-thanks {
  min-height: clamp(150px, 22vw, 245px);
  display: flex;
  align-items: center;
}

.footer-thanks h2 {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--brand-font);
  font-size: clamp(48px, 7vw, 92px);
  font-style: italic;
  line-height: 0.95;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.62);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: clamp(28px, 6vw, 88px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-columns h3 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-columns a {
  min-height: 34px;
  display: flex;
  align-items: center;
  width: max-content;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-columns a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-copy-ip {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.footer-copy-ip svg {
  width: 20px;
  height: 20px;
}

.footer-copy-ip.is-copied {
  border-color: rgba(47, 134, 255, 0.8);
  color: #8cc0ff;
}

.footer-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.side-arrow {
  position: fixed;
  top: 50%;
  z-index: 8;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.side-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.side-arrow svg {
  width: 40px;
  height: 24px;
  stroke-width: 1.7;
}

.side-arrow-left {
  left: clamp(12px, 2.4vw, 30px);
}

.side-arrow-right {
  right: clamp(12px, 2.4vw, 30px);
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: min(360px, 86vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 88px 32px 32px;
  background: var(--panel);
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 60px rgba(0, 0, 0, 0.42);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

body.menu-open .menu-panel {
  transform: translateX(0);
}

.menu-panel a {
  min-height: 50px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 500;
}

.menu-panel a:hover {
  color: #fff;
}

.close-menu {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
    width: clamp(62px, 8vw, 92px);
  }

  .nav-actions {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    height: 76px;
    padding: 8px 14px 0;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    height: 60px;
    padding: 0 12px;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
    width: 62px;
  }

  .nav-actions {
    grid-column: 2;
    gap: 4px;
  }

  .icon-button {
    display: none;
  }

  .search-button {
    display: grid;
  }

  .search-popover {
    top: calc(100% + 9px);
    right: 0;
    width: min(272px, calc(100vw - 36px));
  }

  .audio-subtitle {
    bottom: 20px;
    width: calc(100vw - 24px);
    padding: 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero {
    padding-inline: 20px;
  }

  .gallery-section {
    padding: 72px 16px 54px;
  }

  .gallery-copy {
    margin-bottom: 26px;
  }

  .gallery-copy h2 {
    font-size: 40px;
  }

  .gallery-copy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .gallery-wrap {
    padding: 0;
  }

  .gallery-backdrop {
    left: -16px;
    right: -16px;
    top: 13%;
    bottom: 13%;
  }

  .gallery-grid {
    gap: 8px;
  }

  .gallery-tile {
    aspect-ratio: 1 / 1.08;
  }

  .view-more-button {
    min-width: 148px;
    margin-top: 28px;
    letter-spacing: 3px;
  }

  .lightbox {
    grid-template-columns: 60px minmax(0, 1fr) 60px;
    gap: 6px;
    padding: 72px 10px 28px;
  }

  .lightbox-arrow {
    width: 52px;
    height: 52px;
  }

  .lightbox-arrow svg {
    width: 32px;
  }

  .lightbox-image {
    max-height: calc(100dvh - 136px);
  }

  .players-section {
    padding: 68px 14px;
  }

  .players-heading {
    display: block;
  }

  .player-status {
    margin-top: 20px;
  }

  .chart-toolbar {
    display: block;
    padding: 18px 16px 12px;
  }

  .range-tabs {
    width: 100%;
    margin-top: 16px;
  }

  .range-tab {
    flex: 1;
    min-width: 0;
  }

  .chart-meta {
    grid-template-columns: 1fr;
  }

  .chart-meta div {
    border-right: 0;
    border-bottom: 1px solid #edf2f7;
    padding: 14px 16px;
  }

  .chart-meta div:last-child {
    border-bottom: 0;
  }

  .player-chart {
    min-height: 330px;
    padding: 12px 10px 16px;
  }

  .player-chart-svg {
    height: auto;
  }

  .site-footer {
    min-height: 420px;
  }

  .footer-overlay {
    background:
      linear-gradient(180deg, rgba(4, 5, 12, 0.38) 0%, rgba(4, 5, 12, 0.92) 54%, rgba(4, 5, 12, 0.96) 100%);
  }

  .footer-content {
    padding: 48px 18px 26px;
  }

  .footer-thanks {
    min-height: 180px;
  }

  .footer-thanks h2 {
    font-size: clamp(44px, 16vw, 70px);
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom a {
    display: inline-flex;
    margin-top: 10px;
  }

  h1 {
    font-size: clamp(70px, 22vw, 118px);
  }

  .side-arrow {
    width: 48px;
    height: 48px;
  }

  .side-arrow svg {
    width: 32px;
  }

}

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