:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface2: #1a1a1a;
  --surface3: #222;
  --border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --text2: rgba(255,255,255,0.65);
  --text3: rgba(255,255,255,0.35);
  --accent: #e50914;
  --accent2: #f40612;
  --gold: #f5c518;
  --green: #46d369;
  --blue: #0071eb;
  --r: 6px;
  --r-lg: 12px;
  --font: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #444; border-radius: 4px; }
img { display: block; }
a { text-decoration: none; color: inherit; }

/* ──── NAV ──── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.92) 0%, transparent 100%);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(10,10,10,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-left { display: flex; align-items: center; gap: 32px; }
.nav-logo { font-family: var(--font-cond); font-size: 26px; font-weight: 800; letter-spacing: 1px; color: var(--text); display: flex; align-items: center; gap: 6px; }
.nav-logo .logo-icon { width: 30px; height: 22px; background: var(--accent); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { cursor: pointer; padding: 6px 13px; border-radius: 4px; font-size: 14px; font-weight: 500; color: var(--text2); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { font-weight: 700; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-sel { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text2); cursor: pointer; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; padding: 5px 10px; }
.lang-sel:hover { color: var(--text); }
.nav-profile { width: 32px; height: 32px; border-radius: 50px; background: linear-gradient(135deg,#e50914,#b20710); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; }
.btn-subscribe { background: var(--accent); color: #fff; border: none; border-radius: 4px; padding: 8px 18px; font-size: 14px; font-weight: 700; font-family: var(--font); cursor: pointer; transition: background 0.2s; letter-spacing: 0.2px; }
.btn-subscribe:hover { background: var(--accent2); }

/* ──── HERO ──── */
.hero { position: relative; height: 100vh; min-height: 580px; overflow: hidden; }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: transform 12s ease; }
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.1) 70%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 20%, transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 20%);
}
.hero-content { position: absolute; bottom: 14%; left: 5%; z-index: 2; max-width: 560px; }
.hero-slide.active .hero-content { animation: slideUp 0.9s 0.2s both ease; }
@keyframes slideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.hero-show-logo { max-width: 320px; margin-bottom: 20px; }
.hero-title { font-family: var(--font-cond); font-size: clamp(36px,6vw,72px); font-weight: 900; line-height: 0.92; letter-spacing: -1px; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.8); text-transform: uppercase; }
.hero-actions { display: flex; gap: 10px; margin-bottom: 14px; }
.btn-watch { display: flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; border: none; border-radius: 5px; padding: 12px 24px; font-size: 15px; font-weight: 700; font-family: var(--font); cursor: pointer; transition: all 0.2s; }
.btn-watch:hover { background: #c4060f; transform: scale(1.02); }
.btn-watch-outline { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); color: var(--text); border: 1.5px solid rgba(255,255,255,0.4); border-radius: 5px; padding: 12px 22px; font-size: 15px; font-weight: 600; font-family: var(--font); cursor: pointer; transition: all 0.2s; backdrop-filter: blur(8px); }
.btn-watch-outline:hover { background: rgba(255,255,255,0.2); }
.btn-play-icon { font-size: 18px; }
.hero-sub { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.hero-sub-icon { font-size: 16px; }
.hero-dots { position: absolute; bottom: 7%; left: 5%; z-index: 3; display: flex; gap: 6px; align-items: center; }
.hero-dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; border: none; }
.hero-dot.active { width: 28px; background: var(--accent); border-radius: 4px; }

/* ──── SECTIONS ──── */
.main-content { position: relative; z-index: 2; padding-bottom: 60px; }
.section { padding: 32px 28px 10px; }
.section-title { font-size: 19px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.2px; }
.section-title span { color: var(--green); }

/* ──── RAIL ──── */
.rail-outer { position: relative; }
.rail { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; scroll-behavior: smooth; }
.rail::-webkit-scrollbar { display: none; }
.rail-btn { position: absolute; top: 50%; transform: translateY(-60%); z-index: 10; width: 40px; height: 80px; background: rgba(0,0,0,0.7); border: none; color: #fff; font-size: 20px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; border-radius: var(--r); }
.rail-btn:hover { background: rgba(0,0,0,0.9); width: 46px; }
.rail-btn.left { left: -2px; border-radius: 0 var(--r) var(--r) 0; }
.rail-btn.right { right: -2px; border-radius: var(--r) 0 0 var(--r); }
.rail-fade-r { position: absolute; top: 0; right: 0; width: 80px; height: 100%; background: linear-gradient(to left, var(--bg), transparent); pointer-events: none; z-index: 5; }

/* ──── CARD ──── */
.card { flex: 0 0 140px; scroll-snap-align: start; cursor: pointer; position: relative; border-radius: var(--r); overflow: hidden; transition: transform 0.25s, z-index 0s; }
.card:hover { transform: scale(1.07) translateY(-4px); z-index: 10; }
.card:hover .card-hover-info { opacity: 1; }
.card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; background: var(--surface3); display: block; }
.card-rating { position: absolute; top: 6px; left: 6px; background: rgba(0,0,0,0.75); border-radius: 4px; padding: 2px 7px; font-size: 11px; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 3px; border: 1px solid rgba(245,197,24,0.25); }
.card-badge { position: absolute; top: 6px; right: 6px; background: var(--accent); border-radius: 4px; padding: 2px 7px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.card-play-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%); opacity: 0; transition: opacity 0.2s; display: flex; flex-direction: column; justify-content: flex-end; padding: 10px; }
.card:hover .card-play-overlay { opacity: 1; }
.card-play-btn { width: 34px; height: 34px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #fff; margin-bottom: 6px; }
.card-info { padding: 8px 4px 0; }
.card-title { font-size: 12px; font-weight: 600; line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.card-sub { font-size: 10px; color: var(--text3); margin-top: 3px; }

/* ──── WIDE CARD (16:9) ──── */
.wide-card { flex: 0 0 220px; scroll-snap-align: start; cursor: pointer; position: relative; border-radius: var(--r); overflow: hidden; transition: transform 0.25s; }
.wide-card:hover { transform: scale(1.05) translateY(-4px); z-index: 10; }
.wide-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--surface3); display: block; }
.wide-card .card-play-overlay { opacity: 0; transition: opacity 0.2s; }
.wide-card:hover .card-play-overlay { opacity: 1; }
.wide-card .card-info { padding: 8px 4px 0; }
.wide-card .card-title { font-size: 13px; }

/* ──── LANGUAGE TABS ──── */
.lang-section { padding: 28px 28px 16px; }
.lang-title { font-size: 19px; font-weight: 700; margin-bottom: 14px; }
.lang-tabs { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.lang-tabs::-webkit-scrollbar { display: none; }
.lang-tab { flex: 0 0 auto; min-width: 120px; height: 48px; border-radius: 6px; border: none; font-size: 16px; font-weight: 700; font-family: var(--font); cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 10px; letter-spacing: 0.3px; }
.lang-tab .lt-icon { font-size: 22px; }
.lang-tab.hindi { background: linear-gradient(135deg, #e63946, #c1121f); color: #fff; }
.lang-tab.english { background: linear-gradient(135deg, #457b9d, #1d3557); color: #fff; }
.lang-tab.telugu { background: linear-gradient(135deg, #2d6a4f, #1b4332); color: #fff; }
.lang-tab.tamil { background: linear-gradient(135deg, #f77f00, #d62828); color: #fff; }
.lang-tab.kannada { background: linear-gradient(135deg, #7209b7, #3a0ca3); color: #fff; }
.lang-tab.more { background: linear-gradient(135deg, #4cc9f0, #4361ee); color: #fff; }
.lang-tab:hover { transform: scale(1.04) translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }

/* ──── GENRE FILTER ──── */
.genre-filter { padding: 4px 28px 0; }
.genre-title { font-size: 19px; font-weight: 700; margin-bottom: 14px; }
.genre-grid { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.genre-grid::-webkit-scrollbar { display: none; }
.genre-item { flex: 0 0 auto; position: relative; cursor: pointer; border-radius: var(--r); overflow: hidden; min-width: 130px; height: 80px; transition: transform 0.2s; }
.genre-item:hover { transform: scale(1.05); }
.genre-item img { width: 100%; height: 100%; object-fit: cover; }
.genre-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%); display: flex; align-items: flex-end; padding: 8px 10px; }
.genre-item-name { font-size: 14px; font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,0.8); }

/* ──── PROMO HERO ──── */
.promo-hero { position: relative; height: 420px; overflow: hidden; margin: 28px 0; }
.promo-bg { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.1) 75%, transparent 100%), linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%); }
.promo-content { position: absolute; bottom: 14%; left: 5%; max-width: 480px; }
.promo-title { font-family: var(--font-cond); font-size: clamp(32px,5vw,64px); font-weight: 900; line-height: 0.92; letter-spacing: -1px; margin-bottom: 16px; text-transform: uppercase; }
.promo-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; display: flex; align-items: center; gap: 6px; }

/* ──── SKELETON ──── */
.skel { background: linear-gradient(90deg, var(--surface2) 25%, var(--surface3) 50%, var(--surface2) 75%); background-size: 200% 100%; animation: shimmer 1.6s infinite; border-radius: var(--r); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skel-card { flex: 0 0 140px; }
.skel-wide { flex: 0 0 220px; }
.skel-poster { aspect-ratio: 2/3; border-radius: var(--r); margin-bottom: 8px; }
.skel-wide-thumb { aspect-ratio: 16/9; border-radius: var(--r); margin-bottom: 8px; }
.skel-line { height: 12px; border-radius: 4px; margin-bottom: 5px; }

/* ──── MODAL ──── */
.modal-bg { position: fixed; inset: 0; z-index: 800; background: rgba(0,0,0,0.85); backdrop-filter: blur(20px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-bg.open { display: flex; animation: mfade 0.25s ease; }
@keyframes mfade { from { opacity: 0; } to { opacity: 1; } }
.modal { background: #181818; border-radius: 14px; width: 100%; max-width: 820px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.9); animation: mslide 0.35s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes mslide { from { opacity:0; transform: scale(0.9) translateY(30px); } to { opacity:1; transform: scale(1) translateY(0); } }
.modal-top { position: relative; height: 320px; overflow: hidden; border-radius: 14px 14px 0 0; }
.modal-backdrop-img { width: 100%; height: 100%; object-fit: cover; }
.modal-top-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #181818 0%, transparent 55%), linear-gradient(to right, rgba(0,0,0,0.6), transparent 50%); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; background: rgba(30,30,30,0.9); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 15px; color: var(--text); z-index: 2; transition: background 0.2s; }
.modal-close:hover { background: rgba(80,80,80,0.8); }
.modal-body { padding: 0 28px 28px; }
.modal-title { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; margin-top: -16px; position: relative; z-index: 1; margin-bottom: 12px; font-family: var(--font-cond); }
.modal-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 13px; color: var(--text2); margin-bottom: 16px; }
.modal-rating { color: var(--gold); font-weight: 700; display: flex; align-items: center; gap: 4px; font-size: 14px; }
.modal-pill { background: rgba(255,255,255,0.1); border-radius: 4px; padding: 3px 10px; font-size: 12px; font-weight: 500; }
.modal-genres { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.modal-genre-tag { background: rgba(229,9,20,0.12); border: 1px solid rgba(229,9,20,0.3); color: #ff6b70; border-radius: 4px; padding: 3px 10px; font-size: 12px; font-weight: 500; }
.modal-overview { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.modal-actions { display: flex; gap: 10px; }
.modal-play { flex: 1; background: var(--accent); color: #fff; border: none; border-radius: 6px; padding: 15px 24px; font-size: 15px; font-weight: 700; font-family: var(--font); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; transition: all 0.2s; }
.modal-play:hover { background: #c4060f; }
.modal-play:disabled { opacity: 0.45; cursor: not-allowed; }
.modal-info { background: rgba(255,255,255,0.06); border: none; border-radius: 6px; padding: 15px 20px; font-size: 14px; font-weight: 600; font-family: var(--font); color: var(--text2); cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.modal-info:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.no-stream-msg { background: rgba(229,9,20,0.08); border: 1px solid rgba(229,9,20,0.25); border-radius: 8px; padding: 12px 16px; font-size: 13px; color: #ff6b70; margin-top: 14px; display: none; }
.modal-loading { font-size: 13px; color: var(--text3); margin-top: 10px; display: none; align-items: center; gap: 8px; }
.sm-spin { width: 15px; height: 15px; border: 2px solid var(--surface3); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ──── PLAYER ──── */
.player-overlay { position: fixed; inset: 0; z-index: 1000; background: #000; display: none; flex-direction: column; }
.player-overlay.open { display: flex; }
.player-header { position: absolute; top: 0; left: 0; right: 0; z-index: 10; padding: 0 24px; height: 56px; display: flex; align-items: center; gap: 14px; background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent); }
.player-back { display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; color: rgba(255,255,255,0.85); font-family: var(--font); font-size: 13px; font-weight: 500; padding: 7px 16px; cursor: pointer; transition: all 0.2s; }
.player-back:hover { color: #fff; background: rgba(255,255,255,0.12); }
.player-title { font-size: 15px; font-weight: 700; color: #fff; font-family: var(--font-cond); letter-spacing: 0.5px; }
.player-wrap { flex: 1; position: relative; }
#playerIframe { width: 100%; height: 100%; border: none; background: #000; }
.player-nosrc { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-align: center; gap: 14px; }
.player-nosrc-icon { font-size: 56px; }
.player-nosrc h2 { font-family: var(--font-cond); font-size: 22px; font-weight: 700; color: rgba(255,255,255,0.7); }

/* ──── SEARCH ──── */
.search-wrap { position: relative; }
.search-icon-btn { background: none; border: none; color: var(--text2); font-size: 18px; cursor: pointer; padding: 4px 8px; transition: color 0.2s; }
.search-icon-btn:hover { color: var(--text); }
.search-input-wrap { position: absolute; right: 0; top: -2px; width: 0; overflow: hidden; transition: width 0.35s ease; display: flex; align-items: center; }
.search-input-wrap.open { width: 240px; }
#searchInput { width: 100%; background: rgba(0,0,0,0.85); border: 1.5px solid rgba(255,255,255,0.25); border-radius: 4px; padding: 8px 14px 8px 36px; color: var(--text); font-size: 14px; font-family: var(--font); outline: none; }
#searchInput:focus { border-color: rgba(255,255,255,0.5); }
#searchInput::placeholder { color: var(--text3); }
.search-input-icon { position: absolute; left: 11px; color: var(--text3); font-size: 14px; pointer-events: none; }
#searchResults { position: absolute; top: calc(100% + 8px); right: 0; width: 360px; background: #181818; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; display: none; box-shadow: 0 16px 50px rgba(0,0,0,0.85); z-index: 600; max-height: 440px; overflow-y: auto; }
#searchResults.active { display: block; animation: fadeD 0.2s ease; }
@keyframes fadeD { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: translateY(0); } }
.sr-item { display: flex; align-items: center; gap: 12px; padding: 11px 14px; cursor: pointer; transition: background 0.15s; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sr-item:last-child { border-bottom: none; }
.sr-item:hover { background: rgba(255,255,255,0.05); }
.sr-img { width: 42px; height: 63px; object-fit: cover; border-radius: 5px; background: var(--surface3); flex-shrink: 0; }
.sr-title { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-meta { font-size: 12px; color: var(--text2); margin-top: 3px; display: flex; gap: 6px; align-items: center; }
.sr-star { color: var(--gold); font-size: 11px; }
.sr-empty { padding: 28px; text-align: center; color: var(--text3); font-size: 14px; }
.sr-loading { padding: 24px; text-align: center; }
.spinner { width: 22px; height: 22px; margin: 0 auto; border: 2px solid var(--surface3); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.7s linear infinite; }

/* ──── SEARCH PAGE ──── */
.search-page { display: none; padding: 32px 28px; position: relative; z-index: 2; }
.search-page.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.search-page-title { font-family: var(--font-cond); font-size: 32px; font-weight: 800; letter-spacing: -1px; margin-bottom: 6px; }
.search-page-sub { font-size: 14px; color: var(--text2); margin-bottom: 24px; }
.search-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(136px, 1fr)); gap: 14px; }
#homeContent.hidden { display: none; }

/* ──── DOWNLOAD APP ──── */
.download-section { background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%); padding: 60px 28px; text-align: center; border-top: 1px solid var(--border); }
.download-title { font-family: var(--font-cond); font-size: 36px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 10px; }
.download-sub { font-size: 14px; color: var(--text2); max-width: 500px; margin: 0 auto 30px; line-height: 1.6; }
.download-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 10px; background: var(--surface2); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 12px 22px; color: var(--text); font-family: var(--font); cursor: pointer; transition: all 0.2s; }
.store-btn:hover { background: var(--surface3); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.store-btn-icon { font-size: 24px; }
.store-btn-text { text-align: left; }
.store-btn-sub { font-size: 10px; color: var(--text2); display: block; }
.store-btn-name { font-size: 15px; font-weight: 700; display: block; }

/* ──── FOOTER ──── */
footer { padding: 24px 28px; border-top: 1px solid var(--border); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 14px; }
.footer-links a { font-size: 12px; color: var(--text3); transition: color 0.2s; }
.footer-links a:hover { color: var(--text2); }
.footer-copy { font-size: 11px; color: var(--text3); }

/* ──── TOAST ──── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--surface2); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 11px 20px; font-size: 13px; font-weight: 500; z-index: 9999; box-shadow: 0 8px 28px rgba(0,0,0,0.7); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 36px; }
  .hero-content { left: 4%; max-width: 90%; }
  .card { flex: 0 0 118px; }
  .wide-card { flex: 0 0 180px; }
  .section, .lang-section, .genre-filter { padding: 22px 16px 10px; }
  .promo-title { font-size: 32px; }
  .lang-tab { min-width: 100px; }
  .download-section { padding: 40px 16px; }
}
