:root {
  --bg-orange: rgb(255, 129, 66);
  --bg-dark-orange: rgb(33, 23, 13);
  --bg-page: rgb(23, 23, 23);
  --bg-panel: rgba(31, 31, 31, 0.92);
  --bg-panel-soft: rgba(44, 36, 30, 0.82);
  --text-white: hsla(0, 0%, 100%, 1);
  --text-gainsboro: hsla(0, 0%, 87%, 1);
  --text-muted: hsla(28, 16%, 74%, 1);
  --text-orange: hsla(30, 100%, 50%, 1);
  --border-orange-alpha-30: hsla(34, 100%, 63%, 0.3);
  --gradient-1: linear-gradient(to right bottom, hsl(35, 100%, 52%), hsl(32, 100%, 58%), hsl(28, 100%, 60%), hsl(25, 100%, 62%), hsl(22, 100%, 63%), hsl(18, 100%, 69%), hsl(15, 100%, 62%), hsl(21, 100%, 50%));
  --gradient-line: linear-gradient(90deg, transparent 0%, #ff7300 50%, transparent 100%);
  --font-heading: "Oxanium", cursive;
  --font-body: "Oxanium", cursive;
  --radius: 8px;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.38);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg-page);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg-page);
  background:
    radial-gradient(circle at 24% 6%, rgba(255, 129, 66, 0.14), transparent 26rem),
    linear-gradient(180deg, #171717 0%, #201911 48%, #171717 100%);
  color: var(--text-gainsboro);
  font-family: var(--font-body);
  line-height: 1.55;
  position: relative;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

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

img {
  display: block;
  max-width: 100%;
}

code {
  color: var(--text-orange);
  font-size: 0.95em;
}

.live-container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.live-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 9px max(14px, calc((100vw - 1120px) / 2));
  background: rgba(23, 23, 23, 0.88);
  border-bottom: 1px solid rgba(255, 129, 66, 0.18);
  backdrop-filter: blur(16px);
}

.live-brand {
  width: clamp(136px, 19vw, 205px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  min-width: 0;
}

.live-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255, 69, 69, 0.7);
  border-radius: 6px;
  color: #ff4545;
  background: rgba(255, 69, 69, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.live-dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4545;
  box-shadow: 0 0 0 0 rgba(255, 69, 69, 0.72);
  animation: livePulse 1.5s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 69, 69, 0.72);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 69, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 69, 69, 0);
  }
}

.live-tab-group {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 129, 66, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.live-tab,
.live-nav-action {
  min-height: 38px;
  padding: 0 15px;
  border-radius: 6px;
  color: var(--text-white);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.live-tab {
  border: 0;
  background: transparent;
}

.live-nav-action {
  color: #fff;
  border: 0;
}

.live-nav-action-devpost {
  background: #008b9a;
}

.live-nav-action-discord {
  background: #5865f2;
}

.live-tab:is(:hover, :focus-visible),
.live-tab.is-active,
.live-nav-action:is(:hover, :focus-visible) {
  outline: none;
  background-image: var(--gradient-1);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.hero-live {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  isolation: isolate;
}

.hero-live::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 4px;
  background-image: var(--gradient-line);
  z-index: 2;
}

.hero-live-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.28), #171717 96%),
    url("../images/hero-banner-bg.webp") center bottom / cover no-repeat;
  opacity: 0.42;
}

.hero-live-content {
  align-self: center;
  display: grid;
  justify-items: center;
  padding-block: 32px 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--text-orange);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text-white);
  font-family: var(--font-heading);
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.countdown-panel {
  width: 100%;
  padding: 0;
  text-align: center;
}

.countdown-status {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: clamp(0.96rem, 1.8vw, 1.16rem);
  font-weight: 700;
  text-transform: uppercase;
}

.countdown-readout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 1.1vw, 16px);
  min-width: 0;
  padding: clamp(8px, 1.8vw, 16px) 0 4px;
  color: var(--text-white);
  font-variant-numeric: tabular-nums;
  font-size: clamp(3rem, 11vw, 8rem);
  font-weight: 700;
  line-height: 1;
}

.countdown-readout > span:nth-child(even) {
  color: var(--text-orange);
  transform: translateY(-0.08em);
}

.countdown-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(760px, 100%);
  margin: 0 auto 8px;
  color: var(--text-muted);
  font-size: clamp(0.78rem, 1.5vw, 0.98rem);
  font-weight: 700;
  text-transform: uppercase;
}

.live-section {
  position: relative;
  z-index: 1;
  padding-block: clamp(26px, 4vw, 46px);
}

.section-heading {
  margin-bottom: 12px;
}

.map-shell,
.schedule-board,
.faq-frame {
  border: 1px solid var(--border-orange-alpha-30);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.schedule-days {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule-day {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 129, 66, 0.2);
  border-radius: 6px;
  color: var(--text-white);
  background: rgba(0, 0, 0, 0.18);
  font-weight: 700;
}

.schedule-day:is(:hover, :focus-visible),
.schedule-day.is-active {
  outline: none;
  background-image: var(--gradient-1);
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 0;
}

.campus-map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 129, 66, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 129, 66, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #1e1e1e, #2a2119);
  background-size: 54px 54px, 54px 54px, auto;
}

.campus-map-wrap {
  position: relative;
  min-width: 0;
}

.map-recenter-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 700;
  min-height: 36px;
  padding-inline: 12px;
  border: 1px solid rgba(255, 129, 66, 0.34);
  border-radius: 6px;
  color: var(--text-white);
  background: rgba(23, 23, 23, 0.86);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.map-recenter-btn:is(:hover, :focus-visible) {
  outline: none;
  background-image: var(--gradient-1);
}

.leaflet-container {
  background: #1f1f1f;
  color: #1f1f1f;
  font-family: var(--font-body);
}

.leaflet-control-attribution {
  font-size: 0.68rem;
}

.campus-map::before {
  content: "Caltech Campus";
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(2.2rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.campus-map.interactive-map::before,
.campus-map.google-map::before {
  display: none;
}

.map-building,
.map-path {
  position: absolute;
  border-radius: 5px;
  pointer-events: none;
}

.map-path {
  background: rgba(255, 255, 255, 0.08);
}

.map-building {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.09);
}

.map-marker {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #171717;
  background-image: var(--gradient-1);
  box-shadow: 0 0 0 6px rgba(255, 129, 66, 0.13), 0 10px 32px rgba(0, 0, 0, 0.46);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.map-marker-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 3;
  width: max-content;
  max-width: 190px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 129, 66, 0.35);
  border-radius: 6px;
  background: rgba(23, 23, 23, 0.95);
  color: var(--text-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-transform: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.map-marker-tooltip span {
  display: block;
  margin-top: 2px;
  color: var(--text-orange);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.map-marker-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 10px;
  height: 10px;
  background: rgba(23, 23, 23, 0.95);
  border-right: 1px solid rgba(255, 129, 66, 0.35);
  border-bottom: 1px solid rgba(255, 129, 66, 0.35);
  transform: translate(-50%, -50%) rotate(45deg);
}

.map-marker::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #171717;
}

.map-marker:is(:hover, :focus-visible),
.map-marker.is-selected {
  outline: none;
  transform: translate(-50%, -50%) scale(1.18);
}

.map-marker:is(:hover, :focus-visible) .map-marker-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.map-marker.is-hidden {
  opacity: 0.18;
}

.venue-pin {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-image: var(--gradient-1);
  box-shadow: 0 0 0 7px rgba(255, 129, 66, 0.13), 0 10px 32px rgba(0, 0, 0, 0.46);
}

.venue-pin::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #171717;
  transform: translate(-50%, -50%);
}

.venue-tooltip {
  border: 1px solid rgba(255, 129, 66, 0.35);
  border-radius: 6px;
  background: rgba(23, 23, 23, 0.8);
  color: var(--text-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.venue-tooltip span {
  display: block;
  margin-top: 2px;
  color: var(--text-orange);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.user-pin {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 3px solid var(--text-white);
  border-radius: 50%;
  background: #2f8cff;
  box-shadow: 0 0 0 8px rgba(47, 140, 255, 0.2), 0 8px 28px rgba(0, 0, 0, 0.42);
}

.location-panel {
  padding: 24px;
  border-left: 1px solid rgba(255, 129, 66, 0.15);
  background: rgba(0, 0, 0, 0.16);
}

.location-kicker {
  margin-bottom: 8px;
  color: var(--text-orange);
  font-weight: 700;
  text-transform: uppercase;
}

.location-panel p:not(.location-kicker) {
  color: var(--text-muted);
}

.location-panel a,
.locate-button {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  padding: 0 18px;
  border-radius: 6px;
  color: var(--text-white);
  background-image: var(--gradient-1);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.location-panel a {
  width: 100%;
  margin-top: 18px;
}

.locate-button {
  width: 100%;
  margin-top: 10px;
  border: 1px solid rgba(255, 129, 66, 0.32);
  background: rgba(0, 0, 0, 0.22);
}

.location-status {
  min-height: 1.2em;
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.schedule-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.schedule-note {
  max-width: 370px;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.schedule-days {
  margin-bottom: 12px;
}

.schedule-board {
  --row-height: 88px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  min-height: 590px;
  overflow: visible;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent var(--row-height)
    ),
    var(--bg-panel);
}

.time-column,
.event-column {
  position: relative;
}

.time-slot {
  height: var(--row-height);
  padding: 8px 9px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.event-column {
  min-width: 0;
}

.schedule-event {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid var(--event-border, rgba(255, 129, 66, 0.32));
  border-radius: 6px;
  background: var(--event-bg, linear-gradient(135deg, rgba(255, 129, 66, 0.22), rgba(0, 0, 0, 0.38)));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px var(--event-shadow, rgba(0, 0, 0, 0.18));
  overflow: visible;
  z-index: 1;
  cursor: pointer;
}

.schedule-event:is(:hover, :focus-visible) {
  border-color: var(--event-hover-border, rgba(255, 129, 66, 0.68));
  outline: none;
  z-index: 6;
}

.schedule-event-checkin {
  --event-bg: linear-gradient(135deg, rgba(20, 184, 166, 0.36), rgba(8, 47, 73, 0.58));
  --event-border: rgba(45, 212, 191, 0.58);
  --event-hover-border: rgba(94, 234, 212, 0.92);
  --event-shadow: rgba(20, 184, 166, 0.2);
  --event-accent: #5eead4;
}

.schedule-event-key {
  --event-bg: linear-gradient(135deg, rgba(239, 68, 68, 0.58), rgba(127, 29, 29, 0.64));
  --event-border: rgba(248, 113, 113, 0.74);
  --event-hover-border: rgba(254, 202, 202, 0.96);
  --event-shadow: rgba(239, 68, 68, 0.24);
  --event-accent: #fecaca;
}

.schedule-event-food {
  --event-bg: linear-gradient(135deg, rgba(234, 179, 8, 0.38), rgba(120, 53, 15, 0.5));
  --event-border: rgba(250, 204, 21, 0.62);
  --event-hover-border: rgba(254, 240, 138, 0.95);
  --event-shadow: rgba(234, 179, 8, 0.18);
  --event-accent: #fde68a;
}

.schedule-event-judging {
  --event-bg: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(30, 64, 175, 0.5));
  --event-border: rgba(96, 165, 250, 0.62);
  --event-hover-border: rgba(147, 197, 253, 0.95);
  --event-shadow: rgba(59, 130, 246, 0.18);
  --event-accent: #bfdbfe;
}

.schedule-event-program {
  --event-bg: linear-gradient(135deg, rgba(168, 85, 247, 0.38), rgba(76, 29, 149, 0.5));
  --event-border: rgba(192, 132, 252, 0.6);
  --event-hover-border: rgba(216, 180, 254, 0.95);
  --event-shadow: rgba(168, 85, 247, 0.18);
  --event-accent: #e9d5ff;
}

.schedule-event-sponsor {
  --event-bg: linear-gradient(135deg, rgba(6, 182, 212, 0.38), rgba(8, 47, 73, 0.56));
  --event-border: rgba(34, 211, 238, 0.62);
  --event-hover-border: rgba(103, 232, 249, 0.95);
  --event-shadow: rgba(6, 182, 212, 0.18);
  --event-accent: #a5f3fc;
}

.schedule-event-content {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.schedule-event h3 {
  margin: 0 0 2px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(0.74rem, 1.35vw, 0.94rem);
  line-height: 1.15;
}

.schedule-event p {
  margin: 0;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(0.64rem, 1.15vw, 0.76rem);
  line-height: 1.25;
}

.schedule-event-location {
  color: var(--event-accent, var(--text-orange));
  font-weight: 700;
}

.schedule-event.is-short .schedule-event-location,
.schedule-event.is-cramped .schedule-event-location {
  display: none;
}

.schedule-event.is-short .schedule-event-time {
  display: none;
}

.schedule-event.is-tiny {
  padding-block: 2px;
}

.schedule-event.is-tiny h3 {
  -webkit-line-clamp: 1;
  font-size: clamp(0.72rem, 1.35vw, 0.84rem);
  line-height: 1;
}

.schedule-event.is-tiny .schedule-event-content {
  justify-content: center;
}

.faq-view {
  min-height: calc(100vh - 76px);
}

.faq-view h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
}

.faq-note {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.faq-backup-link {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-backup-link a {
  color: var(--text-orange);
}

.faq-frame {
  display: block;
  width: min(100%, 880px);
  min-height: 72vh;
  margin-right: auto;
}

.live-footer {
  border-top: 1px solid rgba(255, 129, 66, 0.18);
  background: rgba(23, 23, 23, 0.72);
}

.live-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.live-footer p {
  margin: 0;
}

.live-footer a {
  color: var(--text-orange);
}

.footer-home-link {
  text-transform: uppercase;
}

.schedule-modal,
.construction-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
}

.schedule-modal.is-open,
.construction-modal.is-open {
  display: grid;
}

.schedule-modal-backdrop,
.construction-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.schedule-modal-card,
.construction-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(82vh, 620px);
  overflow-y: auto;
  padding: 24px;
  border: 1px solid rgba(255, 129, 66, 0.42);
  border-radius: var(--radius);
  background: rgba(23, 23, 23, 0.98);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.58);
}

.schedule-modal-close,
.construction-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 129, 66, 0.28);
  border-radius: 6px;
  color: var(--text-white);
  background: rgba(0, 0, 0, 0.24);
  font-size: 1.7rem;
  line-height: 1;
}

.schedule-modal-directions {
  position: absolute;
  top: 10px;
  right: 58px;
  display: inline-grid;
  min-height: 40px;
  place-items: center;
  padding-inline: 14px;
  border: 1px solid rgba(255, 129, 66, 0.32);
  border-radius: 6px;
  color: var(--text-white);
  background-image: var(--gradient-1);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.schedule-modal-directions[hidden] {
  display: none;
}

.schedule-modal-kicker {
  margin-bottom: 8px;
  padding-right: 190px;
  color: var(--text-orange);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.construction-modal-kicker {
  margin-bottom: 8px;
  padding-right: 42px;
  color: var(--text-orange);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.schedule-modal-card h2 {
  margin-bottom: 10px;
  padding-right: 190px;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
}

.construction-modal-card h2 {
  margin-bottom: 10px;
  padding-right: 42px;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
}

.construction-modal-card p:not(.construction-modal-kicker),
.install-steps {
  color: var(--text-muted);
}

.install-steps {
  margin: 14px 0 0;
  padding-left: 1.35rem;
  font-weight: 700;
}

.install-steps li + li {
  margin-top: 8px;
}

.construction-modal-ack {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  margin-top: 10px;
  padding-inline: 18px;
  border-radius: 6px;
  color: var(--text-white);
  background-image: var(--gradient-1);
  font-weight: 700;
  text-transform: uppercase;
}

.schedule-modal-location {
  color: var(--text-orange);
  font-weight: 700;
}

.schedule-modal-description {
  color: var(--text-muted);
}

.schedule-modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.schedule-modal-links:empty {
  display: none;
}

.schedule-modal-links a {
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  padding-inline: 14px;
  border-radius: 6px;
  background-image: var(--gradient-1);
  color: var(--text-white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .construction-modal {
    align-items: start;
    padding-top: calc(112px + env(safe-area-inset-top));
    overflow-y: auto;
  }

  .live-header {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .brand-lockup {
    align-items: center;
  }

  .live-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .live-tab-group {
    margin-left: auto;
  }

  .live-tab {
    flex: 1 0 auto;
    padding-inline: 14px;
  }

  .hero-live {
    min-height: auto;
  }

  .hero-live-content {
    padding-block: 28px 34px;
  }

  .countdown-readout {
    font-size: clamp(2.8rem, 13vw, 5.1rem);
  }

  .map-grid,
  .schedule-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .campus-map {
    min-height: 390px;
  }

  .location-panel {
    border-top: 1px solid rgba(255, 129, 66, 0.15);
    border-left: 0;
  }

  .live-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-board {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .schedule-event {
    padding-inline: 8px;
  }

  .time-slot {
    padding-right: 8px;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .live-container {
    width: min(100% - 22px, 1120px);
  }

  .live-header {
    min-height: 0;
    padding: 10px 11px;
  }

  .live-brand {
    width: 158px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .countdown-panel {
    padding: 8px 0;
  }

  .countdown-readout {
    font-size: clamp(3rem, 14vw, 5.25rem);
  }

  .countdown-labels {
    font-size: 0.86rem;
  }

  .live-tab,
  .live-nav-action {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .schedule-days {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .schedule-day {
    flex: 0 0 auto;
  }

  .campus-map {
    min-height: 330px;
  }

  .map-marker {
    width: 27px;
    height: 27px;
  }

  .map-marker-tooltip {
    max-width: 150px;
    font-size: 0.72rem;
  }

  .schedule-board {
    --row-height: 88px;
    min-height: 540px;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .schedule-event h3 {
    font-size: 0.84rem;
  }

  .schedule-event.is-tiny h3 {
    font-size: 0.72rem;
  }

  .schedule-event p {
    font-size: 0.68rem;
  }

  .schedule-modal-directions {
    right: 54px;
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .schedule-modal-kicker,
  .schedule-modal-card h2 {
    padding-right: 150px;
  }

  .time-slot {
    padding-right: 6px;
    font-size: 0.68rem;
  }
}
