/* ================================================================
   Topcityvibe Pro — Homepage Sections
================================================================ */

/* ══════════════════════════════════════════════════════
   ① HERO CAROUSEL — Cinematic Full-Width
══════════════════════════════════════════════════════ */
.hero-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 28px;
  aspect-ratio: 16/7;
  min-height: 340px;
  max-height: 520px;
  box-shadow: var(--sh-lg);
  background: #0a0f0d;
}

/* Track */
.hc-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slides */
.hc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.hc-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
  z-index: 2;
}
.hc-slide.exit {
  opacity: 0;
  transform: scale(.97);
  z-index: 1;
}

/* Background image */
.hc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease;
}
.hc-slide.active .hc-bg { transform: scale(1.05); }
.hc-bg--gradient { border-radius: 0; }

/* Cinematic overlays */
.hc-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.55) 38%,
    rgba(0,0,0,.15) 60%,
    transparent 100%
  );
  z-index: 3;
}
.hc-overlay-top {
  position: absolute;
  top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.35) 0%,
    transparent 100%
  );
  z-index: 3;
}

/* Slide content */
.hc-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: 28px 32px 52px;
}

.hc-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.hc-cat {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--ease);
}
.hc-cat:hover { background: var(--green-mid); }
.hc-time {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hc-title {
  font-family: var(--f-disp);
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.hc-title a { color: #fff; text-decoration: none; }
.hc-title a:hover { color: var(--green-light); }

.hc-excerpt {
  font-size: clamp(12px, 1.3vw, 14px);
  color: rgba(255,255,255,.68);
  line-height: 1.55;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 600px;
}

.hc-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hc-author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 600;
}
.hc-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.25);
}
.hc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-decoration: none;
  transition: all var(--ease);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(22,163,74,.4);
}
.hc-btn:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(22,163,74,.55);
}

/* Slide number badge */
.hc-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--f-disp);
  font-size: 60px;
  font-weight: 800;
  color: rgba(255,255,255,.07);
  line-height: 1;
  z-index: 3;
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
}

/* Navigation arrows */
.hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .22s ease;
  opacity: 0;
  pointer-events: none;
}
.hero-carousel:hover .hc-arrow { opacity: 1; pointer-events: all; }
.hc-arrow--prev { left: 16px; }
.hc-arrow--next { right: 16px; }
.hc-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 18px rgba(22,163,74,.5);
}

/* Dot indicators */
.hc-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  padding: 0;
}
.hc-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(22,163,74,.6);
}
.hc-dot:hover:not(.active) { background: rgba(255,255,255,.7); transform: scale(1.2); }

/* Progress bar */
.hc-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.1);
  z-index: 5;
}
.hc-progress-bar {
  height: 100%;
  background: var(--green);
  width: 0%;
  transition: none;
  box-shadow: 0 0 6px var(--green);
}

/* ── Mobile carousel ── */
@media (max-width: 640px) {
  .hero-carousel {
    aspect-ratio: auto;
    min-height: 280px;
    max-height: 340px;
    height: 310px;
    border-radius: 14px;
    margin-bottom: 20px;
  }
  .hc-content { padding: 16px 18px 46px; }
  .hc-title { font-size: clamp(17px, 5.5vw, 24px); margin-bottom: 6px; }
  .hc-excerpt { display: none; }
  .hc-arrow { display: none; }
  .hc-num { font-size: 40px; top: 14px; right: 14px; }
  .hc-dots { bottom: 14px; }
  .hc-btn { padding: 8px 14px; font-size: 11px; }
  .hc-footer { gap: 8px; }
}

@media (max-width: 900px) {
  .hero-carousel { aspect-ratio: 16/8; min-height: 280px; }
}

/* ══════════════════════════════════════════════════════
   ② POPULAR THIS WEEK
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   ② POPULAR THIS WEEK
══════════════════════════════════════════════════════ */
.popular-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 28px; }
.popular-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border-2); transition: background var(--ease); cursor: pointer; text-decoration: none; color: inherit; }
.popular-item:last-child { border-bottom: none; }
.popular-item:hover { background: var(--green-tint); }
.popular-rank { font-family: var(--f-disp); font-size: 24px; font-weight: 800; color: var(--border); line-height: 1; width: 26px; flex-shrink: 0; }
.popular-item:nth-child(1) .popular-rank { color: var(--green); }
.popular-item:nth-child(2) .popular-rank { color: var(--text-muted); }
.popular-item:nth-child(3) .popular-rank { color: var(--gold); }
.popular-thumb { width: 68px; height: 68px; border-radius: var(--r-md); overflow: hidden; flex-shrink: 0; background: var(--green-pale); }
.popular-thumb img { width: 100%; height: 100%; object-fit: cover; }
.popular-info { flex: 1; min-width: 0; }
.popular-cat { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.popular-title { font-size: 13px; font-weight: 600; line-height: 1.35; color: var(--text); margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.popular-title a { color: var(--text); }
.popular-title a:hover { color: var(--green); }
.popular-meta { font-size: 11px; color: var(--text-faint); }

/* ══════════════════════════════════════════════════════
   ③ MOVIES SCROLL
══════════════════════════════════════════════════════ */
.movies-section { margin-bottom: 28px; }
.movie-card { flex: 0 0 150px; background: var(--surface); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: all .25s ease; cursor: pointer; }
.movie-card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(0,0,0,.14); border-color: rgba(22,163,74,.35); }
.movie-poster { position: relative; aspect-ratio: 2/3; overflow: hidden; }
.movie-poster .bg { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.movie-card:hover .movie-poster .bg { transform: scale(1.05); }
.movie-poster-grad { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.15) 50%,transparent 100%); pointer-events: none; }
.movie-badge { position: absolute; top: 8px; left: 8px; background: var(--green); color: #fff; font-size: 8px; font-weight: 800; letter-spacing: 1px; padding: 3px 7px; border-radius: 3px; z-index: 2; }
.movie-score { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,.6); border: 1px solid rgba(252,211,77,.7); color: #fcd34d; font-family: var(--f-disp); font-size: 12px; font-weight: 700; padding: 2px 7px; border-radius: 4px; display: flex; align-items: center; gap: 3px; backdrop-filter: blur(6px); z-index: 2; }
.movie-hover-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s; z-index: 3; }
.movie-card:hover .movie-hover-play { opacity: 1; }
.movie-play-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; box-shadow: 0 4px 20px rgba(22,163,74,.55); }
.movie-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 10px 12px; z-index: 2; }
.movie-genre { font-size: 8px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-light); margin-bottom: 3px; }
.movie-name { font-family: var(--f-disp); font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.movie-name a { color: #fff; }
.movie-footer {
  padding: 8px 10px 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.movie-year { font-size: 11px; color: var(--text-faint); }
.movie-studio { font-size: 9px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--green); }
/* New Cinemas footer labels */
.movie-year-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-faint);
  white-space: nowrap;
}
.movie-nollywood-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(22,163,74,.12);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(22,163,74,.3);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════
   ④ LATEST POSTS CAROUSEL
══════════════════════════════════════════════════════ */
.latest-section { margin-bottom: 28px; }
.latest-card { flex: 0 0 205px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all .25s; cursor: pointer; text-decoration: none; display: block; color: inherit; }
.latest-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(22,163,74,.3); }
.latest-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--green-pale); }
.latest-img .bg, .latest-img img { width: 100%; height: 100%; object-fit: cover; }
.latest-badge { position: absolute; top: 8px; left: 8px; background: var(--green); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.latest-body { padding: 11px 12px 13px; }
.latest-title { font-size: 13px; font-weight: 700; line-height: 1.35; color: var(--text); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px; }
.latest-meta { font-size: 11px; color: var(--text-faint); display: flex; align-items: center; gap: 4px; }

/* ══════════════════════════════════════════════════════
   ⑤ BOX OFFICE
══════════════════════════════════════════════════════ */
.boxoffice-section { margin-bottom: 28px; }
.bo-table { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; width: 100%; }
.bo-header { display: grid; grid-template-columns: 34px 1fr 90px 60px 50px; gap: 8px; padding: 10px 16px; background: var(--green-tint); border-bottom: 1px solid var(--border); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
body.dark .bo-header { background: rgba(22,163,74,.08); }
.bo-row, a.bo-row { display: grid; grid-template-columns: 34px 1fr 90px 60px 50px; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border-2); align-items: center; transition: background var(--ease); cursor: pointer; text-decoration: none; color: inherit; }
.bo-row:last-child { border-bottom: none; }
.bo-row:hover { background: var(--green-tint); }
.bo-rank { font-family: var(--f-disp); font-size: 16px; font-weight: 800; color: var(--text-faint); text-align: center; }
.bo-row:nth-child(2) .bo-rank { color: var(--green); }
.bo-row:nth-child(3) .bo-rank { color: var(--text-muted); }
.bo-row:nth-child(4) .bo-rank { color: var(--gold); }
.bo-film { display: flex; align-items: center; gap: 10px; min-width: 0; }
.bo-thumb { width: 40px; height: 40px; border-radius: var(--r-sm); background: linear-gradient(135deg,var(--green-pale),var(--green-light)); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 14px; flex-shrink: 0; overflow: hidden; }
.bo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bo-film-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bo-film-title a { color: var(--text); }
.bo-film-genre { font-size: 10px; color: var(--text-faint); }
.bo-gross { font-size: 13px; font-weight: 700; color: var(--text); }
.bo-gross span { font-size: 10px; color: var(--text-faint); display: block; }
.bo-weeks { font-size: 13px; font-weight: 600; color: var(--text-muted); text-align: center; }
.bo-change { display: flex; align-items: center; justify-content: flex-end; gap: 4px; font-size: 12px; font-weight: 700; }
.bo-change.up { color: var(--green); }
.bo-change.down { color: var(--red); }
.bo-change.same { color: var(--text-faint); }

/* ══════════════════════════════════════════════════════
   ⑥ MUSIC CHARTS
══════════════════════════════════════════════════════ */
.charts-section { margin-bottom: 28px; }
.music-tabs-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-bottom: 14px; }
.music-tabs-wrap::-webkit-scrollbar { display: none; }
.music-tabs { display: flex; gap: 4px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 4px; width: max-content; min-width: 100%; }
.music-tabs::-webkit-scrollbar { display: none; }
.music-tab { padding: 7px 14px; display: inline-flex; align-items: center; gap: 6px; border-radius: var(--r-md); font-size: 12px; font-weight: 700; letter-spacing: .5px; color: var(--text-muted); cursor: pointer; transition: all var(--ease); border: none; background: none; font-family: var(--f-body); white-space: nowrap; }
.music-tab.active { background: var(--green); color: #fff; box-shadow: var(--sh-g); }
.music-tab:not(.active):hover { color: var(--text); background: var(--border-2); }
.music-panel { display: none; }
.music-panel.active { display: block; }
.chart-table { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.chart-row, a.chart-row { display: grid; grid-template-columns: 34px 50px 1fr 60px 36px; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border-2); transition: background var(--ease); cursor: pointer; }
.chart-row:last-child { border-bottom: none; }
.chart-row:hover { background: var(--green-tint); }
.chart-row.playing { background: linear-gradient(90deg,rgba(22,163,74,.07),transparent); }
.chart-pos { font-family: var(--f-disp); font-size: 15px; font-weight: 800; text-align: center; color: var(--text-faint); line-height: 1; }
.chart-row:nth-child(1) .chart-pos { color: var(--green); }
.chart-row:nth-child(2) .chart-pos { color: var(--text-muted); }
.chart-row:nth-child(3) .chart-pos { color: var(--gold); }
.chart-art { width: 50px; height: 50px; border-radius: var(--r-md); overflow: hidden; background: var(--green-pale); flex-shrink: 0; }
.chart-art img { width: 100%; height: 100%; object-fit: cover; }
.chart-art-ph { width: 100%; height: 100%; background: linear-gradient(135deg,var(--green-pale),var(--green-light)); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 18px; }
.chart-details { min-width: 0; }
.chart-song { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chart-row.playing .chart-song { color: var(--green); }
.chart-artist-row { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.trend { display: inline-flex; align-items: center; gap: 2px; font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 3px; }
.trend.up   { background: var(--green-pale); color: var(--green); }
.trend.down { background: var(--red-pale);   color: var(--red); }
.trend.same { background: var(--surface-2);  color: var(--text-faint); }
.chart-dur { font-size: 12px; font-weight: 600; color: var(--text-faint); text-align: center; }
.chart-views { font-size: 11px; font-weight: 600; color: var(--text-faint); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.chart-views i { font-size: 10px; color: var(--green); }
.chart-play-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--green-pale); border: 1px solid rgba(22,163,74,.2); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 12px; transition: all var(--ease); flex-shrink: 0; cursor: pointer; }
.chart-play-btn:hover, .chart-row.playing .chart-play-btn { background: var(--green); border-color: var(--green); color: #fff; box-shadow: var(--sh-g); }
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 14px; margin-left: 6px; }
.eq span { display: block; width: 3px; background: var(--green); border-radius: 1px; animation: eq .6s ease infinite alternate; }
.eq span:nth-child(1){height:60%;animation-delay:0s}
.eq span:nth-child(2){height:100%;animation-delay:.15s}
.eq span:nth-child(3){height:40%;animation-delay:.3s}

/* ══════════════════════════════════════════════════════
   ⑦ LATEST MUSIC LIST
══════════════════════════════════════════════════════ */
.latest-music-section { margin-bottom: 28px; }
.music-release-list { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.music-release { display: grid; grid-template-columns: 58px 60px 1fr auto; align-items: center; border-bottom: 1px solid var(--border-2); transition: background var(--ease); cursor: pointer; position: relative; }
.music-release:last-child { border-bottom: none; }
.music-release:hover { background: var(--green-tint); }
.music-release::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--green); opacity: 0; transition: opacity var(--ease); }
.music-release:hover::before { opacity: 1; }
.mr-rank-col { width: 58px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 14px 0; }
.mr-rank { font-family: var(--f-disp); font-size: 20px; font-weight: 800; color: var(--border); line-height: 1; }
.music-release:nth-child(1) .mr-rank { color: var(--green); }
.music-release:nth-child(2) .mr-rank { color: var(--text-muted); }
.music-release:nth-child(3) .mr-rank { color: var(--gold); }
.mr-cover-col { width: 60px; flex-shrink: 0; }
.mr-cover { width: 52px; height: 52px; border-radius: var(--r-md); overflow: hidden; margin: 4px 0; }
.mr-cover .bg, .mr-cover img { width: 100%; height: 100%; object-fit: cover; }
.mr-cover-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 20px; }
.mr-info { padding: 12px 14px 12px 8px; min-width: 0; }
.mr-type-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--green-pale); color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 2px 8px; border-radius: 99px; margin-bottom: 5px; border: 1px solid rgba(22,163,74,.2); }
.mr-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mr-artist-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.mr-artist-avatar { width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 800; flex-shrink: 0; }
.mr-genre-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-faint); flex-shrink: 0; }
.mr-genre { font-size: 11px; color: var(--text-faint); }
.mr-right { padding: 12px 16px 12px 0; display: flex; flex-direction: column; align-items: flex-end; gap: 7px; flex-shrink: 0; }
.mr-time { font-size: 10px; color: var(--text-faint); white-space: nowrap; }
.mr-stats { display: flex; align-items: center; gap: 8px; }
.mr-stat { display: flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 600; color: var(--text-faint); }
.mr-stat i { font-size: 10px; }
.mr-listen-btn { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--green-pale); border: 1px solid rgba(22,163,74,.2); color: var(--green); font-size: 12px; transition: all var(--ease); cursor: pointer; }
.mr-listen-btn:hover, .music-release.playing .mr-listen-btn { background: var(--green); color: #fff; border-color: var(--green); box-shadow: var(--sh-g); }

/* ══════════════════════════════════════════════════════
   ⑧ CELEBRITY GIST
══════════════════════════════════════════════════════ */
.celeb-section { margin-bottom: 28px; }
/* Old celeb-feed styles kept for backward compat but hidden — new .celeb-grid is used */
.celeb-feed { display: none; }
.celeb-item { display: none; }
.celeb-avatar-wrap { display: none; }
.celeb-avatar { display: none; }
.celeb-avatar-ph { display: none; }
.celeb-hot-badge { display: none; }
.celeb-body { display: none; }

/* ══════════════════════════════════════════════════════
   ⑨ ARTIST PROFILES CAROUSEL
══════════════════════════════════════════════════════ */
.artists-section { margin-bottom: 48px; clear: both; overflow: visible; position: relative; z-index: 1; }
.artist-card { flex: 0 0 145px; display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; }
.artist-ring-wrap { position: relative; width: 94px; height: 94px; margin-bottom: 11px; }
.artist-ring { position: absolute; inset: -3px; border-radius: 50%; background: conic-gradient(var(--green) 0%,var(--green-light) 50%,transparent 50%); animation: ring-spin 6s linear infinite; opacity: 0; transition: opacity .3s; }
.artist-card:hover .artist-ring { opacity: 1; }
.artist-ring-bg { position: absolute; inset: 3px; border-radius: 50%; background: var(--surface); }
.artist-avatar { position: absolute; inset: 6px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg,var(--green-pale),var(--green-light)); }
.artist-avatar img, .artist-avatar .bg { width: 100%; height: 100%; object-fit: cover; }
.artist-av-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--f-disp); font-size: 22px; font-weight: 800; color: var(--green); background: linear-gradient(135deg,var(--green-pale),#a7f3c3); }
.artist-verified { position: absolute; bottom: 4px; right: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--green); border: 2px solid var(--off-white); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 9px; z-index: 2; }
.artist-name { font-family: var(--f-disp); font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 2px; max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.artist-genre { font-size: 10px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.artist-stats { display: flex; gap: 10px; justify-content: center; margin-bottom: 10px; }
.artist-stat { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.a-val { font-size: 12px; font-weight: 800; color: var(--text); line-height: 1; }
.a-lbl { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--text-faint); }
.artist-btns { display: flex; gap: 5px; width: 100%; }
.a-btn { flex: 1; padding: 6px 0; border-radius: var(--r-sm); font-size: 10px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; cursor: pointer; transition: all var(--ease); border: none; font-family: var(--f-body); text-decoration: none; display: flex; align-items: center; justify-content: center; }
.a-btn-bio { background: var(--green-pale); color: var(--green); border: 1px solid rgba(22,163,74,.2); }
.a-btn-bio:hover { background: var(--green); color: #fff; }
.a-btn-songs { background: var(--green); color: #fff; }
.a-btn-songs:hover { background: var(--green-mid); }

/* ══════════════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.widget-hdr { padding: 13px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.widget-title { display: flex; align-items: center; gap: 8px; font-family: var(--f-disp); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); }
.widget-title i { color: var(--green); font-size: 13px; }
.widget-more { font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--green); text-decoration: none; }
.widget-more:hover { opacity: .7; }
.s-post { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--border-2); transition: background var(--ease); cursor: pointer; }
.s-post:last-child { border-bottom: none; }
.s-post:hover { background: var(--green-tint); }
.s-num { font-family: var(--f-disp); font-size: 18px; font-weight: 800; color: var(--border); width: 22px; flex-shrink: 0; line-height: 1; }
.s-post:nth-child(1) .s-num { color: var(--green); }
.s-post:nth-child(2) .s-num { color: var(--text-faint); }
.s-post:nth-child(3) .s-num { color: var(--gold); }
.s-thumb { width: 54px; height: 54px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; background: var(--green-pale); }
.s-thumb img { width: 100%; height: 100%; object-fit: cover; }
.s-info { flex: 1; min-width: 0; }
.s-cat { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 3px; }
.s-title { font-size: 12px; font-weight: 600; line-height: 1.35; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 3px; }
.s-title a { color: var(--text); }
.s-meta { font-size: 10px; color: var(--text-faint); }
.trending-ticker { height: 36px; overflow: hidden; position: relative; display: flex; align-items: center; border-bottom: 1px solid var(--border-2); background: var(--green-tint); }
body.dark .trending-ticker { background: rgba(22,163,74,.06); }
.trending-ticker-inner { display: flex; flex-direction: column; animation: ticker-v 12s ease infinite; }
.trending-ticker-item { height: 36px; display: flex; align-items: center; padding: 0 16px; gap: 8px; flex-shrink: 0; font-size: 12px; font-weight: 600; color: var(--text); white-space: nowrap; }
.trending-ticker-item i { color: var(--green); font-size: 11px; }
.mini-bo-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--border-2); transition: background var(--ease); cursor: pointer; }
.mini-bo-item:last-child { border-bottom: none; }
.mini-bo-item:hover { background: var(--green-tint); }
.mini-bo-rank { font-family: var(--f-disp); font-size: 18px; font-weight: 800; color: var(--text-faint); width: 20px; flex-shrink: 0; text-align: center; }
.mini-bo-item:nth-child(1) .mini-bo-rank { color: var(--green); }
.mini-bo-thumb { width: 34px; height: 34px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; background: var(--green-pale); }
.mini-bo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-bo-info { flex: 1; min-width: 0; }
.mini-bo-title { font-size: 12px; font-weight: 700; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-bottom: 2px; }
.mini-bo-gross { font-size: 11px; color: var(--green); font-weight: 700; }

/* ══════════════════════════════════════════════════════
   PRE-FOOTER
══════════════════════════════════════════════════════ */
.pre-footer { background: var(--white); border-top: 1px solid var(--border); padding: 48px 0 50px; }
.pre-footer-grid { display: grid; grid-template-columns: 1.1fr 1.8fr; gap: 48px; align-items: start; }
.pf-nl-inner { background: linear-gradient(135deg,var(--green-deep) 0%,var(--green-mid) 100%); border-radius: var(--r-xl); padding: 34px 32px 36px; color: #fff; }
.pf-nl-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: var(--green-light); font-size: 10px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; padding: 5px 12px; border-radius: 99px; margin-bottom: 14px; }
.pf-nl-title { font-family: var(--f-disp); font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.pf-nl-title span { color: var(--green-light); }
.pf-nl-desc { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 20px; }
.pf-nl-form { display: flex; gap: 10px; }
.pf-nl-input { flex: 1; padding: 12px 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-md); color: #fff; font-family: var(--f-body); font-size: 14px; outline: none; transition: border-color var(--ease); min-width: 0; }
.pf-nl-input:focus { border-color: var(--green-light); }
.pf-nl-input::placeholder { color: rgba(255,255,255,.4); }
.pf-nl-btn { flex-shrink: 0; padding: 12px 20px; background: var(--green-light); color: var(--green-deep); border: none; border-radius: var(--r-md); font-family: var(--f-disp); font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all var(--ease); white-space: nowrap; }
.pf-nl-btn:hover { background: #fff; transform: translateY(-1px); }
.pf-nl-note { margin-top: 12px; font-size: 11px; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 5px; }
.pf-cats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.pf-cat { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 13px 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; transition: all var(--ease); cursor: pointer; text-decoration: none; }
.pf-cat:hover { background: var(--green-tint); border-color: rgba(22,163,74,.4); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.pf-cat-l { display: flex; align-items: center; gap: 10px; min-width: 0; }
.pf-cat-icon { width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--green-pale); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 14px; flex-shrink: 0; }
.pf-cat-name { font-size: 13px; font-weight: 700; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pf-cat-count { background: var(--green); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 99px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — HOME
══════════════════════════════════════════════════════ */

/* Homepage full-width layout (no sidebar) */
.homepage-main {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

/* Ensure scroll-wrap never bleeds outside container */
.scroll-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.scroll-track {
  width: 100%;
  max-width: 100%;
}

/* Section headers — allow wrap on small screens */
.sec-hdr { flex-wrap: wrap; gap: 10px; }

/* ── Tablet 900px ── */
@media (max-width: 900px) {
  .main-grid { grid-template-columns: 1fr; gap: 24px; }
  .sidebar { display: none; }
  .pre-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .pf-cats-grid { grid-template-columns: repeat(3,1fr); }
  .bo-header, .bo-row { grid-template-columns: 34px 1fr 90px 56px; }
  .bo-weeks { display: none; }

  /* Wider cards on tablet */
  .movie-card { flex: 0 0 160px; }
  .latest-card { flex: 0 0 220px; }
  .artist-card { flex: 0 0 140px; }
}

/* ── Mobile 640px ── */
@media (max-width: 640px) {
  .page-body { padding: 12px 0 80px; }
  .container { padding: 0 14px; }

  /* Section spacing */
  .movies-section, .latest-section, .boxoffice-section,
  .charts-section, .latest-music-section, .celeb-section,
  .artists-section { margin-bottom: 24px; }
  .popular-card { margin-bottom: 24px; }

  /* Section header wrap */
  .sec-hdr { margin-bottom: 14px; }
  .sec-title { font-size: 12px; letter-spacing: 1.5px; }
  .sec-link { font-size: 10px; padding: 5px 10px; }

  /* Scroll arrows — hide on mobile, user swipes */
  .scroll-arrow { display: none; }

  /* ── CARDS: fit 2 on screen + peek of 3rd ── */
  .movie-card   { flex: 0 0 calc(50vw - 22px); max-width: 180px; }
  .latest-card  { flex: 0 0 calc(55vw - 18px); max-width: 220px; }
  .artist-card  { flex: 0 0 calc(38vw - 14px); max-width: 155px; }

  /* scroll-track padding so cards don't clip at edges */
  .scroll-track { padding: 4px 0 12px; gap: 10px; }

  /* ── Popular section ── */
  .popular-item { padding: 12px 14px; gap: 10px; }
  .popular-rank { font-size: 20px; width: 22px; }
  .popular-thumb { width: 60px; height: 60px; flex-shrink: 0; }
  .popular-title { font-size: 13px; }
  .popular-info { min-width: 0; }

  /* ── Box office ── */
  .bo-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .bo-header, .bo-row { grid-template-columns: 26px 1fr 72px; padding: 10px 12px; gap: 6px; }
  .bo-change { display: none; }
  .bo-weeks  { display: none; }
  .bo-gross  { font-size: 12px; }
  .bo-film-title { font-size: 12px; white-space: normal; word-break: break-word; }
  .bo-film { gap: 8px; }
  .bo-thumb { width: 30px; height: 30px; flex-shrink: 0; }

  /* ── Charts ── */
  .chart-row, a.chart-row { grid-template-columns: 26px 44px 1fr 34px; gap: 8px; padding: 10px 12px; }
  .chart-art { width: 44px; height: 44px; border-radius: var(--r-sm); }
  .chart-dur { display: none; }
  .chart-song { font-size: 13px; white-space: normal; word-break: break-word; }
  .music-tab { padding: 6px 12px; font-size: 11px; }
  .music-tabs { gap: 4px; }

  /* ── Music release ── */
  .music-release { grid-template-columns: 40px 52px 1fr auto; gap: 8px; }
  .mr-rank-col { width: 40px; }
  .mr-rank { font-size: 18px; }
  .mr-cover-col { width: 52px; }
  .mr-cover { width: 44px; height: 44px; }
  .mr-title { font-size: 13px; }
  .mr-stats { display: none; }
  .mr-right { padding: 10px 12px 10px 0; gap: 6px; }
  .mr-info { min-width: 0; overflow: hidden; }
  .mr-type-badge { display: none; }

  /* ── Celebrity ── */
  .celeb-item { padding: 12px 14px; gap: 10px; }
  .celeb-avatar { width: 44px; height: 44px; }
  .celeb-name { font-size: 13px; }
  .celeb-gist { font-size: 13px; -webkit-line-clamp: 2; }
  .celeb-tag { display: none; }
  .celeb-handle { display: none; }

  /* ── Artist carousel ── */
  .artist-ring-wrap { width: 84px; height: 84px; }
  .artist-name { font-size: 12px; max-width: 100%; }
  .artist-genre { font-size: 10px; }
  .artists-section { margin-bottom: 32px; overflow: visible; }

  /* ── Pre-footer ── */
  .pf-cats-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .pf-nl-form { flex-direction: column; gap: 10px; }
  .pf-nl-inner { padding: 22px 18px; }
  .pf-nl-title { font-size: 20px; }
  .pf-cat-count { display: none; }
}

/* ── Very small phones 400px ── */
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .movie-card   { flex: 0 0 calc(52vw - 18px); }
  .latest-card  { flex: 0 0 calc(58vw - 18px); }
  .artist-card  { flex: 0 0 calc(42vw - 14px); }
  .artist-ring-wrap { width: 72px; height: 72px; }

  .popular-thumb { width: 52px; height: 52px; }
  .popular-rank { font-size: 18px; }

  .bo-header, .bo-row { padding: 8px 10px; }

  .chart-row, a.chart-row { grid-template-columns: 22px 38px 1fr 30px; gap: 6px; padding: 8px 10px; }
  .chart-art { width: 38px; height: 38px; }

  .sec-hdr { gap: 8px; }
  .sec-title { font-size: 11px; letter-spacing: 1px; }
}

/* ── Large desktop ── */
@media (min-width: 1200px) {
  .movie-card  { flex: 0 0 165px; }
  .latest-card { flex: 0 0 230px; }
  .artist-card { flex: 0 0 158px; }
}


/* ══════════════════════════════════════════════════════
   NEW SECTION ELEMENTS (v2.3)
══════════════════════════════════════════════════════ */

/* ── Section "View All" button row (sits below each section) ── */
.section-viewall {
  display: flex;
  justify-content: center;
  padding: 16px 0 4px;
}
.viewall-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green);
  color: #fff;
  font-family: var(--f-disp); font-size: 13px; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 11px 24px; border-radius: var(--r-lg);
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(22,163,74,.25);
}
.viewall-btn:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22,163,74,.35); }
.viewall-btn--ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(22,163,74,.35);
  box-shadow: none;
}
body.dark .viewall-btn--ghost { border-color: rgba(22,163,74,.4); }
.viewall-btn--ghost:hover { background: var(--green); color: #fff; border-color: var(--green); }
.viewall-btn--sm { font-size: 11px; padding: 8px 18px; }

/* ── Popular item as link ── */
.popular-arrow {
  color: var(--text-faint); font-size: 11px; flex-shrink: 0;
  transition: transform var(--ease), color var(--ease);
}
.popular-item:hover .popular-arrow { transform: translateX(3px); color: var(--green); }

/* ── Empty section placeholder ── */
.empty-section-msg {
  padding: 28px 20px; text-align: center;
  color: var(--text-muted); font-size: 14px; line-height: 1.6;
}
.empty-section-msg i { font-size: 30px; color: var(--border); display: block; margin-bottom: 10px; }

/* ── Box office: bo-row as anchor ── */
a.bo-row { text-decoration: none; }
.bo-change i { font-size: 10px; }

/* ── Chart views column ── */
a.chart-row { text-decoration: none; }

/* ── Chart category link row ── */
.chart-cat-link {
  display: flex; justify-content: center;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border-2);
}

/* ══════════════════════════════════════════════════════
   LATEST MUSIC — Carousel Slider
══════════════════════════════════════════════════════ */
.latest-music-section { margin-bottom: 32px; }

/* hide old list classes if they appear */
.music-latest-grid { display: none !important; }
.music-lcard { display: none !important; }

.music-carousel-wrap {
  position: relative;
  padding: 0 44px;
}
.music-carousel-track {
  display: flex !important;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 14px;
}
.music-carousel-track::-webkit-scrollbar { display: none; }
.music-car-slide {
  flex: 0 0 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex !important;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.music-car-slide:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,.15); border-color: rgba(22,163,74,.4); }
.mcs-art {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  background: var(--surface-2); overflow: hidden; flex-shrink: 0;
}
.mcs-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.music-car-slide:hover .mcs-art img { transform: scale(1.07); }
.mcs-art-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.mcs-art-ph i { color: rgba(255,255,255,.35); font-size: 40px; }
.mcs-type {
  position: absolute; top: 8px; left: 8px;
  background: var(--green); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .6px;
  padding: 3px 8px; border-radius: 20px; text-transform: uppercase; z-index: 2;
}
.mcs-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.42); opacity: 0; transition: opacity .22s ease;
}
.mcs-play-overlay i { color: #fff; font-size: 46px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.music-car-slide:hover .mcs-play-overlay { opacity: 1; }
.mcs-body { padding: 11px 13px 13px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.mcs-genre { font-size: 9px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--green); }
.mcs-title {
  font-family: var(--f-disp); font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mcs-author { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.mcs-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; flex-shrink: 0;
}
.mcs-meta { display: flex; gap: 10px; font-size: 10px; color: var(--text-faint); margin-top: 2px; }
.mcs-meta i { margin-right: 3px; opacity: .7; }
.music-car-arrow {
  position: absolute; top: 50%; transform: translateY(-60%); z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.12); transition: all .2s ease; font-size: 13px;
}
.music-car-arrow:hover { background: var(--green); color: #fff; border-color: var(--green); }
.music-car-arrow--prev { left: 0; }
.music-car-arrow--next { right: 0; }
.music-car-dots { display: flex; gap: 6px; justify-content: center; margin: 6px 0 4px; }
.music-car-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0; transition: all .22s ease;
}
.music-car-dot.active { background: var(--green); width: 20px; border-radius: 4px; }

/* ═══════════════════════════════════════════════
   CELEBRITY GIST — Entertainment Grid Layout
══════════════════════════════════════════════ */
.celeb-section { margin-bottom: 32px; }

.celeb-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: start;
}

/* ── Featured large card (left) ── */
.celeb-card--featured {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform .22s ease, box-shadow .22s ease;
}
.celeb-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
}
.celeb-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}
.celeb-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.celeb-card--featured:hover .celeb-card-img img { transform: scale(1.04); }
.celeb-img-ph { width: 100%; height: 100%; }

.celeb-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 55%);
  pointer-events: none;
}
/* Hot badge — top left */
.celeb-card-badge {
  position: absolute; top: 11px; left: 11px;
  background: #dc2626;
  color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
}
/* Category badge — top right */
.celeb-card-cat {
  position: absolute; top: 11px; right: 11px;
  background: var(--green);
  color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.celeb-card-body {
  padding: 16px 18px 18px;
}
.celeb-card-title {
  font-family: var(--f-disp);
  font-size: 16px; font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.celeb-card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.celeb-card-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 11px; color: var(--text-faint);
}
.celeb-card-meta i { margin-right: 4px; }

/* ── Secondary list (right column) ── */
.celeb-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.celeb-list-item {
  display: flex;
  gap: 12px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  align-items: flex-start;
  transition: background .18s ease;
}
.celeb-list-item:last-child { border-bottom: none; }
.celeb-list-item:hover { background: var(--surface-2); }

.celeb-list-thumb {
  width: 68px; height: 52px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-2);
}
.celeb-list-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.celeb-list-ph {
  width: 100%; height: 100%;
}
.celeb-list-body { flex: 1; min-width: 0; }

.celeb-list-cat {
  display: block;
  font-size: 9px; font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.celeb-list-title {
  font-size: 12px; font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}
.celeb-list-meta {
  display: flex; gap: 10px;
  font-size: 10px; color: var(--text-faint);
}
.celeb-list-meta i { margin-right: 3px; opacity: .7; }

/* ═══════════════════════════════════════════════
   SITE LOGO — custom logo image support
══════════════════════════════════════════════ */
.logo--has-image .logo__icon,
.logo--has-image .logo__text { display: none !important; }

.logo--has-image .custom-logo-link {
  display: flex; align-items: center;
}
.logo--has-image .custom-logo {
  max-height: 54px; width: auto; object-fit: contain;
}
.mob-logo--img { display: flex; align-items: center; }
.mob-logo--img .custom-logo { max-height: 36px; width: auto; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — new sections
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .celeb-grid { grid-template-columns: 1fr 1fr; }
  .music-car-slide { flex: 0 0 185px; }
}
@media (max-width: 900px) {
  .celeb-grid { grid-template-columns: 1fr; }
  .celeb-list { display: grid; grid-template-columns: 1fr 1fr; }
  .celeb-list-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .music-car-slide { flex: 0 0 180px; }
  .music-carousel-wrap { padding: 0 36px; }
}
@media (max-width: 640px) {
  .celeb-grid { grid-template-columns: 1fr; }
  .celeb-list { display: flex; flex-direction: column; }
  .celeb-list-item:nth-child(odd) { border-right: none; }
  .celeb-card-title { font-size: 14px; }
  .music-car-slide { flex: 0 0 155px; }
  .mcs-body { padding: 9px 11px 11px; }
  .mcs-title { font-size: 12px; }
  .music-carousel-wrap { padding: 0 30px; }
  .music-car-arrow { width: 30px; height: 30px; font-size: 11px; }
}
@media (max-width: 400px) {
  .music-car-slide { flex: 0 0 140px; }
  .music-carousel-wrap { padding: 0 26px; }
}
