@font-face {
      font-family: "Gilroy";
      src: url("/fonts/Gilroy-Regular.woff") format("woff");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Gilroy";
      src: url("/fonts/Gilroy-Bold.woff") format("woff");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Benzin";
      src: url("/fonts/Benzin-Bold.woff2") format("woff2");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    :root {
      color-scheme: dark;
      --bg: #0f0f0f;
      --text: #f8f8f8;
      --muted: rgba(255, 255, 255, 0.52);
      --line: rgba(255, 255, 255, 0.06);
      --accent: #ff653a;
      --ok: #2ecc71;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      min-height: 100%;
      background: var(--bg);
      color: var(--text);
      font-family: "Gilroy", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      overflow-x: hidden;
    }

    body {
      min-height: 100vh;
      min-height: 100dvh;
    }

    .page {
      min-height: 100vh;
      min-height: 100dvh;
      padding: max(18px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
      display: flex;
      flex-direction: column;
      position: relative;
      background-image:
        linear-gradient(rgba(18, 18, 18, 0.46), rgba(18, 18, 18, 0.46)),
        linear-gradient(rgba(128, 24, 24, 0.22), rgba(128, 24, 24, 0.22)),
        url("/assets/victory-day-bg-1600.jpg");
      background-image:
        linear-gradient(rgba(18, 18, 18, 0.46), rgba(18, 18, 18, 0.46)),
        linear-gradient(rgba(128, 24, 24, 0.22), rgba(128, 24, 24, 0.22)),
        image-set(url("/assets/victory-day-bg-1600.webp") type("image/webp"), url("/assets/victory-day-bg-1600.jpg") type("image/jpeg"));
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .logo {
      position: fixed;
      top: max(18px, env(safe-area-inset-top));
      left: max(18px, env(safe-area-inset-left));
      z-index: 10;
      display: flex;
      align-items: center;
      height: 36px;
      text-decoration: none;
    }

    .logo img {
      display: block;
      width: auto;
      height: 36px;
      max-width: 156px;
      object-fit: contain;
      opacity: 0.95;
      filter: brightness(0) invert(1);
    }

    .content {
      width: min(1180px, 100%);
      margin: 0 auto;
      flex: 1;
      display: grid;
      align-content: center;
      gap: 16px;
    }

    .title {
      margin: 0;
      padding-top: 12px;
      color: #c65b5b;
      font-family: "Benzin", "Gilroy", sans-serif;
      font-size: clamp(22px, 3vw, 32px);
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: 0;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .player-shell {
      width: 100%;
      overflow: hidden;
      border-radius: 14px;
      background: #000;
    }

    .player {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #000;
    }

    video {
      display: block;
      width: 100%;
      height: 100%;
      background: #000;
    }

    @media (min-width: 721px) {
      html,
      body {
        height: 100%;
        overflow: hidden;
      }

      .page {
        height: 100vh;
        height: 100dvh;
      }

      .content {
        width: min(1180px, 100%, 142vh);
      }
    }

    @media (max-width: 720px) {
      .page {
        padding: max(12px, env(safe-area-inset-top)) 10px max(14px, env(safe-area-inset-bottom));
      }

      .logo {
        height: 36px;
      }

      .logo img {
        height: 32px;
        max-width: 140px;
      }

      .content {
        align-content: center;
        justify-items: center;
        padding-top: 42px;
        padding-bottom: 42px;
        gap: 12px;
      }

      .title {
        padding-top: 0;
        font-size: 22px;
        text-align: center;
      }

      .player-shell {
        border-radius: 10px;
        box-shadow: none;
      }

    }

    @media (orientation: landscape) and (max-height: 560px) {
      .page {
        padding: 8px;
      }

      .content {
        align-content: start;
        gap: 8px;
        padding-top: 42px;
      }
    }


.broadcast-cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 101, 58, 0.12), rgba(0, 0, 0, 0) 46%),
    rgba(0, 0, 0, 0.38);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  transform-origin: top right;
  transition:
    height 340ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
  will-change: height, box-shadow, transform;
}

.broadcast-cta:hover,
.broadcast-cta.is-open {
  border-color: rgba(255, 177, 157, 0.28);
}

.broadcast-cta.is-open {
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3), 0 0 28px rgba(255, 101, 58, 0.08);
  transform: translateY(-1px);
}

.broadcast-cta__toggle {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: left;
}

.broadcast-cta__toggle:focus-visible {
  outline: 2px solid rgba(255, 101, 58, 0.8);
  outline-offset: -4px;
}

.broadcast-cta__chevron {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms ease;
}

.broadcast-cta.is-open .broadcast-cta__chevron {
  transform: rotate(180deg);
}

.broadcast-cta__panel {
  position: relative;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    height 340ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: height, opacity, transform;
}

.broadcast-cta.is-open .broadcast-cta__panel {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.broadcast-cta.is-closing .broadcast-cta__panel {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px);
}

.broadcast-cta__panel-inner {
  padding: 0 16px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.58;
}

.broadcast-cta__panel-inner p {
  margin: 0;
}

.broadcast-cta__panel-inner p + p {
  margin-top: 10px;
}

.broadcast-cta__panel-inner a {
  color: #ffb19d;
  font-weight: 700;
  text-decoration: none;
}

.broadcast-cta__panel-inner a:hover {
  color: #fff;
  text-decoration: underline;
}


@media (prefers-reduced-motion: reduce) {
  .broadcast-cta,
  .broadcast-cta__chevron,
  .broadcast-cta__panel,
  .broadcast-cta__panel-inner {
    animation: none;
    transition: none;
  }

  .broadcast-cta.is-open .broadcast-cta__panel-inner {
    opacity: 1;
  }

  .broadcast-cta.is-open .broadcast-cta__panel {
    opacity: 1;
    transform: none;
  }
}
