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

:root {
  --bg: #0f0f0f;
  --text: #ffffff;
  --muted: #888;
  --border: #2a2a2a;
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  line-height: 1.5;
}

/* ── HERO ── */
.hero {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 24px 0;
}

.hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ── HEADER ── */
.site-header {
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 24px 24px;
  text-align: center;
}

.site-header h1 {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(13px, 2.2vw, 17px);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--text);
}

.tagline {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── MAIN ── */
#main {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

/* ── SHOW LIST ── */
.show-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.show-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.show-thumb { margin-left: 16px; }
.show-play  { margin-right: 16px; }

.show-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  flex-shrink: 0;
}

.show-info {
  flex: 1;
  min-width: 0;
}

.show-title {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.4;
}

.show-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.5;
}

.show-play {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--text);
  padding: 10px 24px;
  flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}
.show-play:hover {
  background: var(--text);
  color: var(--bg);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero { padding: 20px 16px 0; }
  .site-header { padding: 16px 16px 20px; }
  #main { padding: 0 16px 48px; }
  .show-thumb { width: 52px; height: 52px; }
}
