:root {
  color-scheme: dark;
  --bg: #111312;
  --panel: #191d1b;
  --panel-2: #202522;
  --text: #f1f4ef;
  --muted: #b7c1b5;
  --line: #394139;
  --accent: #df4f3f;
  --accent-2: #e7c35d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 40px clamp(20px, 5vw, 72px) 28px;
  border-bottom: 1px solid var(--line);
  background: #151816;
}

.kicker {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.status {
  flex: 0 0 auto;
  min-width: 116px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 56px;
}

.intro {
  max-width: 680px;
  margin-bottom: 28px;
}

.intro h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.intro p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 18px;
}

.video-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #060706;
}

.video-meta {
  padding: 16px;
}

.video-meta h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.video-meta p,
.empty-state p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--panel-2);
}

.empty-state h3 {
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    padding-top: 28px;
  }

  .status {
    width: 100%;
  }
}
