:root {
  color-scheme: dark;
  --bg: #050713;
  --panel: #09122a;
  --panel-strong: #0d1c38;
  --line: rgba(91, 221, 255, 0.24);
  --text: #f7f5eb;
  --muted: #b8c4df;
  --accent: #f5ff52;
  --cyan: #70e0ff;
  --black: #040711;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--bg);
  background:
    linear-gradient(135deg, rgba(53, 215, 255, 0.06) 25%, transparent 25%) 0 0 / 30px 30px,
    radial-gradient(circle at 18% -8%, rgba(53, 215, 255, 0.23), transparent 24rem),
    radial-gradient(circle at 88% -8%, rgba(245, 255, 82, 0.13), transparent 22rem),
    linear-gradient(180deg, #11183a 0%, #070a19 43%, #050713 100%);
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.shell {
  width: min(1360px, calc(100% - 20px));
  margin: 0 auto;
  padding: 0 0 34px;
}

.shell-topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.hub-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 13px;
  border: 1px solid rgba(241, 255, 51, 0.78);
  background: rgba(241, 255, 51, 0.13);
  color: var(--accent);
  box-shadow: inset 0 -2px 0 rgba(241, 255, 51, 0.22);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.14;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.shell-topbar > .hub-link:first-child::before,
.lineup-topbar__actions > .hub-link:first-child::before {
  content: "←";
  font-size: 0.95em;
  line-height: 1;
}

.hub-link:hover,
.hub-link:focus-visible {
  background: var(--accent);
  color: var(--bg);
}

.kicker,
.card__meta,
.status {
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  gap: 9px;
  padding: 10px 0 14px;
}

.hero--compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 8px 0 12px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hero-mascot {
  position: relative;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  padding: 3px;
  border: 1px solid rgba(241, 255, 51, 0.72);
  background:
    linear-gradient(145deg, rgba(241, 255, 51, 0.2), rgba(49, 199, 223, 0.14)),
    rgba(4, 8, 23, 0.86);
  clip-path: polygon(11px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  animation: nootFloat 5s ease-in-out infinite;
}

.hero-mascot img,
.noot-mark {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-mascot img {
  object-fit: cover;
  object-position: 50% 54%;
  clip-path: polygon(9px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  filter: saturate(1.03) contrast(1.05);
}

.hero-mascot--mark {
  display: grid;
  place-items: center;
  padding: 4px;
}

.noot-mark {
  overflow: visible;
  filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.28));
}

.noot-mark__body,
.noot-mark__ear {
  fill: #c9742c;
  stroke: #050713;
  stroke-width: 4;
  stroke-linejoin: round;
}

.noot-mark__ear {
  fill: #e39245;
}

.noot-mark__face,
.noot-mark__muzzle {
  fill: #fff4dd;
  stroke: #050713;
  stroke-width: 4;
  stroke-linejoin: round;
}

.noot-mark__mask {
  fill: #b76528;
  opacity: 0.96;
}

.noot-mark__eyes {
  fill: #050713;
  transform-origin: 50% 50%;
  animation: nootBlink 4.6s ease-in-out infinite;
}

.noot-mark__nose {
  fill: #e76a82;
  stroke: #050713;
  stroke-width: 2;
  stroke-linejoin: round;
}

.noot-mark__mouth {
  fill: none;
  stroke: #050713;
  stroke-width: 3;
  stroke-linecap: round;
}

.noot-mark__whiskers {
  fill: none;
  stroke: #050713;
  stroke-width: 3;
  stroke-linecap: round;
}

.hero-mascot__spark {
  position: absolute;
  right: -4px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  clip-path: polygon(50% 0, 63% 35%, 100% 50%, 63% 64%, 50% 100%, 36% 64%, 0 50%, 36% 35%);
  box-shadow: 0 0 14px rgba(241, 255, 51, 0.7);
  animation: nootSpark 2.8s ease-in-out infinite;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 10vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero--compact h1 {
  max-width: none;
  font-size: clamp(2.35rem, 7vw, 4.6rem);
  line-height: 0.86;
  white-space: nowrap;
}

.hero-subtitle {
  margin: 3px 0 0;
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(49, 199, 223, 0.38);
  background: rgba(4, 8, 23, 0.78);
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats b {
  color: var(--accent);
  font-size: 1.35rem;
}

@keyframes nootFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-3px) rotate(1deg);
  }
}

@keyframes nootSpark {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.9);
  }

  45% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes nootBlink {
  0%,
  88%,
  100% {
    transform: scaleY(1);
  }

  92%,
  95% {
    transform: scaleY(0.16);
  }
}

.festival-timeline {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(241, 255, 51, 0.38);
}

.timeline-year {
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid rgba(49, 199, 223, 0.46);
  background: rgba(4, 8, 23, 0.72);
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.month-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.month-marker {
  position: sticky;
  top: 12px;
  display: grid;
  place-items: center;
  min-height: 48px;
  border-left: 2px solid var(--accent);
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.event-list {
  display: grid;
  gap: 10px;
}

.event-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px 12px;
  align-items: center;
  min-height: 114px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(13, 28, 56, 0.94), rgba(5, 7, 19, 0.98));
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.event-row--ready {
  border-color: rgba(241, 255, 51, 0.72);
  box-shadow: inset 0 0 0 1px rgba(241, 255, 51, 0.12), 0 12px 28px rgba(0, 0, 0, 0.3);
}

.event-row--preview {
  border-color: rgba(49, 199, 223, 0.72);
}

.event-row--pending {
  border-style: dashed;
  color: rgba(247, 245, 235, 0.78);
  background: linear-gradient(145deg, rgba(12, 22, 43, 0.82), rgba(5, 7, 19, 0.96));
}

.event-row--archive {
  border-color: rgba(154, 132, 255, 0.48);
  background: linear-gradient(145deg, rgba(15, 17, 45, 0.82), rgba(4, 6, 16, 0.96));
}

.event-status,
.event-action,
.event-facts span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.event-status {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 4px 8px;
  border: 1px solid rgba(49, 199, 223, 0.55);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1;
}

.event-status--ready {
  border-color: rgba(241, 255, 51, 0.86);
  color: var(--accent);
}

.event-status--preview {
  border-color: rgba(49, 199, 223, 0.86);
  color: #83e8ff;
}

.event-status--pending {
  border-color: rgba(184, 196, 223, 0.45);
  color: rgba(184, 196, 223, 0.84);
}

.event-status--archive {
  border-color: rgba(154, 132, 255, 0.58);
  color: #c7bdff;
}

.event-main {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.event-main strong {
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.event-row--pending .event-main strong,
.event-row--archive .event-main strong {
  color: rgba(247, 245, 235, 0.86);
}

.event-main small {
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  grid-column: 1 / -1;
}

.event-facts span {
  padding: 3px 7px;
  border: 1px solid rgba(49, 199, 223, 0.42);
  background: rgba(49, 199, 223, 0.08);
  color: rgba(247, 245, 235, 0.78);
  font-size: 0.86rem;
  line-height: 1;
}

.event-action {
  justify-self: end;
  min-width: 128px;
  padding: 10px 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #050713;
  font-size: 0.96rem;
  line-height: 1;
  text-align: center;
  transform: skew(-8deg);
}

.event-action--quiet {
  border-color: rgba(154, 132, 255, 0.6);
  background: rgba(154, 132, 255, 0.14);
  color: #d8d0ff;
}

.event-action--disabled {
  border-color: rgba(184, 196, 223, 0.35);
  background: rgba(184, 196, 223, 0.1);
  color: rgba(184, 196, 223, 0.72);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.grid--single {
  grid-template-columns: minmax(0, 620px);
}

.festival-section {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.festival-section--ready {
  margin-top: 4px;
}

.festival-section--archive {
  opacity: 0.86;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(49, 199, 223, 0.28);
}

.festival-section--ready .section-head {
  border-top-color: rgba(241, 255, 51, 0.44);
}

.section-head h2 {
  margin: 2px 0 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.section-head p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.section-head .kicker {
  margin: 0;
}

.card {
  display: grid;
  min-height: 184px;
  padding: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(13, 28, 56, 0.96), rgba(5, 7, 19, 0.98));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.card--live {
  border-color: rgba(241, 255, 51, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(241, 255, 51, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.34);
}

.card--preview {
  border-color: rgba(49, 199, 223, 0.78);
}

.card--pending {
  border-style: dashed;
  background: linear-gradient(145deg, rgba(12, 22, 43, 0.9), rgba(5, 7, 19, 0.98));
}

.card--archive {
  min-height: 190px;
  background: linear-gradient(145deg, rgba(11, 19, 36, 0.86), rgba(4, 6, 16, 0.96));
}

.card h2 {
  margin: 8px 0 10px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.1rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.45;
}

.card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
}

.card-facts span {
  padding: 3px 8px;
  border: 1px solid rgba(49, 199, 223, 0.4);
  background: rgba(49, 199, 223, 0.08);
  color: rgba(247, 245, 235, 0.84);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--cyan);
  background: linear-gradient(180deg, #18245a, #0b1533);
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.button span {
  transform: skew(8deg);
}

.button--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #050713;
}

.button--disabled {
  border-color: rgba(184, 196, 223, 0.35);
  background: rgba(184, 196, 223, 0.1);
  color: rgba(184, 196, 223, 0.72);
  cursor: not-allowed;
}

.status {
  display: inline-block;
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(49, 199, 223, 0.55);
  background: rgba(49, 199, 223, 0.08);
}

.status--live {
  border-color: rgba(241, 255, 51, 0.86);
  background: rgba(241, 255, 51, 0.12);
  color: var(--accent);
}

.status--preview {
  border-color: rgba(49, 199, 223, 0.8);
  color: #83e8ff;
}

.status--pending {
  border-color: rgba(184, 196, 223, 0.48);
  background: rgba(184, 196, 223, 0.08);
}

.footnote {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(49, 199, 223, 0.28);
  color: var(--muted);
  font-size: 0.92rem;
}

.hub-home {
  width: min(1120px, calc(100% - 28px));
  padding-top: 18px;
}

.hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px 18px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(241, 255, 51, 0.34);
}

.hub-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hub-brand h1 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hub-kicker {
  margin: 0 0 4px;
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hub-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hub-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(49, 199, 223, 0.34);
  background: rgba(4, 8, 23, 0.64);
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-stats b {
  color: var(--accent);
  font-size: 1.12rem;
}

.hub-priority-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.hub-priority-tabs > span,
.hub-priority-tab {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hub-priority-tabs > span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hub-priority-tab {
  min-height: 34px;
  border: 1px solid rgba(49, 199, 223, 0.38);
  border-radius: 0;
  background: rgba(4, 8, 23, 0.64);
  color: var(--muted);
  padding: 0 11px;
  cursor: pointer;
  font-size: 0.92rem;
}

.hub-priority-tab:hover,
.hub-priority-tab:focus-visible {
  border-color: rgba(112, 224, 255, 0.78);
  color: #93ecff;
  outline: none;
}

.hub-priority-tab.is-active {
  border-color: rgba(241, 255, 51, 0.78);
  background: rgba(241, 255, 51, 0.12);
  color: var(--accent);
}

.hub-sections {
  display: flex;
  flex-direction: column;
}

.hub-sections[data-order="ready"] .available-now,
.hub-sections[data-order="timeline"] .all-festivals {
  order: 1;
}

.hub-sections[data-order="ready"] .all-festivals,
.hub-sections[data-order="timeline"] .available-now {
  order: 2;
}

.available-now,
.all-festivals {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hub-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.hub-section-head h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hub-section-head p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.hub-section-head--compact {
  padding-top: 14px;
  border-top: 1px solid rgba(49, 199, 223, 0.28);
}

.hub-section-head--compact > p {
  color: rgba(247, 245, 235, 0.78);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.available-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 10px;
}

.feature-festival {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  min-height: 154px;
  padding: 15px;
  border: 1px solid rgba(241, 255, 51, 0.68);
  background:
    linear-gradient(135deg, rgba(241, 255, 51, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(13, 28, 56, 0.96), rgba(5, 7, 19, 0.98));
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(241, 255, 51, 0.1);
}

.feature-festival--schedule {
  border-color: rgba(241, 255, 51, 0.76);
  background:
    linear-gradient(135deg, rgba(241, 255, 51, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(13, 28, 56, 0.96), rgba(5, 7, 19, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(241, 255, 51, 0.13);
}

.feature-festival--preview {
  border-color: rgba(49, 199, 223, 0.72);
  background:
    linear-gradient(135deg, rgba(49, 199, 223, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(13, 28, 56, 0.96), rgba(5, 7, 19, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(49, 199, 223, 0.12);
}

.feature-festival strong,
.mini-festival strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.feature-festival strong {
  grid-column: 1 / -1;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.feature-festival small {
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.feature-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  grid-column: 1 / -1;
}

.feature-facts span {
  padding: 3px 7px;
  border: 1px solid rgba(49, 199, 223, 0.42);
  background: rgba(49, 199, 223, 0.08);
  color: rgba(247, 245, 235, 0.8);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.feature-note {
  grid-column: 1 / -1;
  color: rgba(184, 196, 223, 0.82);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.feature-action {
  justify-self: end;
  padding: 10px 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #050713;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.feature-action--schedule {
  border-color: var(--accent);
  background: var(--accent);
  color: #050713;
  box-shadow: 0 0 18px rgba(241, 255, 51, 0.18);
}

.feature-action--preview {
  border-color: rgba(112, 224, 255, 0.9);
  background: rgba(112, 224, 255, 0.14);
  color: #93ecff;
  box-shadow: inset 0 -2px 0 rgba(112, 224, 255, 0.22);
}

.feature-festival--preview:hover .feature-action--preview,
.feature-festival--preview:focus-visible .feature-action--preview {
  background: #70e0ff;
  color: #050713;
}

.month-grid {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.month-grid h3 {
  position: sticky;
  top: 10px;
  display: grid;
  place-items: start center;
  min-height: 36px;
  margin: 0;
  padding-top: 6px;
  border-left: 2px solid var(--accent);
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 8px;
}

.mini-festival {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 94px;
  padding: 10px;
  border: 1px solid rgba(49, 199, 223, 0.34);
  background: rgba(6, 13, 31, 0.82);
  color: var(--text);
  text-decoration: none;
}

.mini-festival[href]:hover,
.mini-festival[href]:focus-visible,
.feature-festival:hover,
.feature-festival:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.feature-festival--schedule:hover,
.feature-festival--schedule:focus-visible,
.mini-festival[href]:hover,
.mini-festival[href]:focus-visible {
  border-color: rgba(241, 255, 51, 0.84);
}

.feature-festival--preview:hover,
.feature-festival--preview:focus-visible {
  border-color: rgba(112, 224, 255, 0.94);
}

.mini-festival strong {
  display: -webkit-box;
  overflow: hidden;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mini-festival small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.22;
}

.mini-festival--ready {
  border-color: rgba(241, 255, 51, 0.52);
}

.mini-festival--preview {
  border-color: rgba(49, 199, 223, 0.6);
}

.mini-festival--replay {
  border-color: rgba(169, 148, 255, 0.48);
  background: rgba(10, 12, 31, 0.82);
}

.mini-festival--archive {
  border-color: rgba(184, 196, 223, 0.44);
  background: rgba(6, 13, 31, 0.72);
}

.mini-festival--tracking {
  border-style: dashed;
  color: rgba(247, 245, 235, 0.82);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 21px;
  align-items: center;
  padding: 0 6px;
  border: 1px solid rgba(49, 199, 223, 0.48);
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.status-pill--ready {
  border-color: rgba(241, 255, 51, 0.78);
  background: rgba(241, 255, 51, 0.1);
  color: var(--accent);
}

.status-pill--preview {
  border-color: rgba(49, 199, 223, 0.72);
  color: #83e8ff;
}

.status-pill--replay {
  border-color: rgba(169, 148, 255, 0.58);
  color: #cec6ff;
}

.status-pill--archive {
  border-color: rgba(184, 196, 223, 0.48);
  color: rgba(218, 226, 244, 0.9);
}

.status-pill--tracking {
  border-color: rgba(184, 196, 223, 0.42);
  color: rgba(184, 196, 223, 0.86);
}

.seo-summary {
  width: min(1120px, calc(100% - 28px));
  margin: 10px auto 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(49, 199, 223, 0.24);
  color: rgba(184, 196, 223, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
}

.seo-summary h2 {
  margin: 0 0 8px;
  color: rgba(247, 245, 235, 0.9);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.seo-summary p {
  margin: 0 0 8px;
}

.lineup-topbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  min-height: 48px;
  margin-bottom: 0;
  padding: 8px 0 6px;
  text-shadow: 0 2px 18px rgba(53, 215, 255, 0.22);
}

.lineup-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.lineup-brand-mark {
  width: 38px;
  height: 38px;
}

.lineup-brand__copy {
  min-width: 0;
}

.lineup-topbar h1 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.lineup-title-short {
  display: none;
}

.lineup-topbar .kicker {
  margin: 0 0 2px;
  font-size: 0.68rem;
  line-height: 1;
}

.lineup-topbar__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.lineup-topbar__actions p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.lineup-count {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border: 1px solid rgba(49, 199, 223, 0.38);
  background: rgba(4, 8, 23, 0.68);
  font-size: 0.92rem;
}

.lineup-count strong {
  color: var(--accent);
}

.lineup-controls {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 8px;
  align-items: end;
  margin: 0 0 4px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(4, 7, 19, 0.84);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.lineup-controls--simple {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.lineup-filter-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(260px, 2fr);
  gap: 14px 18px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px solid rgba(49, 199, 223, 0.3);
}

.lineup-filter-head {
  display: none;
}

.lineup-filter-done {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--bg);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.lineup-filter-panel[hidden] {
  display: none;
}

.lineup-day-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.day-tab,
.lineup-filter-button,
.lineup-clear-button,
.lineup-plan-button {
  min-height: 36px;
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.day-tab {
  min-width: 74px;
  border: 1px solid rgba(49, 199, 223, 0.5);
  background: linear-gradient(180deg, #18265c, #09142f);
  color: var(--text);
}

.day-tab span,
.day-tab small {
  display: block;
  line-height: 1;
}

.day-tab span {
  font-size: 0.88rem;
}

.day-tab small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.58rem;
}

.day-tab.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

.day-tab.is-active small {
  color: rgba(5, 7, 19, 0.72);
}

.lineup-plan-button {
  border-color: rgba(241, 255, 51, 0.48);
  background: rgba(241, 255, 51, 0.1);
  color: var(--accent);
}

.lineup-filter-button.is-open,
.lineup-clear-button.is-visible,
.lineup-plan-button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

.lineup-clear-button {
  display: none;
}

.lineup-clear-button.is-visible {
  display: inline-flex;
}

.lineup-search {
  display: grid;
  gap: 8px;
}

.lineup-search span,
.lineup-filter-group > span {
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lineup-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(49, 199, 223, 0.48);
  border-radius: 0;
  background: #040817;
  color: var(--text);
  font: 800 1rem Manrope, sans-serif;
  padding: 0 12px;
}

.lineup-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.lineup-filter-group > span {
  width: 100%;
}

.chip {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(49, 199, 223, 0.58);
  background: linear-gradient(180deg, #16265d, #0a1533);
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.chip.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #050713;
}

.lineup-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0;
  color: var(--muted);
}

.lineup-summary p {
  margin: 0;
}

.lineup-summary div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}

.lineup-status {
  margin: 0 0 10px;
  padding: 10px 12px;
  border: 1px solid rgba(241, 255, 51, 0.42);
  background:
    linear-gradient(135deg, rgba(241, 255, 51, 0.12), transparent 44%),
    rgba(4, 7, 19, 0.82);
  color: var(--muted);
}

.lineup-status p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.42;
}

.lineup-status strong {
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.lineup-mobile-list {
  display: none;
}

.lineup-grid-board {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(3, 6, 16, 0.72);
  overflow: hidden;
}

.lineup-schedule-board > .stage-board__title,
.lineup-grid-board > .stage-board__title {
  display: none;
}

.lineup-program-grid,
.lineup-grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(218px, 1fr));
  grid-auto-rows: 82px;
  gap: 6px;
  padding: 6px;
}

.lineup-program-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 2px;
  min-height: 0;
  padding: 6px 31px 6px 6px;
  border: 1px solid rgba(7, 10, 25, 0.76);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.12)),
    color-mix(in srgb, var(--cyan) 76%, #ffffff);
  color: #050713;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 999px rgba(255, 255, 255, 0.08),
    0 2px 0 rgba(0, 0, 0, 0.28);
}

.lineup-program-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.lineup-program-card.is-planned {
  border-color: rgba(241, 255, 51, 0.95);
  outline: 2px solid rgba(241, 255, 51, 0.72);
  outline-offset: -4px;
  box-shadow:
    inset 0 0 0 999px rgba(241, 255, 51, 0.08),
    0 2px 0 rgba(0, 0, 0, 0.28);
}

.lineup-program-card .set-card__top {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.lineup-program-card .set-card__image {
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: rgba(5, 7, 19, 0.42);
  overflow: hidden;
}

.lineup-program-card .set-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-program-card .set-card__image b,
.lineup-program-card .set-card__image span {
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.94rem;
  font-weight: 900;
}

.lineup-program-card strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #050713;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.lineup-program-card .set-card__meta > span,
.lineup-program-card .set-card__meta > small {
  color: rgba(5, 7, 19, 0.74);
  font-size: 0.62rem;
  font-weight: 800;
}

.lineup-program-card .set-card-plan-toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  place-items: end;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0;
  overflow: hidden;
}

.lineup-program-card .set-card-plan-toggle::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: rgba(7, 10, 25, 0.74);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.lineup-program-card .set-card-plan-toggle::after {
  content: "☆";
  position: absolute;
  right: 2px;
  bottom: 1px;
  color: var(--accent);
  font-size: 0.86rem;
  line-height: 1;
}

.lineup-program-card .set-card-plan-toggle--active::before {
  background: var(--accent);
}

.lineup-program-card .set-card-plan-toggle--active::after {
  content: "★";
  color: #050713;
}

.lineup-grid-list .lineup-card {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.lineup-grid-list .lineup-card h2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.lineup-grid-list .lineup-card__body {
  min-width: 0;
}

.lineup-stage-group {
  border: 1px solid color-mix(in srgb, var(--stage-color) 58%, #050713);
  border-radius: 5px;
  background: rgba(3, 6, 16, 0.72);
  overflow: hidden;
}

.lineup-stage-group + .lineup-stage-group {
  margin-top: 10px;
}

.lineup-stage-group > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 9px 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    color-mix(in srgb, var(--stage-color) 58%, #050713);
  color: var(--black);
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

.lineup-stage-group > header strong {
  min-width: 0;
  font-size: 1.18rem;
  line-height: 0.94;
}

.lineup-stage-group__name {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.lineup-stage-group__name small {
  color: rgba(5, 7, 19, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 0.98;
}

.lineup-stage-group__count {
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 900;
}

.lineup-stage-group__list {
  display: grid;
  gap: 8px;
  padding: 8px;
}

.stage-board {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(3, 6, 16, 0.72);
  overflow: hidden;
}

.stage-board__title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 9px;
  border-bottom: 1px solid rgba(49, 199, 223, 0.42);
}

.stage-board__title div {
  display: grid;
  gap: 2px;
}

.stage-board__title span,
.stage-board__rail span {
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-board__title strong,
.stage-board__rail strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.stage-board__scroll {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.stage-board__rail {
  position: sticky;
  left: 0;
  z-index: 3;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 620px;
  padding: 18px 10px;
  border-right: 1px solid rgba(49, 199, 223, 0.4);
  background: #050713;
}

.stage-board__rail strong {
  color: var(--accent);
}

.stage-board__columns {
  display: grid;
  grid-template-columns: repeat(var(--stage-count), minmax(168px, 1fr));
  min-width: max(100%, calc(var(--stage-count) * 168px));
}

.lineup-schedule-board {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(3, 6, 16, 0.72);
  overflow: hidden;
}

.lineup-schedule-shell {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: calc(var(--schedule-height) + 44px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.lineup-timeline {
  position: sticky;
  left: 0;
  z-index: 5;
  height: var(--schedule-height);
  margin-top: 44px;
  border-right: 1px solid rgba(49, 199, 223, 0.42);
  background: #050713;
}

.lineup-time-mark {
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.lineup-schedule-area {
  min-width: max(100%, calc(var(--stage-count) * 132px));
}

.lineup-schedule-head,
.lineup-schedule-grid {
  display: grid;
  grid-template-columns: repeat(var(--stage-count), minmax(128px, 1fr));
}

.lineup-schedule-head {
  position: sticky;
  top: 0;
  z-index: 4;
  min-height: 44px;
}

.lineup-schedule-head h2 {
  display: grid;
  place-items: center;
  min-height: 44px;
  margin: 0;
  padding: 6px;
  border-right: 1px solid rgba(5, 7, 19, 0.42);
  background: color-mix(in srgb, var(--stage-color) 76%, #050713);
  color: #050713;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.lineup-schedule-column {
  min-width: 128px;
  border-right: 1px solid rgba(49, 199, 223, 0.24);
}

.lineup-schedule-track {
  position: relative;
  height: var(--schedule-height);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 80px,
    rgba(255, 255, 255, 0.08) 80px,
    rgba(255, 255, 255, 0.08) 81px
  );
}

.lineup-schedule-card {
  position: absolute;
  left: 5px;
  right: 5px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: stretch;
  gap: 3px;
  min-height: 48px;
  padding: 4px 30px 4px 4px;
  border: 1px solid rgba(7, 10, 25, 0.76);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14)),
    color-mix(in srgb, var(--stage-color) 78%, #ffffff);
  color: #050713;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 999px rgba(255, 255, 255, 0.08),
    0 2px 0 rgba(0, 0, 0, 0.28);
}

.lineup-schedule-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.lineup-schedule-card.is-planned {
  border-color: rgba(241, 255, 51, 0.95);
  outline: 2px solid rgba(241, 255, 51, 0.72);
  outline-offset: -4px;
}

.lineup-schedule-card__top {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  min-height: 0;
}

.lineup-schedule-card__image {
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: rgba(5, 7, 19, 0.42);
  overflow: hidden;
}

.lineup-schedule-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-schedule-card__image span {
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.lineup-schedule-card h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #050713;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.lineup-schedule-card__meta {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.lineup-schedule-card__meta span,
.lineup-schedule-card__meta small {
  overflow: hidden;
  color: rgba(5, 7, 19, 0.74);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lineup-schedule-card .plan-toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  place-items: end;
  width: 30px;
  height: 30px;
  min-height: 0;
  border: 0;
  background: transparent;
  clip-path: none;
  color: var(--accent);
  font-size: 0;
  padding: 0;
}

.lineup-schedule-card--micro {
  display: block;
  min-height: 0;
  padding: 0 4px;
  border-color: rgba(241, 255, 51, 0.74);
  box-shadow: 0 0 0 1px rgba(7, 10, 25, 0.28);
}

.lineup-schedule-card--micro .lineup-schedule-card__top {
  display: block;
}

.lineup-schedule-card--micro .lineup-schedule-card__image,
.lineup-schedule-card--micro .lineup-schedule-card__meta,
.lineup-schedule-card--micro .plan-toggle {
  display: none;
}

.lineup-schedule-card--micro h3 {
  display: none;
  color: #050713;
  font-size: 0.58rem;
  line-height: 1;
  text-overflow: clip;
  white-space: nowrap;
}

.lineup-schedule-card .plan-toggle::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: rgba(7, 10, 25, 0.74);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.lineup-schedule-card .plan-toggle::after {
  content: "☆";
  position: absolute;
  right: 2px;
  bottom: 1px;
  color: var(--accent);
  font-size: 0.86rem;
  line-height: 1;
}

.lineup-schedule-card.is-planned .plan-toggle::before {
  background: var(--accent);
}

.lineup-schedule-card.is-planned .plan-toggle::after {
  content: "★";
  color: #050713;
}

.stage-column {
  min-width: 168px;
  border-right: 1px solid rgba(49, 199, 223, 0.24);
}

.stage-board--preview .stage-board__rail {
  min-height: 0;
}

.stage-board--preview .stage-board__columns {
  align-items: stretch;
}

.stage-column header {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 8px;
  background: color-mix(in srgb, var(--stage-color) 76%, #050713);
  color: #050713;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.stage-column__name,
.stage-column__host {
  min-width: 0;
  line-height: 0.98;
}

.stage-column__host {
  color: rgba(5, 7, 19, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
}

.stage-column__list {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
}

.lineup-set-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  min-height: 92px;
  padding: 10px 38px 10px 10px;
  border: 1px solid color-mix(in srgb, var(--stage-color) 70%, #050713);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.18)),
    color-mix(in srgb, var(--stage-color) 76%, #ffffff);
  color: #050713;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
}

.lineup-set-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.lineup-set-card.is-planned {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px rgba(241, 255, 51, 0.28);
}

.lineup-set-card__image {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(5, 7, 19, 0.62);
  overflow: hidden;
}

.lineup-set-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-set-card__image span {
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.lineup-set-card h3 {
  align-self: center;
  margin: 0;
  color: #050713;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.28rem;
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.lineup-set-card p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(5, 7, 19, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lineup-card {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  min-height: 148px;
  padding: 12px 46px 12px 12px;
  border: 1px solid rgba(49, 199, 223, 0.5);
  border-radius: 5px;
  background: linear-gradient(145deg, rgba(15, 29, 59, 0.98), rgba(5, 7, 19, 0.98));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.lineup-card--no-preview {
  padding-right: 46px;
}

.lineup-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.lineup-card.is-planned {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(241, 255, 51, 0.25), 0 14px 32px rgba(0, 0, 0, 0.28);
}

.lineup-card__image {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(49, 199, 223, 0.7);
  background: #10254a;
  overflow: hidden;
}

.lineup-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-card__image span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
}

.lineup-card__topline {
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lineup-card h2 {
  margin: 3px 0 6px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.lineup-card p {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.lineup-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.lineup-card__tags span {
  padding: 3px 7px;
  border: 1px solid rgba(49, 199, 223, 0.52);
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lineup-preview-button {
  position: absolute;
  right: 38px;
  bottom: 10px;
  display: inline-grid;
  grid-template-columns: auto auto;
  place-items: center;
  gap: 3px;
  width: 78px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: var(--accent);
  color: var(--black);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  cursor: pointer;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.lineup-preview-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lineup-preview-button--disabled {
  background: rgba(184, 196, 223, 0.14);
  color: rgba(184, 196, 223, 0.56);
  cursor: not-allowed;
}

.plan-toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0;
  font-weight: 900;
  overflow: hidden;
}

.plan-toggle::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  background: rgba(5, 7, 19, 0.78);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.plan-toggle::after {
  content: "☆";
  position: absolute;
  right: 3px;
  bottom: 2px;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
}

.plan-toggle.is-active {
  background: transparent;
  color: #050713;
}

.plan-toggle.is-active::before {
  background: var(--accent);
}

.plan-toggle.is-active::after {
  content: "★";
  color: #050713;
  text-shadow: none;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.lineup-dialog {
  width: min(540px, calc(100% - 24px));
  max-height: min(820px, calc(100vh - 24px));
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(circle at top left, rgba(49, 199, 223, 0.16), transparent 18rem),
    #080c1d;
  color: var(--text);
  padding: 18px;
  overflow: auto;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
}

.lineup-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.lineup-dialog .dialog-close {
  position: absolute;
  right: 10px;
  top: 8px;
  float: none;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(49, 199, 223, 0.5);
  background: #071126;
  color: var(--text);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-size: 1.25rem;
  font-weight: 800;
}

.lineup-dialog .dialog-hero {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  margin: 2px 34px 14px 0;
}

.lineup-dialog .dialog-image {
  display: grid;
  place-items: center;
  width: 106px;
  aspect-ratio: 1;
  border: 1px solid rgba(49, 199, 223, 0.52);
  background: linear-gradient(135deg, rgba(49, 199, 223, 0.2), rgba(241, 255, 51, 0.08));
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
  overflow: hidden;
}

.lineup-dialog .dialog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-dialog .dialog-image b {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.lineup-dialog h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.lineup-dialog .dialog-meta {
  margin: 0 0 6px;
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lineup-dialog .save-set-button {
  min-height: 32px;
  margin-top: 10px;
  border: 1px solid rgba(241, 255, 51, 0.6);
  border-radius: 0;
  background: rgba(241, 255, 51, 0.1);
  color: var(--accent);
  padding: 0 12px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lineup-dialog .save-set-button[aria-pressed="true"] {
  background: var(--accent);
  color: #050713;
}

.lineup-dialog__copy,
.dialog-origin,
.bio-section {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.dialog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 10px;
}

.dialog-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(112, 224, 255, 0.28);
  background: rgba(112, 224, 255, 0.12);
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.dialog-origin {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bio-section {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.bio-section p {
  margin: 0;
}

.artist-links {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.lineup-dialog__linkrow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(49, 199, 223, 0.42);
}

.lineup-dialog__linkrow--named {
  grid-template-columns: minmax(0, 1fr) auto;
}

.lineup-dialog__linkname {
  min-width: 0;
}

.lineup-dialog__linkrow strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.82rem;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.lineup-dialog__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.lineup-dialog__linkrow--named .lineup-dialog__icons {
  justify-content: flex-end;
}

.lineup-dialog-preview {
  display: inline-grid;
  grid-template-columns: auto auto;
  place-items: center;
  gap: 3px;
  width: 78px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: var(--accent);
  color: var(--black);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  cursor: pointer;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.lineup-dialog-preview svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lineup-dialog-preview--disabled {
  background: #2a2d36;
  color: var(--muted);
  cursor: default;
  font-style: normal;
  opacity: 0.62;
}

.icon-link {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  color: #111014;
  text-decoration: none;
}

.icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.icon-link--spotify {
  background: #1ed760;
}

.icon-link--apple {
  background: linear-gradient(135deg, #fb5cff, #ff386a 52%, #ff8d42);
  color: #ffffff;
}

.icon-link--youtube {
  background: #ff0033;
  color: #ffffff;
}

.lineup-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--cyan);
  background: #0f1e48;
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.lineup-link--spotify {
  border-color: #1ed760;
}

.lineup-link--apple {
  border-color: #ff5b9e;
}

.lineup-link--youtube {
  border-color: #ff3158;
}

.footer-tool {
  min-height: 34px;
  border: 1px solid rgba(49, 199, 223, 0.38);
  border-radius: 0;
  background: rgba(18, 26, 54, 0.78);
  color: var(--text);
  padding: 0 11px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-tool--quiet {
  color: var(--muted);
  border-color: rgba(184, 196, 223, 0.22);
}

.footer-tool--save {
  border-color: rgba(49, 199, 223, 0.62);
  background: rgba(49, 199, 223, 0.12);
  color: #83e8ff;
}

.footer-tool--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.lineup-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding: 16px 0 26px;
  color: var(--muted);
  font-size: 0.86rem;
}

.lineup-footer p {
  margin: 0;
}

.lineup-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lineup-utility-dialog {
  width: min(560px, calc(100% - 24px));
  border: 1px solid var(--line);
  border-radius: 0;
  background: #080c1d;
  color: var(--text);
  padding: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.lineup-utility-dialog--small {
  width: min(390px, calc(100% - 30px));
}

.lineup-inline-preview {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.lineup-inline-preview__title {
  margin: 0;
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.lineup-inline-preview iframe {
  width: 100%;
  height: 80px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #1f1f1f;
  overflow: hidden;
}

.lineup-utility-dialog::backdrop {
  background: rgba(0, 0, 0, 0.64);
}

.lineup-utility-content {
  margin-right: 34px;
  color: var(--muted);
  line-height: 1.45;
}

.lineup-utility-content h2,
.lineup-utility-content p {
  margin: 0;
}

.lineup-utility-content h2 {
  margin-top: 2px;
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.9rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.lineup-utility-content p:not(.kicker) {
  margin-top: 10px;
}

.lineup-utility-content ol {
  margin: 10px 0 0;
  padding-left: 18px;
}

.lineup-utility-content li + li {
  margin-top: 6px;
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 20px, 1880px);
    padding-top: 0;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .grid--single {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 6px;
    padding: 4px 0 8px;
  }

  .hero--compact {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 3px 0 7px;
  }

  .hero-brand {
    gap: 8px;
  }

  .hero-mascot {
    width: 46px;
    height: 46px;
    padding: 2px;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
  }

  .hero-mascot img {
    clip-path: polygon(7px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  }

  .hero-mascot__spark {
    right: -3px;
    top: 4px;
    width: 8px;
    height: 8px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.45rem, 15vw, 3.35rem);
    line-height: 0.86;
  }

  .hero--compact h1 {
    max-width: none;
    font-size: clamp(2rem, 10.8vw, 2.75rem);
    white-space: nowrap;
  }

  .hero-subtitle {
    margin-top: 2px;
    font-size: 0.82rem;
  }

  .hero-stats {
    gap: 6px;
  }

  .hero-stats span {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.86rem;
  }

  .hero-stats b {
    font-size: 1.05rem;
  }

  .festival-timeline {
    gap: 8px;
    margin-top: 8px;
    padding-top: 9px;
  }

  .timeline-year {
    padding: 3px 8px;
    font-size: 0.88rem;
  }

  .month-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 7px;
  }

  .month-marker {
    top: 8px;
    min-height: 36px;
    font-size: 1.05rem;
  }

  .event-list {
    gap: 7px;
  }

  .event-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 8px;
    min-height: 82px;
    padding: 9px 10px;
  }

  .event-row[href] {
    padding-right: 22px;
  }

  .event-row[href]::after {
    content: ">";
    position: absolute;
    right: 8px;
    bottom: 7px;
    color: var(--accent);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.12;
  }

  .event-row--preview[href]::after {
    color: #83e8ff;
  }

  .event-row--archive[href]::after {
    color: #c7bdff;
  }

  .event-status {
    padding: 3px 6px;
    font-size: 0.76rem;
  }

  .event-main strong {
    font-size: 1.35rem;
  }

  .event-main small {
    font-size: 0.78rem;
  }

  .event-facts {
    gap: 4px;
  }

  .event-facts span {
    padding: 2px 5px;
    font-size: 0.68rem;
  }

  .event-action {
    display: none;
  }

  .hub-home {
    width: min(100% - 16px, 1120px);
    padding-top: 10px;
  }

  .hub-hero {
    grid-template-columns: 1fr;
    gap: 9px;
    padding-bottom: 10px;
  }

  .hub-brand {
    gap: 8px;
  }

  .hub-brand h1 {
    max-width: none;
    font-size: clamp(1.86rem, 8.2vw, 2.42rem);
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
  }

  .hub-kicker {
    margin-bottom: 2px;
    font-size: 0.78rem;
  }

  .hub-stats {
    gap: 5px;
  }

  .hub-stats span {
    min-height: 27px;
    padding: 0 7px;
    font-size: 0.76rem;
  }

  .hub-stats b {
    font-size: 0.96rem;
  }

  .hub-priority-tabs {
    gap: 5px;
    margin-top: 8px;
  }

  .hub-priority-tabs > span {
    display: none;
  }

  .hub-priority-tab {
    flex: 1 1 0;
    min-height: 32px;
    padding: 0 7px;
    font-size: 0.78rem;
  }

  .available-now,
  .all-festivals {
    gap: 8px;
    margin-top: 14px;
  }

  .hub-section-head {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .hub-section-head h2 {
    font-size: 1.6rem;
  }

  .hub-section-head p {
    max-width: none;
    font-size: 0.82rem;
  }

  .hub-section-head--compact {
    flex-direction: row;
    align-items: end;
    padding-top: 10px;
  }

  .hub-section-head--compact > p {
    width: max-content;
    font-size: 0.78rem;
  }

  .available-grid {
    grid-template-columns: 1fr;
  }

  .feature-festival {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    min-height: 132px;
    padding: 12px;
  }

  .feature-festival strong {
    font-size: 1.82rem;
  }

  .feature-festival small {
    font-size: 0.84rem;
  }

  .feature-facts span {
    font-size: 0.72rem;
  }

  .feature-action {
    justify-self: start;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .month-grid {
    grid-template-columns: 41px minmax(0, 1fr);
    gap: 7px;
  }

  .month-grid h3 {
    top: 8px;
    min-height: 32px;
    padding-top: 6px;
    font-size: 0.94rem;
  }

  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .mini-festival {
    min-height: 84px;
    padding: 8px;
    gap: 5px;
  }

  .mini-festival strong {
    font-size: 1.02rem;
  }

  .mini-festival small {
    font-size: 0.66rem;
  }

  .status-pill {
    min-height: 19px;
    padding: 0 5px;
    font-size: 0.66rem;
  }

  .festival-section {
    gap: 7px;
    margin-top: 12px;
  }

  .festival-section--ready {
    margin-top: 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 3px;
    padding-top: 9px;
  }

  .section-head h2 {
    font-size: 1.72rem;
  }

  .section-head p {
    max-width: none;
    font-size: 0.9rem;
  }

  .card {
    min-height: 132px;
    padding: 11px 12px;
  }

  .card h2 {
    margin: 6px 0 5px;
    font-size: 1.62rem;
  }

  .card p {
    margin-bottom: 7px;
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .card-facts {
    margin-bottom: 7px;
    gap: 4px;
  }

  .card-facts span {
    padding: 2px 6px;
    font-size: 0.78rem;
  }

  .actions {
    width: 100%;
    overflow: hidden;
  }

  .button {
    width: calc(100% - 12px);
    min-height: 38px;
    margin-inline: 6px;
    font-size: 0.92rem;
  }

  .lineup-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    padding: 4px 0;
  }

  .lineup-topbar .kicker {
    display: none;
  }

  .lineup-topbar h1 {
    overflow: hidden;
    font-size: 1.02rem;
    line-height: 0.94;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lineup-brand {
    display: block;
  }

  .lineup-brand-mark {
    display: none;
  }

  .lineup-title-full {
    display: none;
  }

  .lineup-title-short {
    display: inline;
  }

  .lineup-topbar__actions {
    width: auto;
    justify-content: flex-end;
    gap: 4px;
  }

  .lineup-topbar__actions .hub-link {
    min-height: 24px;
    padding: 0 7px;
    font-size: 0.58rem;
  }

  .lineup-official-link {
    display: none;
  }

  .lineup-count {
    display: none;
  }

  .lineup-controls {
    position: sticky;
    top: 0;
    z-index: 30;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 4px;
    padding: 7px;
    margin: 0 0 4px;
    background: rgba(4, 7, 19, 0.94);
  }

  .lineup-day-tabs {
    display: flex;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 5px;
  }

  .lineup-day-tabs::-webkit-scrollbar {
    display: none;
  }

  .day-tab {
    flex: 0 0 66px;
    min-width: 66px;
    min-height: 34px;
    padding: 0 4px;
  }

  .day-tab span {
    font-size: 0.72rem;
  }

  .day-tab small {
    font-size: 0.5rem;
  }

  .lineup-filter-button,
  .lineup-clear-button,
  .lineup-plan-button {
    width: auto;
    min-height: 34px;
    margin-inline: 0;
    padding: 0 7px;
    font-size: 0.62rem;
  }

  .lineup-clear-button {
    display: none;
  }

  .lineup-clear-button.is-visible {
    position: absolute;
    right: 7px;
    bottom: -34px;
    display: inline-flex;
    min-height: 28px;
    font-size: 0.64rem;
  }

  .lineup-filter-panel {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    z-index: 50;
    grid-template-columns: 1fr;
    max-height: min(72vh, 620px);
    overflow: auto;
    gap: 13px;
    padding: 12px;
    border: 1px solid rgba(49, 199, 223, 0.62);
    background: linear-gradient(180deg, #081833, #040817);
    box-shadow: 0 -16px 60px rgba(0, 0, 0, 0.64);
  }

  .lineup-filter-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: -12px -12px 0;
    padding: 12px;
    border-bottom: 1px solid rgba(49, 199, 223, 0.34);
    background: #081833;
  }

  .lineup-filter-head div {
    display: grid;
    gap: 2px;
  }

  .lineup-filter-head span,
  .lineup-filter-head strong {
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .lineup-filter-head span {
    color: var(--muted);
    font-size: 0.82rem;
  }

  .lineup-filter-head strong {
    color: var(--text);
    font-size: 1.35rem;
  }

  .lineup-search input {
    min-height: 44px;
  }

  .lineup-filter-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .lineup-filter-group > span {
    position: static;
    grid-column: 1 / -1;
    width: auto;
    padding: 0;
    background: transparent;
  }

  .lineup-filter-group .chip {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0.82rem;
    overflow-wrap: anywhere;
  }

  .lineup-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .lineup-program-grid,
  .lineup-grid-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 5px;
    padding: 5px;
  }

  .lineup-program-card {
    min-height: 86px;
    padding: 5px 25px 5px 5px;
  }

  .lineup-program-card .set-card__image {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
    border-radius: 4px;
  }

  .lineup-program-card strong {
    -webkit-line-clamp: 3;
    font-size: 0.82rem;
    line-height: 0.98;
  }

  .lineup-program-card .set-card__meta > span,
  .lineup-program-card .set-card__meta > small {
    font-size: 0.58rem;
    line-height: 1.05;
  }

  .lineup-grid-list .lineup-card {
    min-height: 76px;
  }

  .lineup-grid-list .lineup-card h2 {
    -webkit-line-clamp: 2;
  }

  .lineup-status {
    margin-bottom: 7px;
    padding: 7px 9px;
  }

  .lineup-status p {
    font-size: 0.76rem;
    line-height: 1.32;
  }

  .lineup-status strong {
    font-size: 0.9rem;
  }

  .stage-board {
    display: none;
  }

  .lineup-schedule-board > .stage-board__title,
  .lineup-grid-board > .stage-board__title {
    display: none;
  }

  .lineup-schedule-board {
    display: block;
  }

  .lineup-schedule-shell {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .lineup-timeline {
    margin-top: 30px;
  }

  .lineup-time-mark {
    font-size: 0.7rem;
  }

  .lineup-schedule-area {
    min-width: max(100%, calc(var(--stage-count) * 107px));
  }

  .lineup-schedule-head,
  .lineup-schedule-grid {
    grid-template-columns: repeat(var(--stage-count), minmax(107px, 1fr));
  }

  .lineup-schedule-head,
  .lineup-schedule-head h2 {
    min-height: 30px;
  }

  .lineup-schedule-head h2 {
    padding: 4px;
    font-size: 0.68rem;
  }

  .lineup-schedule-column {
    min-width: 107px;
  }

  .lineup-schedule-card {
    left: 2px;
    right: 2px;
    min-height: 32px;
    padding: 2px 23px 3px 2px;
  }

  .lineup-schedule-card__image {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .lineup-schedule-card h3 {
    font-size: 0.72rem;
    line-height: 0.96;
  }

  .lineup-schedule-card__meta span,
  .lineup-schedule-card__meta small {
    font-size: 0.5rem;
    line-height: 1.05;
  }

  .lineup-mobile-list {
    display: block;
  }

  .lineup-stage-group + .lineup-stage-group {
    margin-top: 8px;
  }

  .lineup-stage-group > header {
    min-height: 34px;
    padding: 7px 9px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
      color-mix(in srgb, var(--stage-color) 52%, #050713);
  }

  .lineup-stage-group > header strong {
    font-size: 1rem;
  }

  .lineup-stage-group__name small {
    font-size: 0.58rem;
  }

  .lineup-stage-group__count {
    font-size: 0.72rem;
  }

  .lineup-stage-group__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    padding: 5px;
  }

  .lineup-card {
    grid-template-columns: 40px 1fr;
    gap: 7px;
    min-height: 70px;
    padding: 6px 82px 6px 6px;
    border-color: color-mix(in srgb, var(--stage-color) 42%, rgba(91, 221, 255, 0.3));
    background:
      linear-gradient(145deg, rgba(18, 26, 54, 0.94), rgba(7, 10, 25, 0.98));
    box-shadow: none;
  }

  .lineup-card--no-preview {
    padding-right: 36px;
  }

  .lineup-card__image {
    width: 40px;
    height: 40px;
    border-radius: 5px;
  }

  .lineup-card__topline {
    font-size: 0.7rem;
  }

  .lineup-card h2 {
    margin: 1px 0 2px;
    font-size: 1.14rem;
    line-height: 0.92;
  }

  .lineup-card p {
    font-size: 0.72rem;
  }

  .lineup-card__tags {
    gap: 0;
    margin-top: 2px;
    color: var(--muted);
    line-height: 1.05;
  }

  .lineup-card__tags span {
    padding: 0;
    border: 0;
    color: inherit;
    font-family: Manrope, system-ui, sans-serif;
    font-size: 0.56rem;
    font-weight: 800;
  }

  .lineup-card__tags span + span::before {
    content: "·";
    margin: 0 4px;
    color: rgba(184, 196, 223, 0.72);
  }

  .lineup-preview-button {
    right: 28px;
    bottom: 22px;
    width: 50px;
    height: 28px;
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 0;
  }

  .lineup-preview-button svg {
    width: 17px;
    height: 17px;
  }

  .lineup-card .plan-toggle {
    width: 28px;
    height: 28px;
  }

  .lineup-card .plan-toggle::before {
    width: 20px;
    height: 20px;
  }

  .lineup-card .plan-toggle::after {
    right: 2px;
    bottom: 1px;
    font-size: 0.78rem;
  }

  .stage-board__title {
    gap: 8px;
    padding: 10px;
  }

  .stage-board__scroll {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .stage-board__rail {
    min-height: 0;
    padding: 12px 6px;
  }

  .stage-board__rail strong {
    font-size: 1.28rem;
  }

  .stage-board__columns {
    grid-template-columns: repeat(var(--stage-count), minmax(132px, 1fr));
    min-width: max(100%, calc(var(--stage-count) * 132px));
  }

  .stage-column {
    min-width: 132px;
  }

  .stage-column header {
    min-height: 46px;
    font-size: 0.98rem;
  }

  .stage-column__host {
    font-size: 0.58rem;
  }

  .stage-column__list {
    gap: 7px;
    padding: 7px;
  }

  .lineup-set-card {
    grid-template-columns: 22px 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 2px 5px;
    min-height: 86px;
    padding: 5px 25px 5px 5px;
  }

  .lineup-set-card__image {
    width: 22px;
    height: 22px;
    border-radius: 4px;
  }

  .lineup-set-card h3 {
    align-self: start;
    font-size: 0.82rem;
    line-height: 0.98;
  }

  .lineup-set-card p {
    font-size: 0.58rem;
    line-height: 1.05;
  }

  .lineup-dialog {
    width: calc(100vw - 16px);
    padding: 18px;
  }

  .lineup-dialog__head {
    grid-template-columns: 84px 1fr;
    gap: 12px;
  }

  .lineup-dialog__image {
    width: 84px;
  }

  .lineup-dialog h2 {
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .lineup-dialog .button {
    width: auto;
    min-height: 38px;
    margin-inline: 0;
    padding: 0 14px;
  }

  .lineup-dialog__linkrow {
    grid-template-columns: 1fr;
  }

  .lineup-dialog__linkrow .lineup-dialog__icons {
    justify-content: flex-end;
  }

  .lineup-footer {
    padding: 14px 0 max(24px, env(safe-area-inset-bottom));
  }

  .lineup-footer-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .lineup-footer .footer-tool {
    min-width: 0;
    padding: 0 6px;
    font-size: 0.66rem;
  }

  .lineup-footer p {
    font-size: 0.72rem;
  }

  .lineup-utility-dialog {
    padding: 16px;
  }

  .lineup-utility-content {
    font-size: 0.86rem;
  }

  .lineup-utility-content h2 {
    font-size: 1.55rem;
  }
}
