/* ===================================================
   SixScreens — Main Stylesheet
   =================================================== */

:root {
  --bg-dark:    #0a0a0f;
  --bg-card:    #13131a;
  --bg-elevated:#1c1c26;
  --accent:     #e8b84b;
  --accent-dim: #c9973a;
  --red:        #e84b4b;
  --text-1:     #f0ede6;
  --text-2:     #a09d96;
  --text-3:     #5c5a55;
  --border:     rgba(255,255,255,0.07);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg-dark); color: var(--text-1); font-family: var(--font-body); font-size: 15px; line-height: 1.6; overflow-x: hidden; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex; align-items: center; gap: 0;
  height: 64px;
}
.nav-logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--accent); letter-spacing: -0.5px; margin-right: 40px; flex-shrink: 0; }
.nav-logo span { color: var(--text-1); }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a { padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 500; color: var(--text-2); transition: all 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--accent); }
.nav-right { display: flex; gap: 10px; align-items: center; margin-left: auto; flex-shrink: 0; }
.search-bar { display: flex; align-items: center; gap: 8px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; padding: 7px 14px; width: 200px; }
.search-bar input { background: none; border: none; outline: none; color: var(--text-1); font-family: var(--font-body); font-size: 13px; width: 100%; }
.search-bar input::placeholder { color: var(--text-3); }
.search-icon { color: var(--text-3); font-size: 14px; }

/* BUTTONS */
.btn { padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; font-family: var(--font-body); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-2); }
.btn-primary { background: var(--accent); color: #0a0a0f; }
.btn-primary:hover { background: var(--accent-dim); }

/* HERO (Homepage) */
.hero { position: relative; height: 580px; overflow: hidden; display: flex; align-items: flex-end; pointer-events: none; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1a0a2e 0%, #0d1a2e 50%, #1a0d0d 100%); pointer-events: none; }
.hero-noise { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); opacity: 0.4; pointer-events: none; }
.hero-cards { position: absolute; right: 0; top: 0; bottom: 0; width: 55%; display: flex; gap: 12px; padding: 24px; align-items: center; perspective: 1000px; }
.hero-poster { border-radius: 10px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); flex-shrink: 0; position: relative; }
.hero-poster-main { width: 200px; height: 300px; }
.hero-poster-side { width: 150px; height: 220px; opacity: 0.7; margin-top: 40px; }
.hero-poster-far  { width: 120px; height: 180px; opacity: 0.4; margin-top: 80px; }
.poster-img { width: 100%; height: 100%; background: linear-gradient(160deg, #2a1a3e, #1a2a3e); display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 12px; text-align: center; padding: 10px; }
.poster-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.9)); padding: 20px 10px 10px; font-size: 11px; font-weight: 600; color: var(--text-1); text-align: center; }
.hero-grad { position: absolute; inset: 0; background: linear-gradient(to right, var(--bg-dark) 25%, rgba(10,10,15,0.3) 55%, transparent 72%), linear-gradient(to top, var(--bg-dark) 8%, transparent 40%); pointer-events: none; }
/* Re-enable pointer events only on interactive hero elements */
.hero-content, .hero-content * { pointer-events: auto; }
.hero-slider-prev, .hero-slider-next, .hero-dot { pointer-events: auto; cursor: pointer; }
.hero-content { position: relative; z-index: 2; padding: 0 40px 50px; max-width: 560px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.3); border-radius: 20px; padding: 4px 12px; font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.hero-title { font-family: var(--font-display); font-size: 52px; font-weight: 900; line-height: 1.05; letter-spacing: -1px; margin-bottom: 14px; }
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub { color: var(--text-2); font-size: 15px; margin-bottom: 28px; max-width: 400px; }
.hero-actions { display: flex; gap: 12px; }
.hero-stats { display: flex; gap: 28px; margin-top: 36px; }
.stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text-1); }
.stat-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }

/* PAGE HERO (Inner Pages) */
.page-hero { position: relative; padding: 72px 40px 52px; background: linear-gradient(135deg,#1a0a2e 0%,#0d1a2e 50%,#0a0a1a 100%); overflow: hidden; }
.page-hero::before { content:''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); opacity: 0.4; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-3); margin-bottom: 16px; }
.breadcrumb a { color: var(--accent); }
.page-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.3); border-radius: 20px; padding: 4px 12px; font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.page-title { font-family: var(--font-display); font-size: 48px; font-weight: 900; line-height: 1.05; letter-spacing: -1px; margin-bottom: 12px; }
.page-title em { color: var(--accent); font-style: normal; }
.page-sub { color: var(--text-2); font-size: 15px; max-width: 520px; }

/* SECTION */
.section { padding: 48px 40px; }
.section-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.section-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.section-line { flex: 1; height: 1px; background: var(--border); }
.section-link { font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.section-tag { display: inline-block; font-size: 10px; font-weight: 700; color: var(--accent); background: rgba(232,184,75,0.12); border-radius: 4px; padding: 2px 7px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }

/* TICKER */
.ticker-wrap { background: var(--accent); overflow: hidden; padding: 10px 0; display: flex; gap: 0; }
.ticker-inner { display: flex; gap: 0; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-item { padding: 0 32px; font-size: 12px; font-weight: 700; color: #0a0a0f; letter-spacing: 0.04em; text-transform: uppercase; border-right: 2px solid rgba(0,0,0,0.2); display: flex; align-items: center; gap: 8px; }
.ticker-dot { width: 5px; height: 5px; background: rgba(0,0,0,0.4); border-radius: 50%; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* DRAMA CARDS */
.cards-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.cards-scroll::-webkit-scrollbar { height: 3px; }
.cards-scroll::-webkit-scrollbar-thumb { background: var(--accent); }
.drama-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; flex-shrink: 0; width: 190px; transition: transform 0.25s, border-color 0.25s; cursor: pointer; text-decoration: none; display: block; color: inherit; }
.blog-card { text-decoration: none; display: block; color: inherit; }
.drama-card:hover { transform: translateY(-4px); border-color: rgba(232,184,75,0.3); }
.card-poster { width: 100%; height: 270px; }
.card-poster-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--text-3); text-align: center; padding: 12px; position: relative; overflow: hidden; }
.card-poster-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(0, 0, 0, 0)); }
.card-rating { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.75); border-radius: 6px; padding: 3px 7px; font-size: 11px; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 4px; }
.card-badge { position: absolute; top: 8px; left: 8px; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; background: rgba(232,184,75,0.12); color: var(--accent); }
.card-body { padding: 12px; }
.card-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-meta { font-size: 11px; color: var(--text-3); display: flex; gap: 8px; align-items: center; }
.card-meta-dot { width: 3px; height: 3px; background: var(--text-3); border-radius: 50%; }
.card-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 8px; }
.tag { font-size: 10px; padding: 2px 7px; border-radius: 4px; background: var(--bg-elevated); color: var(--text-2); font-weight: 500; }
.tag-on  { background: rgba(78,200,120,0.12); color: #4ec878; }
.tag-off { background: rgba(160,157,150,0.1); color: var(--text-3); }

/* CARDS GRID */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(190px,1fr)); gap: 18px; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform 0.25s, border-color 0.25s; }
.card:hover { transform: translateY(-4px); border-color: rgba(232,184,75,0.3); }

/* CELEBRITIES */
.celeb-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.celeb-card { text-align: center; cursor: pointer; transition: transform 0.2s; }
.celeb-card:hover { transform: translateY(-3px); }
.celeb-avatar { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 2px solid var(--border); margin: 0 auto 10px; transition: border-color 0.2s; max-width: 100px; }
.celeb-card:hover .celeb-avatar { border-color: var(--accent); }
.celeb-avatar-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; color: var(--accent); }
.celeb-name { font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.celeb-type { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }

/* FEATURED BANNER */
.featured-banner { margin: 0 40px 48px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 1fr 340px; min-height: 300px; }
.featured-left { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-right { background: linear-gradient(135deg, #1a0d2e, #0d1a2e); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-3); text-align: center; padding: 20px; position: relative; overflow: hidden; }
.featured-eyebrow { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.featured-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1.15; margin-bottom: 12px; }
.featured-desc { color: var(--text-2); font-size: 14px; margin-bottom: 22px; max-width: 380px; }
.rating-display { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.rating-num { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.rating-count { font-size: 12px; color: var(--text-3); }
.featured-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-3); }
.featured-meta strong { color: var(--text-2); }

/* TRENDING */
.trending-table { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.trending-row { display: flex; align-items: center; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--border); transition: background 0.15s; cursor: pointer; }
.trending-row:last-child { border-bottom: none; }
.trending-row:hover { background: rgba(255,255,255,0.03); }
.trend-num { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-3); width: 28px; flex-shrink: 0; }
.trend-num.top { color: var(--accent); }
.trend-poster { width: 40px; height: 56px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.trend-poster-inner { width:100%;height:100%; background: linear-gradient(135deg,#2a1a3e,#1a2a3e); }
.trend-info { flex: 1; }
.trend-title { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.trend-sub { font-size: 11px; color: var(--text-3); }
.trend-rating { font-size: 13px; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.trend-badge { font-size: 10px; padding: 2px 7px; border-radius: 4px; font-weight: 600; background: rgba(232,184,75,0.12); color: var(--accent); flex-shrink:0; }

/* NEWS */
.news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.news-main { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; cursor: pointer; transition: border-color 0.2s; }
.news-main:hover { border-color: rgba(232,184,75,0.3); }
.news-main-img { height: 220px; background: linear-gradient(135deg,#0d1a2e,#1a0d2e); display:flex;align-items:center;justify-content:center;font-size:12px;color:var(--text-3); }
.news-main-body { padding: 20px; }
.news-main-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.news-main-sub { font-size: 13px; color: var(--text-2); margin-bottom: 14px; }
.news-byline { font-size: 11px; color: var(--text-3); display:flex;gap:12px; }
.news-list { display: flex; flex-direction: column; gap: 12px; }
.news-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; cursor: pointer; display: flex; gap: 12px; transition: border-color 0.2s; }
.news-item:hover { border-color: rgba(232,184,75,0.3); }
.news-item-img { width: 72px; height: 72px; border-radius: 8px; flex-shrink: 0; background: linear-gradient(135deg,#1a0d2e,#0d1a2e); }
.news-item-title { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 5px; }
.news-item-meta { font-size: 11px; color: var(--text-3); }
.news-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; cursor: pointer; transition: border-color 0.2s; }
.news-card:hover { border-color: rgba(232,184,75,0.3); }
.news-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.news-body { padding: 16px; }
.news-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 6px; line-height: 1.35; }
.news-sub { font-size: 12px; color: var(--text-2); margin-bottom: 10px; }
.news-meta { font-size: 11px; color: var(--text-3); }

/* MUSIC */
.music-strip { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px; }
.music-strip::-webkit-scrollbar { height: 3px; }
.music-strip::-webkit-scrollbar-thumb { background: var(--accent); }
.music-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; display: flex; gap: 12px; align-items: center; flex-shrink: 0; width: 260px; cursor: pointer; transition: border-color 0.2s; }
.music-card:hover { border-color: rgba(232,184,75,0.3); }
.music-thumb { width: 48px; height: 48px; border-radius: 8px; flex-shrink:0; background: linear-gradient(135deg,#2a1a0d,#1a0d2a); display:flex;align-items:center;justify-content:center;font-size:18px; }
.music-title { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.music-artist { font-size: 11px; color: var(--text-3); }
.music-plays { font-size: 10px; color: var(--accent); margin-top: 4px; font-weight: 600; }
.play-btn { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); border: none; cursor: pointer; display:flex;align-items:center;justify-content:center;color:#0a0a0f;font-size:10px;flex-shrink:0;margin-left:auto; }

/* FASHION */
.fashion-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fashion-card { border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 3/4; transition: transform 0.25s; }
.fashion-card:hover { transform: scale(1.02); }
.fashion-card:first-child { grid-row: span 2; aspect-ratio: auto; }
.fashion-img { width:100%;height:100%; background: linear-gradient(160deg,#2a1a3e,#1a2a0d); }
.fashion-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0,0,0,0.85)); display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; }
.fashion-celeb { font-size: 13px; font-weight: 600; }
.fashion-event { font-size: 11px; color: var(--text-3); }

/* LIST ITEMS */
.list-item { display: flex; gap: 16px; align-items: center; padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: border-color 0.2s; margin-bottom: 10px; }
.list-item:hover { border-color: rgba(232,184,75,0.3); }
.list-thumb { width: 56px; height: 72px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.list-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.list-sub { font-size: 12px; color: var(--text-3); }

/* FILTER BAR */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn { padding: 7px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-2); transition: all 0.2s; font-family: var(--font-body); }
.filter-btn:hover, .filter-btn.active { background: rgba(232,184,75,0.12); border-color: rgba(232,184,75,0.4); color: var(--accent); }

/* CHANNEL GRID */
.channel-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 16px; }
.channel-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 20px; text-align: center; cursor: pointer; transition: all 0.25s; }
.channel-card:hover { transform: translateY(-3px); border-color: rgba(232,184,75,0.3); }
.channel-logo { font-size: 48px; margin-bottom: 14px; }
.channel-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.channel-sub { font-size: 12px; color: var(--text-3); margin-bottom: 14px; }
.channel-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px; background: rgba(232,184,75,0.12); color: var(--accent); }

/* INFO BOX */
.info-box { background: var(--bg-elevated); border: 1px solid rgba(232,184,75,0.2); border-left: 3px solid var(--accent); border-radius: 8px; padding: 16px 20px; margin-bottom: 20px; font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* FOOTER */
footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 48px 40px 24px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-name { font-family: var(--font-display); font-size: 24px; font-weight: 900; color: var(--accent); margin-bottom: 10px; }
.footer-brand-name span { color: var(--text-1); }
.footer-desc { font-size: 13px; color: var(--text-3); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-elevated); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-2); cursor: pointer; transition: all 0.2s; }
.social-btn:hover { background: rgba(232,184,75,0.15); border-color: var(--accent); color: var(--accent); }
.footer-col-title { font-size: 12px; font-weight: 700; color: var(--text-1); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text-2); }

/* GRADIENT BACKGROUNDS */
.bg-grad-1, .bg-g1 { background: linear-gradient(135deg, #1a0d2e, #0d1a2e); }
.bg-grad-2, .bg-g2 { background: linear-gradient(135deg, #1a2e0d, #0d1a2e); }
.bg-grad-3, .bg-g3 { background: linear-gradient(135deg, #2e1a0d, #0d1a2e); }
.bg-grad-4, .bg-g4 { background: linear-gradient(135deg, #0d2e1a, #1a0d2e); }
.bg-grad-5, .bg-g5 { background: linear-gradient(135deg, #2e0d1a, #1a2e0d); }
.bg-grad-6, .bg-g6 { background: linear-gradient(135deg, #0d1a2e, #2e1a0d); }
.bg-grad-7, .bg-g7 { background: linear-gradient(135deg, #2e2e0d, #0d2e2e); }
.bg-grad-8, .bg-g8 { background: linear-gradient(135deg, #1a2e1a, #2e0d1a); }

/* ABOUT PAGE */
.about-hero { padding: 80px 40px; background: linear-gradient(135deg, #0d1a2e 0%, #1a0d2e 100%); text-align: center; }
.about-title { font-family: var(--font-display); font-size: 56px; font-weight: 900; letter-spacing: -1px; margin-bottom: 20px; }
.about-title em { color: var(--accent); font-style: normal; }
.about-sub { color: var(--text-2); font-size: 17px; max-width: 560px; margin: 0 auto 40px; }
.stats-row { display: flex; justify-content: center; gap: 60px; margin-top: 40px; }
.stat-item { text-align: center; }
.stat-big { font-family: var(--font-display); font-size: 40px; font-weight: 900; color: var(--accent); }
.stat-lbl { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.mission-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; margin-bottom: 24px; }
.mission-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.mission-text { color: var(--text-2); font-size: 15px; line-height: 1.8; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 24px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 20px; text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--accent); border: 2px solid rgba(232,184,75,0.3); }
.team-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.team-bio { font-size: 12px; color: var(--text-3); line-height: 1.6; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* CONTACT PAGE */
.contact-hero { padding: 80px 40px 60px; background: linear-gradient(135deg, #0d1a2e 0%, #1a0d2e 100%); }
.contact-title { font-family: var(--font-display); font-size: 52px; font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; }
.contact-title em { color: var(--accent); font-style: normal; }
.contact-sub { color: var(--text-2); font-size: 16px; max-width: 500px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 32px; margin-bottom: 20px; display: flex; gap: 20px; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(232,184,75,0.12); border: 1px solid rgba(232,184,75,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.contact-info-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.contact-info-text { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.form-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.form-sub { font-size: 13px; color: var(--text-3); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text-2); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.form-input { width: 100%; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; color: var(--text-1); font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: rgba(232,184,75,0.5); }
.form-input::placeholder { color: var(--text-3); }
.form-select { width: 100%; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; color: var(--text-1); font-family: var(--font-body); font-size: 14px; outline: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-2); margin-bottom: 20px; }
.form-check input { margin-top: 3px; accent-color: var(--accent); }
.form-submit { width: 100%; padding: 14px; background: var(--accent); color: #0a0a0f; border: none; border-radius: 10px; font-family: var(--font-display); font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--accent-dim); }
.dept-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; margin-top: 20px; }
.dept-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.dept-icon { font-size: 28px; margin-bottom: 12px; }
.dept-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.dept-email { font-size: 12px; color: var(--accent); }
.dept-desc { font-size: 12px; color: var(--text-3); margin-top: 6px; }

/* POLICY PAGES */
.policy-hero { padding: 72px 40px 48px; background: linear-gradient(135deg, #0d1a2e, #1a0d2e); }
.policy-title { font-family: var(--font-display); font-size: 48px; font-weight: 900; margin-bottom: 12px; }
.policy-title em { color: var(--accent); font-style: normal; }
.policy-date { font-size: 13px; color: var(--text-3); }
.policy-body { max-width: 800px; margin: 0 auto; }
.policy-section { margin-bottom: 40px; }
.policy-section h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 14px; color: var(--text-1); }
.policy-section p { font-size: 14px; color: var(--text-2); line-height: 1.85; margin-bottom: 14px; }
.policy-section ul { padding-left: 20px; margin-bottom: 14px; }
.policy-section li { font-size: 14px; color: var(--text-2); line-height: 1.85; margin-bottom: 6px; }
.policy-highlight { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 8px; padding: 16px 20px; margin-bottom: 20px; }
.policy-highlight p { margin: 0; }

/* FAQ */
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 18px 20px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-a { padding: 0 20px 18px; font-size: 13px; color: var(--text-2); line-height: 1.75; }

/* SUBMIT REVIEW / FORMS */
.submit-hero { padding: 72px 40px 52px; background: linear-gradient(135deg, #1a0a2e, #0d1a2e); }
.submit-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; padding: 40px; }
.submit-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
.submit-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.sidebar-title { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.star-rating { display: flex; gap: 8px; margin-bottom: 16px; }
.star { font-size: 28px; cursor: pointer; color: var(--text-3); transition: color 0.15s; }
.star.active, .star:hover { color: var(--accent); }

/* BOX OFFICE */
.bo-table { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.bo-row { display: grid; grid-template-columns: 40px 1fr 100px 100px 100px; gap: 16px; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.15s; }
.bo-row:last-child { border-bottom: none; }
.bo-row:hover { background: rgba(255,255,255,0.03); }
.bo-row-header { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); background: var(--bg-elevated); }
.bo-rank { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-3); }
.bo-rank.top3 { color: var(--accent); }
.bo-title { font-size: 13px; font-weight: 600; }
.bo-gross { font-size: 13px; font-weight: 700; color: var(--accent); text-align: right; }
.bo-change { font-size: 11px; text-align: right; }
.bo-change.up { color: #4ec878; }
.bo-change.down { color: var(--red); }
.bo-weeks { font-size: 11px; color: var(--text-3); text-align: right; }

/* REVIEWS */
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.reviewer-info { display: flex; gap: 12px; align-items: center; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); font-size: 16px; }
.reviewer-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 11px; color: var(--text-3); }
.review-rating { display: flex; gap: 4px; color: var(--accent); }
.review-text { font-size: 13px; color: var(--text-2); line-height: 1.75; }
.review-drama { font-size: 11px; color: var(--text-3); margin-top: 12px; }
.review-drama strong { color: var(--accent); }

/* SPONSORS / ADVERTISE */
.adv-hero { padding: 80px 40px 60px; background: linear-gradient(135deg, #0d1a2e, #1a0d2e); }
.adv-title { font-family: var(--font-display); font-size: 52px; font-weight: 900; margin-bottom: 16px; }
.adv-title em { color: var(--accent); font-style: normal; }
.package-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.package-card { background: var(--bg-card); border: 2px solid var(--border); border-radius: 16px; padding: 32px; position: relative; transition: border-color 0.2s; }
.package-card.featured { border-color: var(--accent); }
.package-card:hover { border-color: rgba(232,184,75,0.4); }
.package-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #0a0a0f; font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }
.package-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.package-price { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--accent); margin-bottom: 4px; }
.package-period { font-size: 12px; color: var(--text-3); margin-bottom: 20px; }
.package-features { list-style: none; margin-bottom: 28px; }
.package-features li { font-size: 13px; color: var(--text-2); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.package-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.package-cta { width: 100%; padding: 12px; background: var(--accent); color: #0a0a0f; border: none; border-radius: 10px; font-family: var(--font-display); font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.package-cta:hover { background: var(--accent-dim); }
.package-cta.outline { background: transparent; border: 1px solid var(--border); color: var(--text-2); }
.package-cta.outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,184,75,0.06); }

/* ── NAV SOCIAL ICONS ── */
.nav-socials { display: flex; gap: 6px; align-items: center; margin-right: 12px; flex-shrink: 0; }
.nav-social-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--bg-elevated); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-3); transition: all 0.2s; }
.nav-social-icon:hover { color: var(--accent); border-color: rgba(232,184,75,0.4); background: rgba(232,184,75,0.08); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: rgba(10,10,15,0.97); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px; min-width: 190px; z-index: 200;
  backdrop-filter: blur(18px);
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-menu a { padding: 8px 12px; border-radius: 6px; font-size: 13px; color: var(--text-2); display: block; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--text-1); }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 4px 8px; }

/* ── NAV HAMBURGER ── */
.nav-hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--text-2); border-radius: 2px; transition: all 0.2s; }

/* ── MOBILE NAV ── */
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 299; }
.mobile-nav-overlay.open { display: block; }
.mobile-nav { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--bg-card); border-right: 1px solid var(--border); z-index: 300; transition: left 0.3s ease; overflow-y: auto; }
.mobile-nav.open { left: 0; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 20px; border-bottom: 1px solid var(--border); }
.mobile-nav-links { padding: 12px 0; }
.mobile-nav-links a { display: block; padding: 12px 20px; font-size: 15px; color: var(--text-2); border-bottom: 1px solid rgba(255,255,255,0.03); transition: color 0.2s; }
.mobile-nav-links a:hover { color: var(--accent); background: rgba(255,255,255,0.03); }

/* ── FOOTER NEWSLETTER ── */
.footer-newsletter { background: linear-gradient(135deg, rgba(232,184,75,0.12), rgba(232,184,75,0.04)); border-bottom: 1px solid var(--border); padding: 32px 40px; }
.newsletter-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; max-width: 900px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.newsletter-sub { font-size: 13px; color: var(--text-3); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; color: var(--text-1); font-family: var(--font-body); font-size: 13px; outline: none; width: 260px; }
.newsletter-form input:focus { border-color: rgba(232,184,75,0.5); }
.newsletter-form button { background: var(--accent); color: #0a0a0f; border: none; border-radius: 8px; padding: 10px 20px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.newsletter-form button:hover { background: var(--accent-dim); }

/* ── FOOTER ENHANCEMENTS ── */
.footer-links a { display: block; padding: 4px 0; font-size: 13px; color: var(--text-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.social-links { display: flex; gap: 8px; margin-top: 16px; }
.social-btn { width: 34px; height: 34px; border-radius: 8px; background: var(--bg-elevated); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-3); transition: all 0.2s; cursor: pointer; }
.social-btn:hover { color: var(--accent); border-color: rgba(232,184,75,0.4); }

/* ── BACK TO TOP ── */
.back-top { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #0a0a0f; border: none; font-size: 20px; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 16px rgba(232,184,75,0.3); font-weight: 700; }
.back-top.show { display: flex; }
.back-top:hover { background: var(--accent-dim); }

/* ── SUCCESS TOAST ── */
.success-toast { position: fixed; bottom: 80px; right: 28px; background: #1c2e1c; border: 1px solid #4ec878; color: #4ec878; border-radius: 10px; padding: 14px 20px; font-size: 13px; display: flex; align-items: center; gap: 10px; z-index: 1000; opacity: 0; transition: opacity 0.3s; }
.success-toast.show { opacity: 1; }

/* ── LOGIN/REGISTER MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 1000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; width: 100%; max-width: 420px; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--text-3); font-size: 18px; cursor: pointer; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.modal-close:hover { background: var(--bg-elevated); color: var(--text-1); }
.modal-logo { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--accent); margin-bottom: 16px; }
.modal-logo span { color: var(--text-1); }
.modal-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.modal-sub { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-footer { text-align: center; font-size: 13px; color: var(--text-3); margin-top: 20px; }
.modal-footer a { color: var(--accent); cursor: pointer; }

/* ── HERO SLIDER — only posters slide, section is static ── */
/* Hero section stays fixed, no movement */
.hero { position: relative; height: 580px; overflow: hidden; display: flex; align-items: flex-end; }

/* ── POSTER CAROUSEL: only 3 cards visible, center=big, sides=small ── */

/* Window: 3 cards × 212px step = 636px (200 card + 12 gap) */
.hero-posters-window {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 636px;
  overflow: hidden;
  pointer-events: none;
  cursor: default;
}

.hero-posters-track {
  display: flex; height: 100%; align-items: flex-end;
  gap: 12px;
  padding-bottom: 55px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* Base card — hidden/clipped on far sides */
.pc {
  flex-shrink: 0;
  width: 200px; height: 305px;
  border-radius: 14px; overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  transform: scale(0.62) translateY(24px);
  opacity: 0.5;
  transform-origin: bottom center;
  transition: transform 0.46s cubic-bezier(0.4,0,0.2,1),
              opacity   0.46s cubic-bezier(0.4,0,0.2,1),
              border-color 0.46s;
  margin: 0;
}

/* Side cards */
.pc.pc-side {
  transform: scale(0.80) translateY(12px);
  opacity: 0.82;
  margin: 0;
  border-color: rgba(255,255,255,0.25);
}

/* Active center card — full size + accent glow */
.pc.pc-active {
  transform: scale(1) translateY(0);
  opacity: 1;
  border-color: rgba(232,184,75,0.45);
  box-shadow: 0 0 0 1px rgba(232,184,75,0.2), 0 28px 70px rgba(0,0,0,0.7);
}

.pc-img {
  width: 100%; height: 100%;
  position: relative;
  filter: saturate(2.2) brightness(1.6) contrast(1.1);
}
/* Rating badge on active card */
.pc-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.92));
  padding: 28px 10px 12px;
  font-size: 12px; font-weight: 700; color: #fff;
  text-align: center; letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* Poster bg colors — vibrant so they show on dark hero */
.pc .bg-grad-1 { background: linear-gradient(145deg,#7c3aed,#2563eb); }
.pc .bg-grad-2 { background: linear-gradient(145deg,#dc2626,#ea580c); }
.pc .bg-grad-3 { background: linear-gradient(145deg,#0891b2,#6d28d9); }
.pc .bg-grad-4 { background: linear-gradient(145deg,#059669,#0284c7); }
.pc .bg-grad-5 { background: linear-gradient(145deg,#c2410c,#9333ea); }
.pc .bg-grad-6 { background: linear-gradient(145deg,#be185d,#1d4ed8); }
.pc .bg-grad-7 { background: linear-gradient(145deg,#b45309,#15803d); }
.pc .bg-grad-8 { background: linear-gradient(145deg,#0f766e,#7e22ce); }

/* TEXT — fade transition when slide changes */
.hero-content { position: relative; z-index: 2; padding: 0 40px 50px; max-width: 560px; }


/* Slider buttons & dots */
.hero-slider-prev, .hero-slider-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.15); color: var(--text-1); width: 48px; height: 48px; border-radius: 50%; font-size: 32px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; line-height: 1; }
.hero-slider-prev { left: 8px; right: auto; }
.hero-slider-next { right: 8px; }
.hero-slider-prev:hover, .hero-slider-next:hover { background: var(--accent); border-color: var(--accent); color: #0a0a0f; }
.hero-slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: all 0.3s; border: none; }
.hero-dot.active { background: var(--accent); width: 28px; border-radius: 4px; }

/* ── VIDEO SECTION ── */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-card-featured { grid-column: span 1; grid-row: span 2; display: flex; flex-direction: column; }
.video-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.2s, border-color 0.2s; cursor: pointer; }
.video-card:hover { transform: translateY(-2px); border-color: rgba(232,184,75,0.3); }
.video-thumb { position: relative; height: 160px; display: flex; align-items: center; justify-content: center; }
.video-card-featured .video-thumb { flex: 1; min-height: 200px; }
.video-play-btn { width: 52px; height: 52px; border-radius: 50%; background: rgba(0,0,0,0.6); border: 2px solid rgba(255,255,255,0.7); color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; padding-left: 4px; }
.video-play-btn:hover { background: var(--accent); border-color: var(--accent); color: #0a0a0f; }
.video-duration { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.8); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.video-body { padding: 14px; }
.video-title { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; line-height: 1.4; }
.video-meta { font-size: 11px; color: var(--text-3); }

/* ── SECTION ACTIONS ── */
.section-actions { display: flex; gap: 12px; margin-top: 24px; justify-content: center; flex-wrap: wrap; }
.load-more-btn { min-width: 160px; }
.ig-follow-btn { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border: none; }
.ig-follow-btn:hover { opacity: 0.9; }

/* ── BLOG SECTION ── */
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.blog-card-featured { grid-row: span 2; display: flex; flex-direction: column; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.2s, border-color 0.2s; cursor: pointer; }
.blog-card:hover { transform: translateY(-2px); border-color: rgba(232,184,75,0.3); }
.blog-img { background: var(--bg-elevated); height: 220px; }
.blog-card-featured .blog-img { flex: 1; min-height: 260px; }
.blog-body { padding: 16px; }
.blog-cat { display: inline-block; font-size: 10px; font-weight: 700; color: var(--accent); background: rgba(232,184,75,0.12); border-radius: 4px; padding: 2px 7px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-size: 15px; font-weight: 700; color: var(--text-1); line-height: 1.4; margin-bottom: 8px; }
.blog-card:not(.blog-card-featured) .blog-title { font-size: 13px; }
.blog-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.65; margin-bottom: 12px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-author { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-2); }
.blog-avatar { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #0a0a0f; flex-shrink: 0; }
.blog-date { font-size: 11px; color: var(--text-3); }

/* ── SIDEBAR LAYOUT (Movies) ── */
.sidebar-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; }
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.sidebar-widget-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); margin-bottom: 12px; }
.sidebar-cats { display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat { display: flex; justify-content: space-between; align-items: center; padding: 7px 10px; border-radius: 6px; font-size: 13px; color: var(--text-2); transition: all 0.2s; cursor: pointer; }
.sidebar-cat:hover { background: rgba(255,255,255,0.04); color: var(--text-1); }
.sidebar-cat.active { background: rgba(232,184,75,0.12); color: var(--accent); }
.sidebar-count { font-size: 11px; color: var(--text-3); background: var(--bg-elevated); padding: 1px 7px; border-radius: 10px; }
.sidebar-top { display: flex; flex-direction: column; gap: 10px; }
.sidebar-top-item { display: flex; gap: 10px; align-items: center; }
.sidebar-top-rank { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--accent); width: 16px; flex-shrink: 0; }
.sidebar-top-poster { width: 36px; height: 48px; border-radius: 4px; flex-shrink: 0; }
.sidebar-top-title { font-size: 12px; font-weight: 600; color: var(--text-1); line-height: 1.3; }
.sidebar-top-rating { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.sidebar-content { min-width: 0; }

/* ── TRENDING PAGE ── */
.trending-stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trending-stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; }
.trending-stat-icon { font-size: 28px; margin-bottom: 8px; }
.trending-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--accent); }
.trending-stat-label { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.trending-poster-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.trending-poster-card { text-decoration: none; color: inherit; display: block; }
.trending-poster-img { position: relative; height: 200px; border-radius: 10px; overflow: hidden; display: flex; align-items: flex-end; justify-content: flex-start; margin-bottom: 8px; border: 1px solid var(--border); transition: transform 0.2s; }
.trending-poster-card:hover .trending-poster-img { transform: translateY(-3px); }
.trending-poster-rank { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,0.7); color: var(--accent); font-family: var(--font-display); font-size: 18px; font-weight: 700; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.trending-poster-badge { position: absolute; top: 8px; right: 8px; background: var(--accent); color: #0a0a0f; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.trending-poster-title { font-size: 13px; font-weight: 600; color: var(--text-1); line-height: 1.3; }
.trending-poster-meta { font-size: 11px; color: var(--text-3); margin-top: 3px; }

/* ── DETAIL PAGE ── */
.detail-breadcrumb { display: flex; align-items: center; gap: 10px; padding: 16px 40px; font-size: 12px; color: var(--text-3); background: var(--bg-card); border-bottom: 1px solid var(--border); }
.detail-breadcrumb a { color: var(--accent); }
.detail-hero { display: grid; grid-template-columns: 220px 1fr; gap: 36px; padding: 40px 40px; background: linear-gradient(135deg,#1a0a2e 0%,#0d1a2e 60%,#0a0a1a 100%); align-items: start; }
.detail-poster { height: 320px; border-radius: 14px; position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: flex-start; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.detail-poster-rating { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.8); color: var(--accent); font-size: 13px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.detail-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.detail-title { font-family: var(--font-display); font-size: 38px; font-weight: 900; line-height: 1.1; margin-bottom: 10px; }
.detail-meta-row { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--text-2); flex-wrap: wrap; margin-bottom: 14px; }
.detail-dot { color: var(--text-3); }
.detail-rating-bar { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.detail-stars { color: var(--accent); font-size: 18px; letter-spacing: 1px; }
.detail-score { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--accent); }
.detail-votes { font-size: 12px; color: var(--text-3); }
.detail-views { font-size: 12px; color: var(--text-3); }
.detail-desc { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; max-width: 600px; }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.detail-watch-btn { display: flex; align-items: center; gap: 8px; }
.detail-player-wrap { padding: 0 40px 32px; background: var(--bg-dark); }
.detail-player { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.detail-player-screen { height: 400px; display: flex; align-items: center; justify-content: center; color: var(--text-1); }
.detail-player-sources { display: flex; gap: 8px; padding: 16px; flex-wrap: wrap; align-items: center; border-top: 1px solid var(--border); }
.detail-source-title { font-size: 12px; color: var(--text-3); font-weight: 600; margin-right: 4px; }
.detail-source-btn { padding: 6px 14px; border-radius: 6px; border: 1px solid var(--border); background: none; color: var(--text-2); font-size: 12px; cursor: pointer; transition: all 0.2s; }
.detail-source-btn.active { background: var(--accent); color: #0a0a0f; border-color: var(--accent); font-weight: 700; }
.detail-source-btn:hover:not(.active) { border-color: var(--accent); color: var(--accent); }
.detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
.detail-main { display: flex; flex-direction: column; gap: 20px; }
.detail-section-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.detail-section-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.cast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cast-card { text-align: center; }
.cast-avatar { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: #0a0a0f; }
.cast-name { font-size: 12px; font-weight: 600; color: var(--text-1); }
.cast-role { font-size: 11px; color: var(--text-3); }
.episodes-list { display: flex; flex-direction: column; gap: 8px; }
.episode-item { display: flex; align-items: center; gap: 14px; padding: 12px; background: var(--bg-elevated); border-radius: 8px; border: 1px solid var(--border); }
.ep-num { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-3); width: 24px; flex-shrink: 0; }
.ep-info { flex: 1; min-width: 0; }
.ep-title { font-size: 13px; font-weight: 600; color: var(--text-1); }
.ep-meta { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.ep-watch-btn { padding: 6px 14px; background: var(--accent); color: #0a0a0f; border: none; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.ep-watch-btn:hover { background: var(--accent-dim); }
.detail-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; }
.detail-sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.detail-sidebar-title { font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-2); }
.detail-info-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.detail-info-table td { padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--text-2); }
.detail-info-table td:last-child { color: var(--text-1); text-align: right; }
.detail-info-table tr:last-child td { border-bottom: none; }
.share-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.share-btn { padding: 8px; border-radius: 8px; border: 1px solid var(--border); background: none; color: var(--text-2); font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.share-btn:hover { border-color: var(--accent); color: var(--accent); }
.related-list { display: flex; flex-direction: column; gap: 10px; }
.related-item { display: flex; gap: 10px; align-items: center; text-decoration: none; color: inherit; padding: 6px; border-radius: 8px; transition: background 0.2s; }
.related-item:hover { background: var(--bg-elevated); }
.related-poster { width: 44px; height: 58px; border-radius: 6px; flex-shrink: 0; }
.related-title { font-size: 13px; font-weight: 600; color: var(--text-1); line-height: 1.3; }
.related-meta { font-size: 11px; color: var(--text-3); margin-top: 3px; }

/* ── MISC bg-grad ALIASES ── */
.bg-grad-7 { background: linear-gradient(160deg, #2e1a0a, #1a2e1a); }
.bg-grad-8 { background: linear-gradient(160deg, #0a1a2e, #2e0a1a); }
.bg-g1 { background: linear-gradient(160deg,#2a1a3e,#1a2a3e); }
.bg-g2 { background: linear-gradient(160deg,#3e1a2a,#2a3e1a); }
.bg-g3 { background: linear-gradient(160deg,#1a3e2a,#3e1a1a); }
.bg-g4 { background: linear-gradient(160deg,#2a3e1a,#1a1a3e); }
.bg-g5 { background: linear-gradient(160deg,#3e2a1a,#1a3e2a); }
.bg-g6 { background: linear-gradient(160deg,#1a1a3e,#3e1a2a); }
.bg-g7 { background: linear-gradient(160deg,#2e1a0a,#1a2e1a); }
.bg-g8 { background: linear-gradient(160deg,#0a1a2e,#2e0a1a); }
.card .card-poster { position: relative; height: 200px; border-radius: 10px 10px 0 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.card .card-rating { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.8); color: var(--accent); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.card .card-badge { position: absolute; top: 8px; left: 8px; background: var(--accent); color: #0a0a0f; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; }
.card .card-body { padding: 12px; }
.card .card-title { font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 6px; line-height: 1.3; }
.card .card-meta { font-size: 11px; color: var(--text-3); display: flex; gap: 6px; align-items: center; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; cursor: pointer; transition: transform 0.2s, border-color 0.2s; text-decoration: none; color: inherit; display: block; }
.card:hover { transform: translateY(-3px); border-color: rgba(232,184,75,0.3); }

/* ── FAQ STYLES ── */
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-q.open { color: var(--accent); }

/* ── FOOTER LAYOUT ── */
footer { background: var(--bg-card); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 48px 40px; }
.footer-brand-name { font-family: var(--font-display); font-size: 24px; font-weight: 900; color: var(--accent); margin-bottom: 12px; }
.footer-brand-name span { color: var(--text-1); }
.footer-desc { font-size: 13px; color: var(--text-3); line-height: 1.7; max-width: 260px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-2); margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .trending-poster-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card-featured { grid-column: span 2; }
  .sidebar-layout { grid-template-columns: 200px 1fr; }
  .detail-hero { grid-template-columns: 180px 1fr; }
  .detail-layout { grid-template-columns: 1fr 260px; }
}
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-socials { display: none; }
  .search-bar { display: none; }
  .btn-outline:not(.nav-hamburger ~ *) { display: none; }
  .nav-hamburger { display: flex; }
  .hero-slider { height: 480px; }
  .hero-slide .hero-cards { display: none; }
  .hero-slide .hero-content { padding: 0 20px 40px; }
  .hero-title { font-size: 36px; }
  .section { padding: 32px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 16px; }
  .footer-newsletter { padding: 24px 16px; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form input { width: 100%; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card-featured { grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: span 1; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: none; }
  .trending-poster-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-poster { height: 200px; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .cast-grid { grid-template-columns: repeat(2, 1fr); }
  .trending-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ══════════════════════════════════════
   DRAMA DETAIL PAGE
══════════════════════════════════════ */
.dh-wrap { background: var(--bg-dark); padding: 48px 0 0; }
.dh-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; gap: 48px; align-items: flex-start; }
.dh-poster { flex-shrink: 0; width: 260px; height: 380px; border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.7); }
.dh-poster-rating { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.75); border: 1px solid var(--accent); color: var(--accent); border-radius: 8px; padding: 4px 10px; font-size: 13px; font-weight: 700; }
.dh-info { flex: 1; padding-top: 8px; }
.dh-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.dh-title { font-size: 2.4rem; font-weight: 800; color: var(--text-1); margin-bottom: 12px; line-height: 1.2; text-transform: capitalize; }
.dh-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; color: var(--text-2); font-size: 14px; margin-bottom: 16px; }
.dh-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.dh-stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; }
.dh-score { font-size: 22px; font-weight: 800; color: var(--text-1); }
.dh-votes { color: var(--text-3); font-size: 13px; }
.dh-views-badge { color: var(--text-3); font-size: 13px; }
.dh-desc { color: var(--text-2); line-height: 1.7; margin-bottom: 20px; font-size: 15px; }
.dh-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.dh-views-row { color: var(--text-3); font-size: 13px; }
.dh-tabs { background: var(--bg-card); border-bottom: 1px solid var(--border); position: sticky; top: 64px; z-index: 50; }
.dh-tabs-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; gap: 0; }
.dh-tab { padding: 16px 28px; font-size: 14px; font-weight: 600; color: var(--text-2); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; text-decoration: none; display: block; }
.dh-tab:hover, .dh-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.dh-section { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.dh-section-title { font-size: 1.3rem; font-weight: 700; color: var(--text-1); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.dh-about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }
.dh-about-meta p { margin: 6px 0; font-size: 14px; color: var(--text-2); }
.dh-about-meta strong { color: var(--text-1); }
.dh-cast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 20px; }
.dh-cast-card { text-align: center; }
.dh-cast-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: #fff; }
.dh-cast-name { font-size: 13px; font-weight: 700; color: var(--text-1); margin-bottom: 2px; }
.dh-cast-role { font-size: 11px; color: var(--text-3); }
.dh-ep-list { display: flex; flex-direction: column; gap: 12px; }
.dh-ep-row { display: flex; align-items: center; gap: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; transition: border-color 0.2s; }
.dh-ep-row:hover { border-color: var(--accent); }
.dh-ep-num { font-size: 12px; font-weight: 700; color: var(--accent); background: rgba(232,184,75,0.1); border-radius: 6px; padding: 4px 10px; flex-shrink: 0; }
.dh-ep-info { flex: 1; }
.dh-ep-title { font-size: 14px; font-weight: 600; color: var(--text-1); }
.dh-ep-meta { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.dh-ep-watch { font-size: 12px; flex-shrink: 0; }
.dh-review-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin-bottom: 32px; }
.dh-review-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-1); margin-bottom: 20px; }
.dh-stars-row { display: flex; gap: 6px; margin-bottom: 16px; }
.dh-star { font-size: 24px; color: var(--text-3); cursor: pointer; transition: color 0.15s; }
.dh-star:hover, .dh-star.active { color: var(--accent); }
.dh-review-form textarea { width: 100%; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 8px; color: var(--text-1); padding: 12px; font-size: 14px; min-height: 100px; resize: vertical; margin-bottom: 12px; box-sizing: border-box; }
.dh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.dh-review-form input { width: 100%; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 8px; color: var(--text-1); padding: 10px 12px; font-size: 14px; box-sizing: border-box; }
.dh-review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; margin-bottom: 14px; }
.dh-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.dh-reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,#7c3aed,#2563eb); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 16px; flex-shrink: 0; }
.dh-reviewer-name { font-size: 14px; font-weight: 700; color: var(--text-1); }
.dh-reviewer-date { font-size: 12px; color: var(--text-3); }
.dh-review-stars { color: var(--accent); font-size: 14px; margin-bottom: 8px; }
.dh-review-text { color: var(--text-2); font-size: 14px; line-height: 1.6; }
.dh-related-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; scrollbar-width: thin; }
.dh-rel-card { flex-shrink: 0; width: 180px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; text-decoration: none; }
.dh-rel-card:hover { border-color: var(--accent); }
.dh-rel-poster { height: 240px; }
.dh-rel-info { padding: 10px 12px; }
.dh-rel-title { font-size: 13px; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.dh-rel-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.dh-rel-explore { font-size: 11px; color: var(--accent); font-weight: 600; }

/* ══════════════════════════════════════
   MOVIE DETAIL PAGE
══════════════════════════════════════ */
.mv-player-wrap { background: #000; padding: 0; }
.mv-player { width: 100%; aspect-ratio: 16/9; max-height: 540px; background: #0a0a0f; display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; }
.mv-play-icon { width: 80px; height: 80px; background: rgba(232,184,75,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #000; transition: transform 0.2s; }
.mv-player:hover .mv-play-icon { transform: scale(1.1); }
.mv-source-label { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,0.7); color: var(--text-2); font-size: 12px; padding: 4px 10px; border-radius: 6px; }
.mv-info-bar { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 16px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; max-width: 100%; }
.mv-info-bar-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.mv-info-title { font-size: 1.3rem; font-weight: 800; color: var(--text-1); flex: 1; text-transform: capitalize; }
.mv-views { font-size: 13px; color: var(--text-3); }
.mv-info-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.mv-body { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.mv-section-title { font-size: 1.2rem; font-weight: 700; color: var(--text-1); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.mv-cast-grid, .mv-crew-grid { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.mv-cast-card, .mv-crew-card { display: flex; align-items: center; gap: 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; min-width: 200px; }
.mv-cast-avatar { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: #fff; }
.mv-cast-name { font-size: 14px; font-weight: 700; color: var(--text-1); }
.mv-cast-role { font-size: 11px; color: var(--text-3); background: rgba(255,255,255,0.07); border-radius: 4px; padding: 2px 8px; margin-top: 4px; display: inline-block; }
.mv-gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 40px; }
.mv-gallery-item { height: 110px; border-radius: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-3); }
.mv-sidebar-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-bottom: 20px; }
.mv-sidebar-title { font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 16px; }
.mv-rating-big { text-align: center; padding: 8px 0 16px; }
.mv-rating-score { font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; }
.mv-rating-max { font-size: 1.2rem; color: var(--text-3); }
.mv-rating-stars { color: var(--accent); font-size: 20px; margin: 8px 0; }
.mv-rating-votes { font-size: 12px; color: var(--text-3); }
.mv-info-table { width: 100%; }
.mv-info-table tr td { padding: 7px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
.mv-info-table tr td:first-child { color: var(--text-3); width: 50%; }
.mv-info-table tr td:last-child { color: var(--text-1); font-weight: 600; }
.mv-share-row { display: flex; gap: 8px; flex-wrap: wrap; }
.mv-share-btn { padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; border: 1px solid var(--border); background: var(--bg-dark); color: var(--text-2); cursor: pointer; transition: all 0.2s; }
.mv-share-btn:hover { border-color: var(--accent); color: var(--accent); }
.mv-recommended { background: var(--bg-card); padding: 40px 0; margin-top: 40px; }
.mv-recommended-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.mv-rec-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; scrollbar-width: thin; }
.mv-rec-card { flex-shrink: 0; width: 160px; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; cursor: pointer; }
.mv-rec-card:hover { border-color: var(--accent); }
.mv-rec-poster { height: 220px; }
.mv-rec-info { padding: 10px 12px; }
.mv-rec-title { font-size: 13px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.mv-rec-meta { font-size: 11px; color: var(--text-3); margin-bottom: 4px; }
.mv-rec-tags { display: flex; flex-wrap: wrap; gap: 4px; }

/* ══════════════════════════════════════
   BLOG DETAIL PAGE
══════════════════════════════════════ */
.bd-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.bd-header { margin-bottom: 24px; }
.bd-title { font-size: 2rem; font-weight: 800; color: var(--text-1); line-height: 1.25; margin: 12px 0 16px; }
.bd-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.bd-meta-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#7c3aed,#2563eb); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.bd-meta-text { font-size: 13px; color: var(--text-2); }
.bd-meta-sep { color: var(--text-3); }
.bd-share-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.bd-share-btn { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: opacity 0.2s; }
.bd-share-btn:hover { opacity: 0.85; }
.bd-share-fb { background: #1877f2; color: #fff; }
.bd-share-tw { background: #1da1f2; color: #fff; }
.bd-share-wa { background: #25d366; color: #fff; }
.bd-featured-img { width: 100%; height: 420px; border-radius: 16px; overflow: hidden; margin-bottom: 32px; position: relative; display: flex; align-items: flex-end; }
.bd-featured-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,0.8)); }
.bd-featured-caption { position: relative; z-index: 1; padding: 20px 24px; font-size: 13px; color: rgba(255,255,255,0.7); }
.bd-content { color: var(--text-2); font-size: 15px; line-height: 1.8; }
.bd-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--text-1); margin: 32px 0 14px; }
.bd-content p { margin-bottom: 18px; }
.bd-content blockquote { border-left: 3px solid var(--accent); padding: 14px 20px; background: rgba(232,184,75,0.06); border-radius: 0 10px 10px 0; margin: 24px 0; font-style: italic; color: var(--text-1); }
.bd-content ul { padding-left: 20px; margin-bottom: 18px; }
.bd-content ul li { margin-bottom: 6px; }
.bd-tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; }
.bd-tag { padding: 6px 14px; background: var(--bg-card-2); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--text-2); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.bd-tag:hover { border-color: var(--accent); color: var(--accent); }
.bd-author-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; gap: 18px; align-items: flex-start; margin-top: 40px; }
.bd-author-avatar { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg,#e8b84b,#c2410c); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; color: #fff; flex-shrink: 0; }
.bd-author-name { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.bd-author-bio { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.bd-comments { margin-top: 48px; }
.bd-comments-title { font-size: 1.2rem; font-weight: 700; color: var(--text-1); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
/* Sidebar */
.bd-sidebar-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-bottom: 24px; }
.bd-sidebar-title { font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.bd-sidebar-search { display: flex; gap: 8px; }
.bd-sidebar-search input { flex: 1; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 8px; color: var(--text-1); padding: 10px 12px; font-size: 13px; }
.bd-sidebar-search button { background: var(--accent); color: #0a0a0f; border: none; border-radius: 8px; padding: 10px 14px; cursor: pointer; font-weight: 700; }
.bd-trending-list { display: flex; flex-direction: column; gap: 14px; }
.bd-trending-item { display: flex; gap: 12px; align-items: flex-start; }
.bd-trending-thumb { width: 72px; height: 52px; border-radius: 8px; flex-shrink: 0; }
.bd-trending-info .bd-trending-title { font-size: 13px; font-weight: 600; color: var(--text-1); line-height: 1.3; margin-bottom: 4px; }
.bd-trending-info .bd-trending-date { font-size: 11px; color: var(--text-3); }
.bd-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.bd-newsletter-form { display: flex; gap: 8px; }
.bd-newsletter-form input { flex: 1; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 8px; color: var(--text-1); padding: 10px 12px; font-size: 13px; }
/* Related articles */
.bd-related { background: var(--bg-card); padding: 48px 0; margin-top: 48px; }
.bd-related-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.bd-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 24px; }
.bd-rel-card { background: var(--bg-dark); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; text-decoration: none; display: block; }
.bd-rel-card:hover { border-color: var(--accent); }
.bd-rel-img { height: 180px; }
.bd-rel-body { padding: 16px; }
.bd-rel-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.bd-rel-title { font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; line-height: 1.35; }
.bd-rel-meta { font-size: 12px; color: var(--text-3); }

/* Responsive adjustments */
@media (max-width: 768px) {
  .dh-inner { flex-direction: column; }
  .dh-poster { width: 100%; height: 240px; }
  .dh-about-grid { grid-template-columns: 1fr; }
  .mv-body { grid-template-columns: 1fr; }
  .mv-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .bd-wrap { grid-template-columns: 1fr; }
  .bd-related-grid { grid-template-columns: 1fr; }
  .dh-form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   CELEBRITY DETAIL PAGE
══════════════════════════════════════ */
.celeb-hero { background: var(--bg-dark); padding: 48px 0 0; }
.celeb-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; gap: 48px; align-items: flex-start; }
.celeb-hero-photo { flex-shrink: 0; text-align: center; }
.celeb-avatar-big { width: 200px; height: 200px; border-radius: 50%; margin: 0 auto 20px; overflow: hidden; border: 3px solid rgba(232,184,75,0.4); box-shadow: 0 0 0 6px rgba(232,184,75,0.08), 0 24px 60px rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; font-size: 56px; font-weight: 900; color: #fff; }
.celeb-social-row { display: flex; justify-content: center; gap: 12px; }
.celeb-social-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: all 0.2s; }
.celeb-social-btn:hover { border-color: var(--accent); background: rgba(232,184,75,0.1); }
.celeb-hero-info { flex: 1; padding-top: 8px; }
.celeb-name { font-size: 1rem; font-weight: 900; color: var(--text-1); margin: 10px 0 12px; }
.celeb-meta-row { color: var(--text-3); font-size: 14px; display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.celeb-meta-sep { color: var(--border); }
.celeb-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 24px; }
.celeb-stat-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 14px; text-align: center; }
.celeb-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.celeb-stat-label { font-size: 11px; color: var(--text-3); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.celeb-bio { color: var(--text-2); line-height: 1.7; margin-bottom: 20px; font-size: 15px; }
.celeb-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.celeb-tabs { background: var(--bg-card); border-bottom: 1px solid var(--border); position: sticky; top: 64px; z-index: 50; }
.celeb-tabs-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; }
.celeb-tab { padding: 16px 28px; font-size: 14px; font-weight: 600; color: var(--text-2); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; text-decoration: none; display: block; }
.celeb-tab:hover, .celeb-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.celeb-section { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.celeb-section-title { font-size: 1.3rem; font-weight: 700; color: var(--text-1); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.celeb-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.celeb-info-table { width: 100%; }
.celeb-info-table tr td { padding: 10px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.celeb-info-table tr td:first-child { color: var(--text-3); width: 45%; }
.celeb-info-table tr td:last-child { color: var(--text-1); font-weight: 600; }
.celeb-photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.celeb-photo-item { height: 240px; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-3); cursor: pointer; transition: transform 0.2s; }
.celeb-photo-item:hover { transform: scale(1.02); }

/* ══════════════════════════════════════
   BLOG CATEGORY PAGE
══════════════════════════════════════ */
.blog-cat-hero { background: var(--bg-card); padding: 48px 24px; text-align: center; border-bottom: 1px solid var(--border); }
.blog-cat-icon { font-size: 48px; margin-bottom: 12px; }
.blog-cat-title { font-size: 2.2rem; font-weight: 800; color: var(--text-1); margin-bottom: 8px; }
.blog-cat-sub { color: var(--text-2); font-size: 15px; margin-bottom: 24px; }
.blog-cat-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.bc-filter { padding: 8px 20px; border-radius: 20px; font-size: 13px; font-weight: 600; background: var(--bg-dark); border: 1px solid var(--border); color: var(--text-2); cursor: pointer; transition: all 0.2s; }
.bc-filter.active, .bc-filter:hover { background: var(--accent); color: #0a0a0f; border-color: var(--accent); }
.blog-cat-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.blog-cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; align-content: start; }
.bc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; text-decoration: none; display: block; color: inherit; }
.bc-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.bc-img { width: 100%; height: 200px; }
.bc-body { padding: 18px 20px; }
.bc-cat-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: block; }
.bc-title { font-size: 15px; font-weight: 700; color: var(--text-1); line-height: 1.35; margin-bottom: 8px; }
.bc-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 12px; }
.bc-foot { font-size: 12px; color: var(--text-3); display: flex; gap: 8px; }
.bc-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; }
.bc-page-btn { width: 40px; height: 40px; border-radius: 8px; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-2); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.bc-page-btn.active, .bc-page-btn:hover { background: var(--accent); color: #0a0a0f; border-color: var(--accent); }

@media(max-width:768px){
  .celeb-hero-inner { flex-direction: column; align-items: center; text-align: center; }
  .celeb-stats { grid-template-columns: repeat(2,1fr); }
  .celeb-about-grid { grid-template-columns: 1fr; }
  .celeb-photo-grid { grid-template-columns: repeat(2,1fr); }
  .blog-cat-wrap { grid-template-columns: 1fr; }
  .blog-cat-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE FIXES
══════════════════════════════════════ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .celeb-grid        { grid-template-columns: repeat(4, 1fr); }
  .featured-banner   { margin: 0 20px 40px; }
  .news-grid         { grid-template-columns: 1fr; }
  .fashion-grid      { grid-template-columns: repeat(3, 1fr); }
  .fashion-card:first-child { grid-row: span 1; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Grids */
  .celeb-grid        { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .featured-banner   { margin: 0 16px 32px; grid-template-columns: 1fr; border-radius: 12px; }
  .featured-right    { display: none; }
  .news-grid         { grid-template-columns: 1fr; }
  .fashion-grid      { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fashion-card:first-child { grid-row: span 1; aspect-ratio: 3/4; }

  /* Hero */
  .hero-stats           { flex-wrap: wrap; gap: 14px; margin-top: 20px; }
  .stat-num             { font-size: 20px; }
  .hero-title           { font-size: 32px; }
  .hero-slider-prev     { right: auto; left: 8px; }
  .hero-slider-next     { right: 8px; }

  /* Page hero */
  .page-hero         { padding: 40px 20px 32px; }
  .page-title        { font-size: 32px; letter-spacing: -0.5px; }

  /* Drama/movie detail hero */
  .dh-title          { font-size: 1.8rem; }
  .dh-tab            { padding: 12px 16px; font-size: 13px; }

  /* Movie body */
  .mv-body           { grid-template-columns: 1fr; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  /* Core layout */
  .section           { padding: 24px 14px; }
  .featured-banner   { margin: 0 0 24px; border-radius: 0; border-left: none; border-right: none; }

  /* Grids */
  .celeb-grid        { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cards-grid        { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .video-grid        { grid-template-columns: 1fr; }
  .video-card-featured { grid-column: span 1; }
  .footer-grid       { grid-template-columns: 1fr; gap: 20px; padding: 28px 16px; }
  .trending-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .bd-related-grid   { grid-template-columns: 1fr; }

  /* Typography */
  .hero-title        { font-size: 26px; }
  .page-title        { font-size: 26px; }
  .dh-title          { font-size: 1.5rem; }
  .celeb-name        { font-size: 2rem; }
  .section-title     { font-size: 18px; }

  /* Nav / hero */
  .hero-slider       { height: 420px; }
  .hero-content      { padding: 0 16px 32px; }
  .hero-sub          { font-size: 13px; margin-bottom: 20px; }
  .hero-actions      { gap: 8px; }
  .hero-stats        { gap: 12px; margin-top: 16px; }
  .stat-num          { font-size: 18px; }

  /* Page hero */
  .page-hero         { padding: 32px 16px 28px; }
  .page-title        { font-size: 24px; }

  /* Cards */
  .celeb-avatar      { max-width: 72px; }
  .celeb-name        { font-size: 10px; }
  .news-img          { height: 150px; }

  /* Movie detail */
  .mv-info-bar       { padding: 12px 16px; }
  .mv-info-title     { font-size: 1.1rem; }

  /* Blog detail */
  .bd-wrap           { padding: 28px 16px; }
  .bd-title          { font-size: 1.5rem; }
  .bd-featured-img   { height: 240px; }

  /* Footer */
  .footer-bottom     { padding: 16px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 10px; justify-content: center; }
}

/* Top Rated grid — 2 cols desktop, 1 col mobile */
.top-rated-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) {
  .top-rated-grid { grid-template-columns: 1fr; gap: 16px; }
}
