/* =====================================================================
   MINEVANE — Downloads page
   Season world archive. Builds on the shared "Living Stone" tokens in
   styles.css and reuses .vote-card / .btn — only page-specific bits here.
   ===================================================================== */

/* ---------- Hero (centered, mirrors the shop-hero pattern) ---------- */
.dl-hero {
  position: relative;
  padding: clamp(6.5rem, 11vw, 8.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  overflow: hidden;
}
.dl-hero .eyebrow { justify-content: center; }
.dl-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 1.2rem auto 0;
  max-width: 18ch;
}
.dl-hero h1 .accent {
  background: linear-gradient(135deg, var(--emerald-bright), var(--emerald-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dl-hero p {
  margin: 1.1rem auto 0;
  max-width: 60ch;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

/* ---------- Season grid ---------- */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

/* "Completed" badge in the top-right of each card */
.dl-card { overflow: hidden; }
.dl-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* Meta row: file size · MC version */
.dl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-mute);
  padding: 0.55rem 0;
  border-top: 1px dashed var(--line);
  margin-top: 0.4rem;
}
.dl-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.dl-meta strong { color: var(--emerald-soft); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .dl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dl-grid { grid-template-columns: 1fr; }
}
