/* ============================================================
   FilmSite — Ana Sayfa Stylesheet
   Sinematik karanlık tema, modern & responsive
   ============================================================ */

:root,
[data-theme="dark"] {
  --bg:         #080810;
  --bg-2:       #0c0c18;
  --surface:    #0f0f1a;
  --surface-2:  #141422;
  --border:     #1e1e30;
  --text:       #e2e2f0;
  --text-2:     #8888aa;
  --muted:      #4a4a6a;
  --accent:     #e50914;
  --accent-2:   #ff6b35;
  --white:      #ffffff;
  --card-bg:    #0f0f1a;
  --card-hover: #141422;
}

[data-theme="light"] {
  --bg:         #f4f4f8;
  --bg-2:       #eaeaf0;
  --surface:    #ffffff;
  --surface-2:  #f0f0f8;
  --border:     #dcdce8;
  --text:       #14142a;
  --text-2:     #5a5a7a;
  --muted:      #9090aa;
  --accent:     #e50914;
  --accent-2:   #ff6b35;
  --white:      #14142a;
  --card-bg:    #ffffff;
  --card-hover: #f0f0f8;
}

/* ── Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body, 'Inter', sans-serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* .pub-announcement — artık kullanılmıyor, popup sistemi devrede (announcement-popup.php) */

/* ── Language Switcher — navbar.php içinde inline CSS olarak tanımlandı ── */

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,8,16,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .navbar {
  background: rgba(255,255,255,.92);
}
.navbar .container {
  display: flex;
  align-items: center;
  height: 60px;
  gap: 32px;
}
.navbar-brand {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  flex-shrink: 0;
}
.brand-accent { color: var(--accent); font-size: 10px; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 6px 12px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--surface-2); }
.navbar-right,
.navbar-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 8px;
  color: var(--text-2);
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover { background: var(--surface-2); color: var(--text); }
.navbar-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 8px;
  color: var(--text-2);
  cursor: pointer;
  align-items: center;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 15px;
  color: var(--text-2);
  transition: background .15s;
}
.mobile-nav-link:hover { background: var(--surface-2); color: var(--text); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 48px;
}
.hero-inner {
  max-width: 560px;
}
.hero-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-sub { color: var(--text-2); margin-bottom: 28px; font-size: 15px; }
.search-form {
  display: flex;
  gap: 0;
  max-width: 480px;
}
.search-input-pub {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 9px 0 0 9px;
  padding: 12px 18px;
  color: var(--text);
  font-size: 14.5px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.search-input-pub:focus { border-color: var(--accent); }
.search-btn {
  background: var(--accent);
  border: none;
  border-radius: 0 9px 9px 0;
  padding: 0 18px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.search-btn:hover { opacity: .85; }

/* ── Filters ─────────────────────────────────────────────────── */
.filters-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 60px;
  z-index: 100;
}
.filters-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-cats { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.cat-pill {
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.cat-pill:hover { border-color: var(--accent); color: var(--accent); }
.cat-pill.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.sort-select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  color: var(--text-2);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

/* ── Film Grid ───────────────────────────────────────────────── */
.main-content { padding: 36px 0 60px; }
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.film-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.film-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(229,9,20,.15);
}
.film-card-link { display: block; }
.film-poster-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg-2);
}
.film-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.film-card:hover .film-poster { transform: scale(1.05); }
.film-poster-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.film-card:hover .film-poster-overlay { opacity: 1; }
.film-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.film-lock {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,.7);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.film-category-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.film-studio-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,.72);
  color: rgba(255,255,255,.9);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .5px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  max-width: calc(100% - 16px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Film Kartı Cast Avatarları ─────────────────────────────── */
.film-card-cast {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: nowrap;
  overflow: hidden;
}
[data-theme="light"] .film-card-cast {
  border-top-color: rgba(0,0,0,.08);
}
.film-cast-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  transition: transform .2s, border-color .2s;
  cursor: default;
  position: relative;
}
.film-cast-avatar:hover {
  transform: scale(1.2);
  border-color: var(--accent);
  z-index: 2;
}
.film-cast-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.film-cast-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.film-cast-more {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
}
.film-info { padding: 12px; }
.film-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.film-card-synopsis {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.film-meta {
  font-size: 12px;
  color: var(--text-2);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.meta-sep { opacity: .4; }

/* ── Empty State ─────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state svg { margin: 0 auto 16px; }
.empty-state p { font-size: 16px; margin-bottom: 20px; }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--text-2);
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Pagination ──────────────────────────────────────────────── */
.pub-pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 40px;
}
.pub-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.pub-page-btn:hover { border-color: var(--accent); color: var(--accent); }
.pub-page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-desc { font-size: 13.5px; color: var(--text-2); max-width: 280px; line-height: 1.7; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link { font-size: 14px; color: var(--text-2); transition: color .15s; }
.footer-link:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* ── Cookie Banner ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  max-width: 520px;
  width: calc(100% - 48px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  color: var(--text-2);
}
.cookie-banner-text { flex: 1; }
.cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.cookie-decline {
  background: none;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

/* ── Film detail extras ──────────────────────────────────────── */
.related-films {
  padding: 48px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.related-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .navbar-menu-btn { display: flex; }
  .film-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 40px 0 32px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .film-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .container { padding: 0 16px; }
}


/* ═══════════════════════════════════════════════════════════════
   TEMA: CINEMA
═══════════════════════════════════════════════════════════════ */

/* Featured */
.cinema-featured-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.cinema-featured-link { display: block; height: 100%; }
.cinema-featured-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform .6s ease;
}
.cinema-featured-wrap:hover .cinema-featured-bg { transform: scale(1.03); }
.cinema-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.5) 50%,
    rgba(0,0,0,.1) 100%
  );
}
.cinema-featured-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 40px;
  max-width: 560px;
}
.cinema-featured-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.cinema-badge-featured {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cinema-badge-dcp {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}
.cinema-featured-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cinema-featured-meta {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.cinema-sep { opacity: .4; }
.cinema-featured-syn {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Section */
.cinema-section { margin-bottom: 36px; }
.cinema-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cinema-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.cinema-section-more {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}
.cinema-section-more:hover { opacity: .75; }

/* Yatay scroll row */
.cinema-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.cinema-row::-webkit-scrollbar { height: 3px; }
.cinema-row::-webkit-scrollbar-track { background: transparent; }
.cinema-row::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.cinema-card {
  flex: 0 0 160px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease;
}
.cinema-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.cinema-card-link { display: block; }
.cinema-card-poster-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg-2);
}
.cinema-card-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.cinema-card:hover .cinema-card-poster { transform: scale(1.06); }
.cinema-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.cinema-card:hover .cinema-card-overlay { opacity: 1; }
.cinema-card-info { padding: 10px; }
.cinema-card-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}
.cinema-card-meta { font-size: 11px; color: var(--muted); }
.film-dcp-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,.7);
  border-radius: 6px;
  padding: 4px 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}
.film-dcp-badge span { font-size: 10px; color: #fff; font-weight: 600; }

@media (max-width: 768px) {
  .cinema-featured-wrap { height: 260px; }
  .cinema-featured-content { padding: 20px; }
  .cinema-card { flex: 0 0 130px; }
}


/* ═══════════════════════════════════════════════════════════════
   TEMA: MINIMAL LIST
═══════════════════════════════════════════════════════════════ */

.list-view {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.list-item {
  display: grid;
  grid-template-columns: 36px 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background .15s;
}
.list-item:last-child { border-bottom: none; }
.list-item:hover { background: var(--surface-2); }

.list-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.list-poster-link { display: block; }
.list-poster-wrap {
  position: relative;
  width: 64px;
  max-width: 64px;
  height: 96px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.list-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.list-item:hover .list-poster-img { transform: scale(1.05); }

.list-info { min-width: 0; }
.list-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s;
}
.list-title:hover { color: var(--accent); }
.list-meta {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.list-cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.list-cat-pill {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.list-cat-pill:hover { border-color: var(--accent); color: var(--accent); }

.list-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.list-studio-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--accent-dim);
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.list-studio-badge:hover { background: var(--accent); color: #fff; }
.list-dcp-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text-2);
}
.list-view-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s, background .15s;
  white-space: nowrap;
}
.list-view-btn:hover { border-color: var(--accent); background: var(--accent); color: #fff; }

@media (max-width: 768px) {
  .list-item { grid-template-columns: 28px 48px 1fr; gap: 10px; }
  .list-right { display: none; }
  .list-poster-wrap { width: 48px; height: 72px; }
  .list-title { font-size: 14px; }
}
