@font-face {
  font-family: 'Barlow Condensed';
  src: url('/live/fonts/BarlowCondensed-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
:root {
  color-scheme: dark;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  background: #0a0a0b;
  color: #f4f1ea;
}
* { box-sizing: border-box; }
body {
  min-width: 280px;
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 32px 24px;
}
.landing { width: min(100%, 440px); text-align: center; }
.logo {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin: 0 auto 8px;
  border-radius: 50%;
}
h1 {
  margin: 0;
  font-size: clamp(42px, 10vw, 60px);
  font-weight: 600;
  letter-spacing: .09em;
  line-height: 1.1;
}
.event-access { min-height: 100px; padding-top: 32px; }
.live-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 28px;
  border: 1px solid #c9a24b;
  border-radius: 4px;
  background: #c9a24b;
  color: #101011;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .035em;
  text-decoration: none;
}
.live-link::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.live-link:hover { background: #dfbb67; border-color: #dfbb67; }
.live-link:focus-visible { outline: 2px solid #f4f1ea; outline-offset: 5px; }
@media (max-height: 600px) {
  .logo { width: min(100%, 240px); }
  .event-access { min-height: 82px; padding-top: 24px; }
}
