/* ══ CSS CUSTOM PROPERTIES ════════════════════════════════════════════════ */
:root {
  --ink:        #0a0804;
  --parchment:  #f5f0e8;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --rust:       #8b3a1e;
  --font-serif: 'Cormorant Garamond', 'Noto Serif', serif;
  --font-mono:  'Space Mono', 'Courier New', monospace;
  --font-deco:  'Cinzel Decorative', 'Palatino Linotype', serif;
}

/* ══ RESET & BASE ═════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  font-family: var(--font-serif);
  color: var(--parchment);
  overflow-x: hidden;
}

/* Film-grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.55;
}

/* ══ CANVAS & DECORATION ══════════════════════════════════════════════════ */
#bg-canvas { position: fixed; inset: 0; z-index: 0; }

.ring {
  position: fixed;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  pointer-events: none;
  z-index: 1;
}
.ring-1 { width: 600px; height: 600px; }
.ring-2 { width: 820px; height: 820px;  border-color: rgba(201,168,76,0.06); }
.ring-3 { width: 1080px; height: 1080px; border-color: rgba(201,168,76,0.035); }

/* ══ LANGUAGE BANNER ══════════════════════════════════════════════════════ */
.lang-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 48px;
  background: rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(8px);
  font-size: 13px;
  color: rgba(245,240,232,0.8);
}
.lang-banner a { color: var(--gold); text-decoration: underline; }
.lang-banner-close {
  background: none;
  border: none;
  color: rgba(245,240,232,0.4);
  cursor: pointer;
  font-size: 16px;
  padding: 0 4px;
  margin-left: 8px;
  transition: color 0.2s;
}
.lang-banner-close:hover { color: var(--parchment); }

/* ══ NAV ══════════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: linear-gradient(to bottom, rgba(10,8,4,0.88) 0%, transparent 100%);
  opacity: 0;
}
.has-banner #nav { top: 42px; }

.nav-logo {
  font-family: var(--font-deco);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links > a {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links > a:hover { color: var(--gold); }

/* Language switcher — HTML <a> links (crawler-friendly) */
.lang-switch { display: flex; gap: 4px; align-items: center; }

.lang-link {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(245,240,232,0.28);
  padding: 4px 8px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.lang-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 8px; right: 8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.lang-link.active { color: var(--gold); }
.lang-link.active::after { transform: scaleX(1); }
.lang-link:hover { color: rgba(245,240,232,0.6); }

.lang-sep {
  width: 1px;
  height: 10px;
  background: rgba(245,240,232,0.12);
}

/* ══ HERO ══════════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 80px;
}

.header { text-align: center; margin-bottom: 52px; opacity: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.55em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}

.title {
  font-family: var(--font-deco);
  font-size: clamp(22px, 3.5vw, 46px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.15;
}
.title span { color: var(--gold); }

.subtitle {
  font-style: italic;
  font-size: 15px;
  color: rgba(245,240,232,0.42);
  margin-top: 14px;
  letter-spacing: 0.06em;
}

/* ══ DROP CONTAINER & CORNERS ════════════════════════════════════════════ */
.drop-container {
  position: relative;
  width: min(560px, 92vw);
  opacity: 0;
}

.corner {
  position: absolute;
  width: 28px; height: 28px;
  pointer-events: none;
  z-index: 2;
}
.corner::before, .corner::after { content: ''; position: absolute; background: var(--gold); }
.corner::before { height: 1px; width: 28px; }
.corner::after  { width: 1px; height: 28px; }
.corner-tl { top: -1px; left: -1px; }
.corner-tr { top: -1px; right: -1px; transform: scaleX(-1); }
.corner-bl { bottom: -1px; left: -1px; transform: scaleY(-1); }
.corner-br { bottom: -1px; right: -1px; transform: scale(-1); }

/* ══ DROP ZONE ════════════════════════════════════════════════════════════ */
.drop-zone {
  position: relative;
  padding: 44px 40px 36px;
  border: 1px solid rgba(201,168,76,0.22);
  background: rgba(201,168,76,0.028);
  backdrop-filter: blur(8px);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.35s, background 0.35s;
  overflow: hidden;
}
.drop-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.09) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}
.drop-zone:hover::before,
.drop-zone.dragging::before { opacity: 1; }
.drop-zone:hover,
.drop-zone.dragging {
  border-color: rgba(201,168,76,0.55);
  background: rgba(201,168,76,0.06);
}

.upload-icon { width: 52px; height: 52px; margin: 0 auto 18px; }
.icon-svg { width: 100%; height: 100%; overflow: visible; }

.drop-label { font-size: 17px; font-weight: 300; letter-spacing: 0.06em; margin-bottom: 6px; }

.drop-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(245,240,232,0.28);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.browse-btn {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.25s;
}
.browse-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  z-index: -1;
}
.browse-btn:hover::after { transform: scaleX(1); }
.browse-btn:hover { color: var(--ink); }

#file-input { display: none; }

/* ══ FILE LIST ════════════════════════════════════════════════════════════ */
#file-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 160px;
  overflow-y: auto;
}
#file-list::-webkit-scrollbar { width: 3px; }
#file-list::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); }

.file-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
  opacity: 0;
  transform: translateY(10px);
}
.file-thumb {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 7px;
  color: var(--gold);
}
.file-info { flex: 1; min-width: 0; text-align: left; }
.file-name { font-size: 13px; font-weight: 300; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-size { font-family: var(--font-mono); font-size: 9px; color: rgba(245,240,232,0.3); margin-top: 3px; }
.progress-wrap { margin-top: 5px; height: 1px; background: rgba(201,168,76,0.12); }
.progress-bar  { height: 100%; background: var(--gold); width: 0; box-shadow: 0 0 6px rgba(201,168,76,0.5); }

.file-remove {
  background: none; border: none;
  color: rgba(245,240,232,0.2);
  cursor: pointer; font-size: 14px;
  flex-shrink: 0; padding: 4px;
  transition: color 0.2s;
}
.file-remove:hover { color: var(--rust); }

/* ══ FILTER PANEL ═════════════════════════════════════════════════════════ */
.filter-toggle {
  margin-top: 16px;
  background: none; border: none;
  color: rgba(245,240,232,0.35);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.filter-toggle:hover { color: var(--gold); }

.filter-toggle-icon { width: 14px; height: 14px; }
.filter-caret {
  width: 10px; height: 10px;
  margin-left: 4px;
  transition: transform 0.25s;
}
.filter-toggle.open .filter-caret { transform: rotate(180deg); }

.filter-panel {
  display: none;
  margin-top: 12px;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(201,168,76,0.02);
  padding: 20px 24px;
}
.filter-panel.visible { display: block; }

.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.filter-group-header + .channel-grid { margin-bottom: 20px; }
.filter-group-actions { display: flex; gap: 6px; }
.filter-group-btn {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  background: none;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2px 8px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.filter-group-btn:hover { color: rgba(201,168,76,0.9); border-color: rgba(201,168,76,0.5); }

.filter-section-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  margin-bottom: 12px;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 6px 12px;
  margin-bottom: 16px;
}
.channel-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  cursor: pointer;
  transition: color 0.2s;
}
.channel-label:hover { color: var(--parchment); }

.channel-cb {
  appearance: none;
  width: 12px; height: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.35);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.channel-cb:checked { background: var(--gold); border-color: var(--gold); }
.channel-cb:checked::after {
  content: '✓';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: var(--ink); line-height: 1;
}

.keyword-input {
  width: 100%;
  padding: 9px 14px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--parchment);
  font-family: var(--font-serif);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
}
.keyword-input::placeholder { color: rgba(245,240,232,0.2); }
.keyword-input:focus { border-color: rgba(201,168,76,0.5); }

/* ══ SUBMIT ═══════════════════════════════════════════════════════════════ */
.submit-wrap { margin-top: 24px; text-align: center; opacity: 0; }

.submit-btn {
  font-family: var(--font-deco);
  font-size: 10px;
  letter-spacing: 0.3em;
  padding: 16px 52px;
  border: none;
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 50%, #c9a84c 100%);
  background-size: 200%;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, background-position 0.5s;
}
.submit-btn:hover { box-shadow: 0 8px 40px rgba(201,168,76,0.3); background-position: 100%; }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.error-msg {
  margin-top: 12px;
  font-size: 12px;
  color: #e07a5f;
  font-family: var(--font-mono);
  text-align: center;
  display: none;
}

/* ══ ABOUT SECTION ════════════════════════════════════════════════════════ */
#about {
  position: relative;
  z-index: 10;
  padding: 120px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-rule {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 72px;
}
.section-rule::before,
.section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.28), transparent);
}
.section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* Cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(201,168,76,0.12);
}
.about-card {
  padding: 48px 36px;
  border-right: 1px solid rgba(201,168,76,0.12);
  background: rgba(201,168,76,0.018);
  opacity: 0;
  transform: translateY(24px);
  transition: background 0.3s;
}
.about-card:last-child { border-right: none; }
.about-card:hover { background: rgba(201,168,76,0.042); }

.card-glyph { width: 36px; height: 36px; margin-bottom: 28px; color: var(--gold); }
.card-glyph svg { width: 100%; height: 100%; }
.card-num { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.35em; color: rgba(201,168,76,0.4); margin-bottom: 16px; }
.card-title { font-size: 22px; font-weight: 300; letter-spacing: 0.07em; margin-bottom: 16px; line-height: 1.25; }
.card-body { font-size: 14px; line-height: 1.9; color: rgba(245,240,232,0.48); font-weight: 300; }

/* Feature list */
.about-features {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(201,168,76,0.1);
  opacity: 0;
  transform: translateX(-16px);
}
.feature-item:nth-child(even) { transform: translateX(16px); }

.feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}
.feature-text { font-size: 14px; line-height: 1.75; color: rgba(245,240,232,0.5); }
.feature-text strong {
  color: var(--parchment);
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

/* Stats */
.stat-strip {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(201,168,76,0.12);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.12);
  opacity: 0;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-deco); font-size: 28px; color: var(--gold); margin-bottom: 8px; }
.stat-label { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,240,232,0.28); }

/* ══ FOOTER ═══════════════════════════════════════════════════════════════ */
#footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 72px 48px 40px;
  background: rgba(6,5,3,0.65);
  backdrop-filter: blur(12px);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-logo { font-family: var(--font-deco); font-size: 13px; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 16px; }
.footer-tagline { font-style: italic; font-size: 14px; color: rgba(245,240,232,0.32); line-height: 1.75; max-width: 280px; }

.footer-col h4 { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 13px; color: rgba(245,240,232,0.38); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--parchment); }

.footer-lang-nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-lang-nav a { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; color: rgba(245,240,232,0.35); text-decoration: none; transition: color 0.2s; }
.footer-lang-nav a:hover,
.footer-lang-nav a.active { color: var(--gold); }

.footer-divider { height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.18), transparent); margin-bottom: 20px; }

.footer-github-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-github-link:hover { color: rgba(201,168,76,0.8); }
.footer-github-icon { width: 13px; height: 13px; }

.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-social-link:hover { color: rgba(201,168,76,0.8); }
.footer-social-icon { width: 14px; height: 14px; flex-shrink: 0; }

.footer-disclaimer {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(245,240,232,0.18);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,240,232,0.18); }
.footer-note { font-family: var(--font-mono); font-size: 8px; color: rgba(245,240,232,0.14); }

/* ══ KO-FI WIDGET ═════════════════════════════════════════════════════════ */
#kofi-widget-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 900; }

/* ══ OVERLAYS ═════════════════════════════════════════════════════════════ */
#success-overlay {
  position: fixed; inset: 0; z-index: 5000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(10,8,4,0.96);
  opacity: 0; pointer-events: none;
}
#success-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: 1px solid rgba(201,168,76,0.25); cursor: pointer;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(201,168,76,0.5); padding: 8px 16px;
  transition: color 0.2s, border-color 0.2s;
}
#success-close:hover { color: var(--gold); border-color: rgba(201,168,76,0.7); }
.success-glyph { width: 80px; height: 80px; margin-bottom: 32px; }
.success-text { font-family: var(--font-deco); font-size: 20px; letter-spacing: 0.22em; color: var(--gold); opacity: 0; transform: translateY(18px); }
.success-sub  { font-style: italic; color: rgba(245,240,232,0.35); margin-top: 12px; font-size: 14px; letter-spacing: 0.05em; opacity: 0; transform: translateY(18px); }
.success-kofi { margin-top: 36px; text-align: center; opacity: 0; transform: translateY(18px); }
.success-kofi-msg  { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; color: rgba(245,240,232,0.45); margin-bottom: 10px; }
.success-kofi-link {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  color: var(--gold); text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: rgba(201,168,76,0.45);
  transition: text-decoration-color 0.2s, color 0.2s;
}
.success-kofi-link:hover { color: #e8c96a; text-decoration-color: rgba(232,201,106,0.9); }

#loading-overlay {
  position: fixed; inset: 0; z-index: 4000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(10,8,4,0.88);
  opacity: 0; pointer-events: none;
  backdrop-filter: blur(4px);
}
.loading-ring {
  width: 60px; height: 60px;
  border: 1px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-text { margin-top: 20px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.4em; color: rgba(245,240,232,0.4); text-transform: uppercase; }
.loading-progress-wrap { width: 200px; height: 1px; background: rgba(201,168,76,0.12); margin-top: 22px; opacity: 0; transition: opacity 0.4s; }
.loading-progress-wrap.active { opacity: 1; }
.loading-progress-bar { height: 100%; background: var(--gold); width: 0; box-shadow: 0 0 6px rgba(201,168,76,0.5); transition: width 0.35s ease; }
.loading-count { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.3em; color: rgba(245,240,232,0.25); margin-top: 14px; }

/* Particle */
.particle { position: fixed; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 5; opacity: 0; }

/* ══ RESPONSIVE ═══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  #nav { padding: 18px 24px; }
  .nav-links > a { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { border-right: none !important; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .about-features { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  #about { padding: 80px 24px; }
  #footer { padding: 56px 24px 32px; }
  .channel-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .lang-banner { padding: 10px 20px; font-size: 12px; }
}

@media (max-width: 480px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .footer-top { grid-template-columns: 1fr; }
}
