:root {
  color-scheme: light;
  --bg: #f7f5f1;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #67635d;
  --line: #ded8cf;
  --accent: #a01920;
  --accent-dark: #721217;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 241, 0.92);
}

.brand {
  display: block;
  width: min(280px, 58vw);
  line-height: 0;
}

.brand svg {
  display: block;
  width: 100%;
  height: auto;
}

.event-date {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(32px, 7vw, 74px) 0 48px;
}

.intro {
  max-width: 820px;
  margin-bottom: 26px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.subtitle {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.players {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.stream h2 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.player-shell {
  overflow: hidden;
  background: #050505;
  border: 1px solid #0f0f0f;
}

.video-js {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background: #050505;
}

.vjs-theme-city {
  --vjs-theme-city--primary: var(--accent);
  --vjs-theme-city--secondary: #ffffff;
  color: #ffffff;
  font-family: inherit;
}

.vjs-theme-city.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.vjs-theme-city .vjs-big-play-button .vjs-icon-placeholder::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  font-size: 2.35rem;
  line-height: 1;
}

.vjs-theme-city:hover .vjs-big-play-button,
.vjs-theme-city .vjs-big-play-button:focus {
  background: var(--accent);
  color: #ffffff;
}

.vjs-theme-city .vjs-control-bar {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent);
  backdrop-filter: blur(12px);
}

.vjs-theme-city .vjs-play-progress {
  background-color: var(--accent);
}

.vjs-theme-city .vjs-slider {
  background-color: rgba(255, 255, 255, 0.24);
}

.vjs-theme-city .vjs-load-progress {
  background-color: rgba(255, 255, 255, 0.28);
}

.vjs-theme-city .vjs-load-progress div {
  background-color: rgba(255, 255, 255, 0.34);
}

.vjs-theme-city .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.15em;
}

.vjs-theme-city .vjs-menu-button-popup .vjs-menu {
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .page {
    width: min(100% - 28px, 1120px);
    padding-top: 30px;
  }
}
