:root {
  --bg: #0d0d0d;
  --bg-card: #181818;
  --bg-hover: #252525;
  --red: #e63030;
  --red-hover: #ff4444;
  --red-dim: rgba(230, 48, 48, 0.15);
  --green: #4caf50;
  --text: #f0f0f0;
  --text-muted: #888;
  --border: #2a2a2a;
  --radius: 8px;
  --nav-h: 60px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ── Navbar ─────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.search-wrap {
  flex: 1;
  max-width: 380px;
}

.search-wrap input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.search-wrap input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}

.search-wrap input::placeholder { color: #555; }

.nav-admin {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 14px;
  white-space: nowrap;
  transition: all 0.18s;
}
.nav-admin:hover { color: #fff; border-color: var(--red); background: var(--red); }
@media (max-width: 600px) { .nav-admin { padding: 7px 10px; font-size: 0.78rem; } }

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  margin-bottom: 10px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: brightness(0.35) blur(1px);
  transform: scale(1.05);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg) 28%, transparent 65%),
    linear-gradient(to top, var(--bg) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 0 60px 52px;
  max-width: 640px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: var(--red);
  color: #fff;
}
.badge.fav { background: #c9a800; color: #000; }
.badge.year { background: transparent; border: 1px solid #444; color: #aaa; }
.badge.status-ongoing { background: rgba(76, 175, 80, 0.2); border: 1px solid var(--green); color: var(--green); }
.badge.status-completed { background: rgba(100,100,100,0.2); border: 1px solid #555; color: #aaa; }
.badge.status-archived { background: rgba(255,152,0,0.15); border: 1px solid #ff9800; color: #ff9800; }

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-desc {
  color: #bbb;
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-actions { display: flex; gap: 12px; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.18s;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

/* ── Main content ────────────────────────────── */
main { padding: 0 40px 70px; }

/* ── Sections ────────────────────────────────── */
.section { margin-bottom: 44px; }

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Slider ──────────────────────────────────── */
.slider-wrap { position: relative; }

.slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }

.slider-arrow {
  position: absolute;
  top: calc(50% - 24px);
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10,10,10,0.85);
  border: 1px solid #444;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}
.slider-wrap:hover .slider-arrow { opacity: 1; }
.slider-arrow:hover { background: var(--red); border-color: var(--red); }
.slider-arrow.prev { left: -19px; }
.slider-arrow.next { right: -19px; }

/* ── Cards ───────────────────────────────────── */
.card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 165px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  display: block;
  color: inherit;
}

.card:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  z-index: 5;
}

.card-thumb-wrap {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
}

.card-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.card:hover .card-thumb-wrap img { transform: scale(1.04); }

.card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1c0000 0%, #2a0505 40%, #1a1a1a 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.card-placeholder span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ccc;
  line-height: 1.3;
}

.card-overlay {
  position: absolute;
  inset: 0;
  top: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.card:hover .card-overlay { background: rgba(0,0,0,0.42); }

.play-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(230,48,48,0.5);
}
.card:hover .play-circle { opacity: 1; transform: scale(1); }

.card-fav {
  position: absolute;
  top: 7px;
  right: 8px;
  color: #ffd700;
  font-size: 0.9rem;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.9));
}

/* "N temporadas" — texto minimalista dentro da thumb (estilo do nome antigo) */
.card-seasons {
  position: absolute;
  left: 11px;
  bottom: 10px;
  color: #ccc;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

/* Selo "Arquivado" (só no bloco Novos), mesmo amarelo do favorito */
.card-arch {
  position: absolute;
  top: 7px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #ffd700;
  font-size: 0.62rem;
  font-weight: 700;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.9));
  z-index: 3;
}
.card-arch svg { display: block; }

/* Tooltip de hover (descricao), preso ao body — não é cortado pelos sliders */
.card-tooltip-pop {
  position: fixed;
  transform: translate(-50%, -100%);
  background: #1f1f1f;
  color: #f0f0f0;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.45;
  max-width: 260px;
  box-shadow: 0 10px 34px rgba(0,0,0,0.65);
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s;
}
.card-tooltip-pop.show { opacity: 1; visibility: visible; }

.card-info {
  padding: 9px 11px 11px;
}

.card-name {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.card-next-ep {
  color: var(--red);
  font-weight: 700;
  font-size: 0.72rem;
}

.card-progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.card-progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
}

/* Continue watching cards — wider, 16:9 */
.card.wide { width: 230px; }
.card.wide .card-thumb-wrap { aspect-ratio: 16/9; }

/* ── Grid (Todos os Animes) ──────────────────── */
.filter-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
  transition: all 0.18s;
}
.pill:hover, .pill.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.anime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 16px;
}

/* ── Search overlay ──────────────────────────── */
#search-results { padding: 0 40px; display: none; }

.search-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 20px;
  font-size: 0.95rem;
}

/* ── Status dots (inside badges) ─────────────── */
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 4px;
}
.dot-ongoing { background: var(--green); }
.dot-completed { background: #666; }
.dot-archived { background: #ff9800; }


/* ════════════════════════════════════════════════
   WATCH PAGE
   ════════════════════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--text-muted);
  overflow: hidden;
}
.breadcrumb-sep { color: #444; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .current { color: var(--red); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.watch-layout {
  display: flex;
  min-height: calc(100vh - var(--nav-h));
}

/* Player column */
.player-col {
  flex: 1;
  min-width: 0;
  padding: 24px 28px 40px 40px;
  display: flex;
  flex-direction: column;
}

.player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
}

.player-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.iframe-fallback {
  position: absolute;
  inset: 0;
  background: #111;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--text-muted);
  padding: 20px;
}
.iframe-fallback p { font-size: 0.9rem; line-height: 1.5; }
.iframe-fallback.show { display: flex; }

/* Controls */
.controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 14px 0 18px;
}

.ctrl-group { display: flex; gap: 8px; align-items: center; }
.ctrl-group.center { flex: 1; justify-content: center; }

.ctrl-btn {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.ctrl-btn:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--text);
  background: var(--bg-hover);
}
.ctrl-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.ctrl-btn.next {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-weight: 700;
}
.ctrl-btn.next:hover:not(:disabled) { background: var(--red-hover); border-color: var(--red-hover); }

.ctrl-btn.mark { border-color: #444; }
.ctrl-btn.mark.watched {
  background: rgba(76,175,80,0.12);
  border-color: var(--green);
  color: var(--green);
}
.ctrl-btn.mark:not(.watched):hover:not(:disabled) {
  background: rgba(76,175,80,0.1);
  border-color: var(--green);
  color: var(--green);
}

/* Resume row (onde parei) */
.resume-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 4px 0 16px;
}
.resume-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.resume-input {
  width: 90px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 12px;
  color: var(--text);
  font-size: 0.86rem;
  font-family: inherit;
  outline: none;
  text-align: center;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.resume-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-dim); }
.resume-input::placeholder { color: #555; }
.resume-save { padding: 7px 16px; }
.resume-hint {
  font-size: 0.76rem;
  color: var(--text-muted);
  flex: 1 1 100%;
}

/* Episode left side (number + post date) */
.ep-left { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ep-date {
  font-size: 0.6rem;
  color: #777;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ep-btn.current .ep-date { color: rgba(255,255,255,0.78); }
.ep-btn.watched .ep-date { color: #6a6a6a; }

/* Episode time tag (sidebar) */
.ep-tags { display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0; }
.ep-time {
  font-size: 0.66rem;
  color: var(--red);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.ep-btn.current .ep-time { color: rgba(255,255,255,0.9); }
.ep-btn.watched .ep-time { color: #c97a7a; }

/* Episode info */
.ep-info { padding: 2px 0 6px; }
.ep-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.ep-anime-name { font-size: 1.45rem; font-weight: 800; margin-bottom: 4px; }
.ep-label { font-size: 0.95rem; color: var(--red); font-weight: 600; }
.ep-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* Tag buttons (favoritar / arquivar) */
.tag-actions { display: flex; gap: 8px; flex-shrink: 0; }
.tag-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.18s;
}
.tag-btn:hover { background: var(--bg-hover); color: var(--text); border-color: #444; }
.tag-btn.on.fav { background: rgba(201,168,0,0.15); border-color: #c9a800; color: #ffd700; }
.tag-btn.on.arch { background: rgba(255,152,0,0.14); border-color: #ff9800; color: #ff9800; }

/* Sidebar */
.sidebar-col {
  width: 300px;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  background: #111;
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--nav-h));
  position: sticky;
  top: var(--nav-h);
  overflow: hidden;
}

.sidebar-title {
  padding: 15px 18px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  flex-shrink: 0;
}

/* Season tabs */
.season-tabs {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.season-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s;
}
.season-tab.active, .season-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.season-panels {
  flex: 1;
  overflow-y: auto;
  padding: 10px 12px 12px;
}

.season-panel { display: none; }
.season-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }

.ep-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 6px;
  padding: 7px 9px;
  font-size: 0.76rem;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.15s;
  gap: 4px;
}
.ep-btn:hover { border-color: var(--red); color: var(--text); background: var(--bg-hover); }
.ep-btn.current { background: var(--red); border-color: var(--red); color: #fff; font-weight: 700; }
.ep-btn.watched { opacity: 0.55; }
.ep-btn.watched .ep-check { color: var(--green); font-size: 0.8rem; }
.ep-btn.current .ep-check { color: rgba(255,255,255,0.8); }
.ep-num { font-weight: 600; }

/* Loading / error */
.state-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: calc(100vh - var(--nav-h));
  color: var(--text-muted);
  text-align: center;
  padding: 20px;
}
.state-center h2 { color: var(--text); font-size: 1.3rem; }


/* ════════════════════════════════════════════════
   RESPONSIVO — TABLET / CELULAR
   ════════════════════════════════════════════════ */

@media (max-width: 900px) {
  nav { padding: 0 18px; }
  main { padding: 0 18px 60px; }
  .hero-content { padding: 0 28px 40px; }

  /* player e lista empilham */
  .watch-layout { flex-direction: column; }
  .player-col { padding: 16px 18px 24px; }
  .sidebar-col {
    width: 100%;
    height: auto;
    position: static;
    top: auto;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .season-panels { max-height: 65vh; }
}

@media (max-width: 600px) {
  :root { --nav-h: 52px; }

  /* navbar compacta */
  nav { padding: 0 12px; gap: 10px; }
  .logo { font-size: 1.15rem; }
  .search-wrap { max-width: none; }

  main { padding: 0 12px 50px; }
  .section { margin-bottom: 30px; }
  .section-title { font-size: 1rem; }

  /* hero menor e legível */
  .hero { height: auto; min-height: 320px; }
  .hero-bg { filter: brightness(0.4) blur(1px); }
  .hero-gradient { background: linear-gradient(to top, var(--bg) 6%, transparent 72%); }
  .hero-content { padding: 80px 16px 24px; max-width: 100%; }
  .hero-title { font-size: 1.6rem; }
  .hero-desc { font-size: 0.84rem; -webkit-line-clamp: 3; margin-bottom: 16px; }
  .hero-actions { flex-wrap: wrap; gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }

  /* cards menores; arrows somem (usa swipe) */
  .slider-arrow { display: none; }
  .card { width: 132px; }
  .card.wide { width: 200px; }
  .anime-grid { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 12px; }

  /* filtros roláveis na horizontal */
  .filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .filter-pills::-webkit-scrollbar { display: none; }
  .pill { flex-shrink: 0; }

  #search-results { padding: 0 12px; }

  /* watch: controles e botões em telas estreitas */
  .player-col { padding: 12px 12px 22px; }
  .controls-bar { flex-wrap: wrap; gap: 8px; margin: 12px 0 14px; }
  .ctrl-group.center { order: -1; flex: 1 1 100%; }
  .ctrl-btn { padding: 9px 14px; }

  /* nome + tags (favoritar/arquivar) empilham pra não cortar */
  .ep-head { flex-direction: column; gap: 12px; }
  .ep-anime-name { font-size: 1.2rem; }
  .tag-actions { width: 100%; }
  .tag-btn { flex: 1; text-align: center; }

  /* "parou em" ocupa a largura */
  .resume-input { flex: 1; width: auto; }

  .breadcrumb { font-size: 0.76rem; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 1.35rem; }
  .anime-grid { grid-template-columns: repeat(1fr); grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
  .card { width: 116px; }
  .season-panel.active { grid-template-columns: 1fr; }
}
