:root {
  --live-navy: #0f1b3d;
  --live-navy-soft: #18235a;
  --live-panel: #ffffff;
  --live-gold: #c9a457;
  --live-gold-soft: #dfc98e;
  --live-red: #e74945;
  --live-green: #2f876d;
  --live-white: #ffffff;
  --live-muted: #6f7b80;
  --live-line: rgba(16, 50, 71, 0.12);
  --live-error: #a52d39;
  --live-cream: #f6f2e8;
  --live-paper: #fffdf8;
  --live-sea: #4e9cac;
}

html {
  color-scheme: light;
  background: var(--live-cream);
}

body.live-page {
  background: var(--live-cream);
  color: var(--live-navy);
}

.live-shell {
  width: min(1200px, calc(100% - 48px));
}

.site-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 27, 61, 0.96);
  box-shadow: 0 4px 30px rgba(9, 15, 36, 0.08);
  backdrop-filter: blur(14px) saturate(120%);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.site-nav.is-scrolled {
  background: rgba(15, 27, 61, 0.99);
  box-shadow: 0 8px 34px rgba(9, 15, 36, 0.22);
}

.site-nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 260ms ease;
}

.site-nav.is-scrolled .site-nav-inner {
  height: 60px;
}

.site-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav-brand:hover {
  color: #ffffff;
}

.site-nav-brand span {
  color: var(--live-gold);
}

.site-nav-brand img {
  width: auto;
  height: 32px;
  filter: brightness(0) invert(1);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-links > li {
  position: relative;
  list-style: none;
}

.site-nav-links > li > a {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav-links > li > a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--live-gold);
}

.site-nav-arrow {
  font-size: 10px;
}

.site-nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  padding: 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  background: var(--live-navy);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38);
  transform: translateY(-8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.site-nav-dropdown-parent:hover .site-nav-dropdown,
.site-nav-dropdown-parent:focus-within .site-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--live-gold);
}

.site-nav-links .site-nav-cta {
  margin-left: 8px;
  padding: 10px 24px;
  background: var(--live-gold);
  color: var(--live-navy);
  font-weight: 600;
}

.site-nav-links .site-nav-cta:hover {
  background: var(--live-gold-soft);
  color: var(--live-navy);
}

.site-lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.site-nav-links .site-lang-switch a {
  min-height: 30px;
  padding: 4px 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
}

.site-nav-links .site-lang-switch a:hover,
.site-nav-links .site-lang-switch a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.site-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 6px;
  background: var(--live-gold);
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--live-navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.live-topbar {
  min-height: 78px;
  border-bottom-color: rgba(16, 50, 71, 0.1);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(130%);
}

.live-brand {
  color: var(--live-navy);
  font-size: 16px;
  letter-spacing: -0.015em;
}

.live-brand:hover {
  color: var(--live-sea);
}

.live-brand img {
  height: 37px;
  filter: none;
}

.live-brand span {
  color: #8f722f;
}

.live-state {
  color: var(--live-navy);
}

.live-intro {
  min-height: 520px;
  align-items: center;
  background:
    linear-gradient(90deg, #f6f2e8 0%, rgba(246, 242, 232, 0.99) 35%, rgba(246, 242, 232, 0.82) 51%, rgba(246, 242, 232, 0.14) 74%, rgba(246, 242, 232, 0.03) 100%),
    url('venue/dome-exterior.webp') right 54% / auto 145% no-repeat,
    #f6f2e8;
}

.live-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(90deg, transparent 63%, rgba(20, 88, 105, 0.08));
  pointer-events: none;
}

.live-intro::after {
  right: 7%;
  bottom: 28px;
  left: auto;
  width: 112px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), var(--live-gold));
}

.live-intro-inner {
  z-index: 2;
  padding: 132px 0 62px;
}

body.has-sources .live-intro {
  min-height: 440px;
}

body.has-sources .live-intro-inner {
  padding: 116px 0 48px;
}

.live-kicker {
  margin-bottom: 18px;
  color: #765c24;
  font-size: 12px;
  letter-spacing: 0.17em;
}

.live-intro h1,
body.has-sources .live-intro h1 {
  max-width: 720px;
  color: var(--live-navy);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.94;
  text-shadow: none;
}

.live-intro h1 span {
  color: #17758a;
  font-weight: 500;
}

.live-intro-copy,
body.has-sources .live-intro-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: #455e69;
  font-size: 13px;
  letter-spacing: 0.075em;
}

.live-intro-copy span {
  position: relative;
}

.live-intro-copy span + span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--live-gold);
}

.broadcast-area {
  padding-bottom: 104px;
  background:
    linear-gradient(rgba(16, 50, 71, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 50, 71, 0.025) 1px, transparent 1px),
    var(--live-cream);
  background-size: 72px 72px, 72px 72px, auto;
}

.broadcast-toolbar {
  border-bottom-color: rgba(16, 50, 71, 0.1);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 30px rgba(16, 50, 71, 0.045);
  backdrop-filter: blur(20px) saturate(130%);
  top: 60px;
  z-index: 900;
}

.broadcast-toolbar-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.broadcast-toolbar-context {
  display: flex;
  align-items: center;
  gap: 14px;
}

.broadcast-toolbar-context .live-state {
  display: inline-flex;
  color: var(--live-navy);
}

.broadcast-toolbar-context .live-dot {
  width: 7px;
  height: 7px;
}

.broadcast-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-toolbar-button {
  display: none;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(15, 27, 61, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--live-navy);
  cursor: pointer;
  font: 600 11px/1 'Inter', sans-serif;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.has-sources .live-toolbar-button {
  display: inline-flex;
  align-items: center;
}

.live-toolbar-button:hover {
  border-color: rgba(15, 27, 61, 0.36);
  background: #ffffff;
  transform: translateY(-1px);
}

.broadcast-toolbar-title {
  color: #526a73;
}

.view-switch {
  position: relative;
  gap: 0;
  padding: 4px;
  border-color: rgba(16, 50, 71, 0.13);
  background: rgba(16, 50, 71, 0.055);
  box-shadow: inset 0 1px 2px rgba(16, 50, 71, 0.04);
}

.view-switch::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: 104px;
  border-radius: 999px;
  background: var(--live-navy);
  box-shadow: 0 6px 16px rgba(16, 50, 71, 0.18);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.view-youtube .view-switch::before {
  transform: translateX(104px);
}

body.view-lichess .view-switch::before {
  transform: translateX(208px);
}

.view-button {
  position: relative;
  z-index: 1;
  width: 104px;
  min-height: 38px;
  padding: 0 12px;
  color: #536870;
}

.view-button:hover {
  color: var(--live-navy);
}

.view-button[aria-pressed="true"] {
  background: transparent;
  color: #ffffff;
}

.broadcast-stage-shell {
  padding-top: 0;
}

.broadcast-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 48px;
  align-items: end;
  padding: 62px 0 38px;
}

.broadcast-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #8b6b25;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.broadcast-lead h2 {
  max-width: 700px;
  margin: 0;
  color: var(--live-navy);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.broadcast-lead p {
  max-width: 470px;
  margin: 0 0 3px;
  color: #607078;
  font-size: 14px;
}

.results-rail {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.8fr);
  margin-bottom: 34px;
  border-top: 1px solid rgba(16, 50, 71, 0.16);
  border-bottom: 1px solid rgba(16, 50, 71, 0.16);
  background: rgba(255, 255, 255, 0.32);
}

.results-rail-intro,
.results-rail-link {
  min-height: 82px;
  padding: 18px 22px;
}

.results-rail-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.results-rail-intro strong {
  color: var(--live-navy);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.results-rail-intro span {
  margin-top: 3px;
  color: #6a7b82;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-rail-link {
  border-left: 1px solid rgba(16, 50, 71, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--live-navy);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.results-rail-link:hover {
  background: #ffffff;
  color: #876b25;
}

.results-rail-group {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.results-rail-action {
  color: #61727a;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.results-rail-arrow {
  display: inline-block;
  margin-left: 5px;
  color: var(--live-gold);
  font-size: 16px;
  transition: transform 180ms ease;
}

.results-rail-link:hover .results-rail-arrow {
  transform: translate(3px, -3px);
}

.broadcast-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 78px;
}

.broadcast-column:first-child {
  top: auto;
}

body.view-both .broadcast-column-youtube,
body.view-both .broadcast-column-lichess {
  grid-column: 1;
  grid-row: auto;
  position: static;
}

.broadcast-label-row {
  min-height: 52px;
  padding: 0 4px;
  border-top: 1px solid rgba(16, 50, 71, 0.16);
}

.broadcast-label {
  color: var(--live-navy);
  font-size: 12px;
}

.broadcast-label-mark {
  width: 7px;
  height: 7px;
  background: var(--live-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
}

.broadcast-column-lichess .broadcast-label-mark {
  background: var(--live-sea);
  box-shadow: 0 0 0 4px rgba(78, 156, 172, 0.12);
}

.external-link {
  min-height: 32px;
  border-color: rgba(16, 50, 71, 0.14);
  background: rgba(255, 255, 255, 0.5);
  color: #536870;
}

.external-link:hover {
  border-color: rgba(16, 50, 71, 0.34);
  background: #ffffff;
  color: var(--live-navy);
}

.broadcast-frame {
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(20, 48, 61, 0.14), 0 3px 10px rgba(20, 48, 61, 0.06);
}

.frame-placeholder {
  color: var(--live-navy);
  background:
    radial-gradient(circle at 50% 42%, rgba(78, 156, 172, 0.12), transparent 17rem),
    linear-gradient(rgba(16, 50, 71, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 50, 71, 0.035) 1px, transparent 1px),
    #f8faf8;
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.placeholder-icon {
  border-color: rgba(78, 156, 172, 0.45);
  color: var(--live-sea);
}

.placeholder-inner strong {
  color: var(--live-navy);
}

.placeholder-inner p {
  color: var(--live-muted);
}

.live-footer {
  padding: 34px 0 38px;
  border-top: 0;
  background: var(--live-navy);
  color: rgba(255, 255, 255, 0.68);
}

.live-footer-inner div {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  padding: 80px 0 30px;
  background: linear-gradient(180deg, #0a1230 0%, var(--live-navy) 100%);
  color: #ffffff;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.site-footer-about .site-nav-brand {
  margin-bottom: 8px;
}

.site-footer-about p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 20px;
  color: var(--live-gold);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-links li {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.site-footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  text-decoration: none;
}

.site-footer-links a:hover {
  color: var(--live-gold);
}

.site-footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.site-footer-contact > span {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(201, 164, 87, 0.12);
  color: var(--live-gold);
}

.site-footer-contact p,
.site-footer-contact a {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.site-footer-contact a {
  padding-top: 7px;
  color: var(--live-gold);
}

.site-footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.54);
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-footer-social a:hover {
  border-color: var(--live-gold);
  background: rgba(201, 164, 87, 0.08);
  color: var(--live-gold);
  transform: translateY(-2px);
}

.site-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  text-align: center;
}

@keyframes hero-image-breathe {
  from { background-size: auto 151%; }
  to { background-size: auto 145%; }
}

@media (min-width: 761px) and (prefers-reduced-motion: no-preference) {
  .live-intro {
    animation: hero-image-breathe 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@media (max-width: 1180px) {
  .broadcast-lead {
    grid-template-columns: 1fr minmax(280px, 0.55fr);
  }
}

@media (max-width: 900px) {
  .site-nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 80vh;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--live-navy);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  }

  .site-nav-links.is-open {
    display: flex;
  }

  .site-nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav-links > li > a {
    width: 100%;
    padding: 14px 16px;
    display: block;
    font-size: 16px;
  }

  .site-nav-dropdown-parent > a[href="#"] {
    display: none;
  }

  .site-nav-dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .site-nav-dropdown a {
    width: 100%;
    padding: 14px 16px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
  }

  .site-nav-links .site-nav-cta {
    width: 100%;
    margin: 12px 0 0;
    padding: 14px 24px;
    text-align: center;
  }

  .site-lang-switch {
    width: 100%;
    justify-content: center;
    margin: 16px 0 0;
    border-bottom: 0 !important;
  }

  .site-nav-links .site-lang-switch a {
    width: auto;
    padding: 8px 16px;
    display: inline-flex;
  }

  .site-nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .live-shell {
    width: min(100% - 34px, 1200px);
  }

  .live-topbar {
    min-height: 72px;
  }

  .live-brand img {
    height: 32px;
  }

  .live-intro,
  body.has-sources .live-intro {
    min-height: 430px;
    align-items: flex-end;
    background:
      linear-gradient(180deg, rgba(246, 242, 232, 0.08) 18%, rgba(246, 242, 232, 0.74) 55%, #f6f2e8 88%),
      url('venue/dome-exterior.webp') 55% 42% / cover no-repeat,
      #f6f2e8;
  }

  .live-intro::before {
    background: linear-gradient(90deg, rgba(246, 242, 232, 0.2), transparent);
  }

  .live-intro-inner,
  body.has-sources .live-intro-inner {
    padding: 124px 0 38px;
  }

  .live-intro h1,
  body.has-sources .live-intro h1 {
    max-width: 360px;
    font-size: clamp(45px, 13vw, 62px);
  }

  .live-intro-copy,
  body.has-sources .live-intro-copy {
    max-width: 340px;
    margin-top: 20px;
    gap: 5px;
    font-size: 11px;
  }

  .live-intro-copy span {
    width: 100%;
  }

  .live-intro-copy span + span::before {
    display: none;
  }

  .broadcast-toolbar-inner {
    min-height: 104px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 10px;
    padding: 8px 0;
  }

  .broadcast-toolbar-context {
    grid-column: 1;
    grid-row: 1;
  }

  .view-switch {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .view-switch::before {
    width: calc((100% - 8px) / 3);
  }

  body.view-youtube .view-switch::before {
    transform: translateX(100%);
  }

  body.view-lichess .view-switch::before {
    transform: translateX(200%);
  }

  .view-button {
    width: auto;
    flex: 1;
    padding-right: 7px;
    padding-left: 7px;
  }

  .broadcast-lead {
    display: block;
    padding: 44px 0 26px;
  }

  .broadcast-lead h2 {
    max-width: 440px;
    font-size: clamp(34px, 10vw, 48px);
  }

  .broadcast-lead p {
    margin-top: 18px;
  }

  .results-rail {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .results-rail-intro {
    grid-column: 1 / -1;
    min-height: 68px;
    padding: 14px 18px;
  }

  .results-rail-link {
    min-height: 72px;
    padding: 14px 18px;
  }

  .results-rail-link:nth-child(2) {
    border-left: 0;
  }

  .results-rail-group {
    font-size: 17px;
  }

  .results-rail-action {
    font-size: 10px;
  }

  .broadcast-grid {
    gap: 44px;
  }

  .broadcast-label-row {
    min-height: 48px;
  }

  .broadcast-frame {
    border-width: 5px;
    border-radius: 17px;
    box-shadow: 0 20px 50px rgba(20, 48, 61, 0.13), 0 2px 8px rgba(20, 48, 61, 0.05);
  }

  .broadcast-area {
    padding-bottom: 72px;
    background-size: 56px 56px, 56px 56px, auto;
  }
}

@media (max-width: 520px) {
  .site-nav-brand {
    gap: 8px;
    font-size: 15px;
  }

  .site-nav-brand img {
    height: 30px;
  }

  .site-nav-inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .live-toolbar-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 10px;
  }

  .site-footer {
    padding-top: 62px;
  }

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

@media (max-width: 430px) {
  .broadcast-toolbar-title {
    display: none;
  }

  .view-switch {
    width: 100%;
  }

  .view-button {
    flex: 1;
  }
}
