@font-face {
  font-family: Inter;
  font-weight: 400;
  src: url("/static/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-weight: 500;
  src: url("/static/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-weight: 600;
  src: url("/static/fonts/inter-600.woff2") format("woff2");
}

:root {
  --bg: #0C1210;
  --cream: #F4EFE6;
  --gold: #E6C36A;
  --red: #E23E3A;
  --green: #2EC46B;
  --coral: #E07A5F;
  --mute: rgba(244, 239, 230, 0.45);
  --line: rgba(244, 239, 230, 0.10);
}

* { box-sizing: border-box; }
html, body, #app {
  margin: 0;
  height: 100%;
  background: var(--bg);
  color: var(--cream);
  font-family: Inter, system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

.brand {
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
}

/* —— presentation —— */
.pres {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bar {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}
.bar .line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.bar .sep { color: var(--mute); font-size: 11px; }
.bar .sess,
.bar .who {
  color: var(--mute);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bar .who { color: var(--cream); font-weight: 500; }
.bar .score {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.step { display: flex; gap: 0; flex: 0 0 auto; }
.step button {
  width: 22px;
  height: 22px;
  color: var(--mute);
  font-size: 18px;
  line-height: 1;
}
.step button:hover { color: var(--cream); }

.stage {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--bg);
}

.cues {
  flex: 0 0 auto;
  padding: 14px 28px 22px;
}
.cue {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--cream);
}
.cue:last-child { margin-bottom: 0; }

/* —— packet / home —— */
.home {
  height: 100%;
  overflow: auto;
}
.hero {
  padding: 72px 64px 120px;
  max-width: 1760px;
}
.hero .brand {
  display: inline-block;
  margin: 0 0 40px;
}
.hero h1 {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 10px;
}
.hero .court {
  color: var(--mute);
  font-size: 16px;
  margin: 0 0 48px;
}
.hero .note {
  color: var(--mute);
  font-size: 11px;
  margin: 36px 0 0;
  letter-spacing: 0.01em;
}
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .strip { grid-template-columns: 1fr; }
  .hero { padding: 40px 20px 72px; }
  .hero h1 { font-size: 36px; }
  .cue { font-size: 18px; }
  .bar .sess { display: none; }
}
.still {
  position: relative;
  display: block;
  background: #080c0b;
}
.still img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.still .tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.03em;
}
.still:hover .tag { color: var(--gold); }

.empty { color: var(--mute); padding: 48px 40px; }
