/* ── Announcement banner ── */
.announcement-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem 3rem;
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
}

.banner-emoji { font-size: 1rem; flex-shrink: 0; }
.banner-text  { color: var(--text); }

.banner-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.3rem;
  line-height: 1;
  transition: color 0.2s;
}
.banner-close:hover { color: var(--text); }

/* Push nav down when banner is visible */
.has-banner nav { top: 38px; }
.has-banner .hero { padding-top: calc(6rem + 38px); }

/* ── VODs / Clips section ── */
.vods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.vod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.vod-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

.vod-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-surface);
}

.vod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.vod-card:hover .vod-thumb img { transform: scale(1.04); }

.vod-duration {
  position: absolute;
  bottom: 0.4rem;
  right: 0.4rem;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  font-weight: 500;
}

.vod-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.2s;
}

.vod-card:hover .vod-play { background: rgba(0,0,0,0.3); }

.vod-play-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,135,74,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: #160f08;
  font-size: 1.1rem;
}

.vod-card:hover .vod-play-icon { opacity: 1; }

.vod-info {
  padding: 0.9rem 1rem;
  flex: 1;
}

.vod-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vod-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.75rem;
}

.vod-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem;
  font-size: 0.9rem;
  grid-column: 1/-1;
}

@media (max-width: 900px) {
  .vods-grid { grid-template-columns: 1fr 1fr; }
  .announcement-banner { font-size: 0.78rem; padding: 0.5rem 2.5rem; }
  .has-banner nav { top: 34px; }
}

@media (max-width: 600px) {
  .vods-grid { grid-template-columns: 1fr; }
}
