/* ======================================
   TOP WAR ADS REVIEW — Premium Style
   topwarads.online
   Dark Military War Theme
====================================== */

/* ---------- TOKENS ---------- */
:root {
  --bg-darkest:   #0a0b0d;
  --bg-dark:      #111318;
  --bg-card:      #161a21;
  --bg-card-hover:#1e242f;
  --border:       #252b38;
  --border-glow:  #c0392b55;

  --red:          #c0392b;
  --red-bright:   #e74c3c;
  --orange:       #e67e22;
  --gold:         #f39c12;
  --text-primary: #eaedf2;
  --text-muted:   #8892a4;
  --text-dim:     #555e72;

  --font-display: 'Orbitron', sans-serif;
  --font-body:    'Rajdhani', sans-serif;
  --font-ui:      'Inter', sans-serif;

  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.6);
  --shadow-card:  0 2px 16px rgba(0,0,0,0.5);
  --transition:   0.25s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--red-bright); text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ---------- TYPOGRAPHY ---------- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;900&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@400;500&display=swap');

h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; }

/* ---------- UTILITY ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(192,57,43,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: 0 0 30px rgba(231,76,60,0.6);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red-bright);
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
}
.btn-subscribe {
  background: #ff0000;
  color: #fff;
  font-size: 0.85rem;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 2px 12px rgba(255,0,0,0.4);
}
.btn-subscribe:hover {
  background: #cc0000;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,0,0,0.6);
}

/* ---------- BADGE ---------- */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-red    { background: var(--red); color: #fff; }
.badge-orange { background: var(--orange); color: #fff; }
.badge-gold   { background: var(--gold); color: #000; }

/* ---------- NAV ---------- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,11,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.1;
}
.nav-logo-text span { color: var(--red-bright); }
.nav-logo-sub { font-family: var(--font-ui); font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.1em; font-weight: 400; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-search-wrap {
  position: relative;
}
#nav-search {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  padding: 8px 16px 8px 36px;
  width: 200px;
  transition: all var(--transition);
  outline: none;
}
#nav-search:focus {
  border-color: var(--red);
  width: 260px;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.2);
}
.nav-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 14px;
  pointer-events: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- MOBILE NAV ---------- */
#mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,11,13,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
#mobile-menu a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
#mobile-search {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  padding: 10px 16px;
  outline: none;
  width: 100%;
  margin-bottom: 8px;
}
#mobile-search:focus { border-color: var(--red); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192,57,43,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(230,126,34,0.1) 0%, transparent 50%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 20px;
  padding: 4px 14px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--red-bright); }
.hero p {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red-bright);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ---------- AD PLACEHOLDER ---------- */
.ad-slot {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ad-slot-banner { width: 100%; height: 90px; margin: 20px 0; }
.ad-slot-rect { width: 300px; height: 250px; }
.ad-slot-leaderboard { width: 100%; height: 100px; }

/* ---------- SECTION HEADER ---------- */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 70%;
  background: linear-gradient(to bottom, var(--red), var(--orange));
  border-radius: 2px;
}
.section-count {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ---------- CATEGORY FILTER ---------- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 16px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--red); color: var(--text-primary); }
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 12px rgba(192,57,43,0.4);
}

/* ---------- VIDEO GRID ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ---------- VIDEO CARD ---------- */
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.video-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(192,57,43,0.25);
  background: var(--bg-card-hover);
}
.card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-darkest);
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .card-thumb img { transform: scale(1.05); }
.card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.video-card:hover .card-play { background: rgba(0,0,0,0.35); }
.card-play-btn {
  width: 48px; height: 48px;
  background: rgba(192,57,43,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(192,57,43,0.6);
}
.video-card:hover .card-play-btn {
  opacity: 1;
  transform: scale(1);
}
.card-play-btn svg { width: 18px; height: 18px; fill: #fff; margin-left: 3px; }
.card-num {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
}
.card-cat-tag {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(192,57,43,0.85);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-body {
  padding: 14px 16px 16px;
}
.card-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.card-category {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--red-bright);
  font-weight: 500;
}
.card-watch {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- LOAD MORE ---------- */
.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0 20px;
}

/* ---------- SEARCH RESULTS BANNER ---------- */
#search-banner {
  display: none;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 20px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-muted);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#search-banner.visible { display: flex; }
#clear-search {
  background: none;
  border: none;
  color: var(--red-bright);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  text-decoration: underline;
}

/* ---------- SUBSCRIBE SECTION ---------- */
.subscribe-section {
  background: linear-gradient(135deg, #1a0d0d 0%, #150c14 50%, #0d0d1a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.subscribe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.12) 0%, transparent 70%);
}
.subscribe-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.subscribe-icon {
  width: 80px; height: 80px;
  background: #ff0000;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  box-shadow: 0 0 40px rgba(255,0,0,0.4);
}
.subscribe-text h2 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 8px;
}
.subscribe-text p {
  font-family: var(--font-ui);
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 440px;
  line-height: 1.7;
}
.subscribe-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ---------- SECTION PADDING ---------- */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-dark); }

/* ---------- VIDEO PAGE ---------- */
.video-page-hero {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 32px 0 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--red-bright); }
.breadcrumb-sep { color: var(--text-dim); }
.video-page-title {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
.video-page-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  padding: 32px 0 60px;
}
.video-main {}
.video-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}
.video-desc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.video-desc-card h3 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.video-desc-card p {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  white-space: pre-line;
}
.video-desc-card p strong {
  color: var(--text-primary);
}
.keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.kw-tag {
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.3);
  color: var(--red-bright);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 3px;
}
.share-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 20px;
}
.share-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  color: #fff;
}
.share-btn-fb   { background: #1877f2; }
.share-btn-tw   { background: #1da1f2; }
.share-btn-wa   { background: #25d366; }
.share-btn-copy { background: var(--bg-card-hover); border: 1px solid var(--border); color: var(--text-muted); }
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.sidebar-related h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-left: 12px;
  position: relative;
}
.sidebar-related h3::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 100%;
  background: var(--red);
  border-radius: 2px;
}
.related-video {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}
.related-video:last-child { border-bottom: none; }
.related-video:hover .related-title { color: var(--red-bright); }
.related-thumb {
  width: 100px;
  flex-shrink: 0;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-darkest);
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-info { flex: 1; }
.related-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}
.related-cat {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--red-bright);
}
.back-btn-wrap {
  margin-bottom: 24px;
}

/* ---------- STATIC PAGES ---------- */
.static-hero {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}
.static-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}
.static-hero p {
  font-family: var(--font-ui);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.static-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.static-content h2 {
  font-size: 1.1rem;
  margin: 32px 0 12px;
  color: var(--red-bright);
  letter-spacing: 0.04em;
}
.static-content h2:first-child { margin-top: 0; }
.static-content p {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.static-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}
.static-content ul li {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.7;
}
.static-content a { color: var(--red-bright); }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none;
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #2ecc71;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  margin-top: 16px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand {}
.footer-brand p {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 12px 0 20px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--red-bright); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--red-bright); }

/* ---------- NO RESULTS ---------- */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}
.no-results p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 12px;
}
.no-results .icon { font-size: 48px; margin-bottom: 16px; }

/* ---------- ABOUT TEAM ---------- */
.about-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-card h3 {
  font-size: 0.88rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.feature-card p {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- TOAST ---------- */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-primary);
  box-shadow: var(--shadow);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .video-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ad-slot-rect { width: 100%; }
}

/* ── TABLET ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #nav-search { display: none; }
  .nav-logo-text { font-size: 0.75rem; }
  .nav-logo-sub { display: none; }
  .nav-inner { height: 56px; }

  /* Hero */
  .hero { padding: 36px 0 32px; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.88rem; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .stat-num { font-size: 1.4rem; }
  .hero-eyebrow { font-size: 0.6rem; }

  /* Grid */
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Subscribe */
  .subscribe-section { padding: 40px 0; }
  .subscribe-inner { flex-direction: column; text-align: center; gap: 20px; }
  .subscribe-icon { width: 60px; height: 60px; font-size: 30px; }
  .subscribe-text h2 { font-size: 1.2rem; }
  .subscribe-actions { justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  footer { padding: 40px 0 0; }

  /* Section */
  .section { padding: 32px 0; }

  /* Video page */
  .video-sidebar { order: -1; position: static; }
  .video-layout { gap: 16px; padding: 20px 0 40px; }
  .video-page-title { font-size: 1.1rem; }
  .share-btns { flex-wrap: wrap; }
  .share-btn { font-size: 0.7rem; padding: 7px 10px; }

  /* Static pages */
  .static-hero { padding: 32px 0 24px; }
  .static-hero h1 { font-size: 1.5rem; }
  .static-content { padding: 32px 16px 60px; }
  .contact-form { padding: 20px; }
  .about-feature { grid-template-columns: 1fr 1fr; }

  /* Filter bar */
  .filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .filter-bar::-webkit-scrollbar { height: 3px; }
  .filter-bar::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }

  /* Section header */
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Ad slots */
  .ad-slot-banner { height: 60px; }
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  /* Container padding */
  .container { padding: 0 14px; }

  /* Hero */
  .hero { padding: 28px 0 28px; }
  .hero h1 { font-size: 1.35rem; letter-spacing: 0; }
  .hero p { font-size: 0.82rem; margin-bottom: 18px; }
  .hero-stats { gap: 12px; }
  .stat-num { font-size: 1.2rem; }
  .stat-label { font-size: 0.62rem; }
  .btn { font-size: 0.72rem; padding: 9px 16px; }
  .btn-subscribe { font-size: 0.75rem; padding: 10px 16px; }

  /* Video grid — 2 columns on most phones */
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-title { font-size: 0.78rem; }
  .card-body { padding: 10px 12px 12px; }
  .card-num { font-size: 0.58rem; padding: 2px 6px; }
  .card-cat-tag { font-size: 0.5rem; padding: 2px 6px; max-width: 90px; }

  /* Filter */
  .filter-btn { font-size: 0.68rem; padding: 5px 10px; }

  /* Video page */
  .video-page-title { font-size: 1rem; }
  .video-embed-wrap { border-radius: var(--radius); }
  .video-desc-card { padding: 16px; }
  .video-desc-card p { font-size: 0.82rem; }
  .related-thumb { width: 80px; }
  .related-title { font-size: 0.72rem; }

  /* Subscribe */
  .subscribe-text h2 { font-size: 1.1rem; }
  .subscribe-text p { font-size: 0.82rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.7rem; }

  /* About features */
  .about-feature { grid-template-columns: 1fr; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-brand p { max-width: 100%; }

  /* Navbar */
  .nav-inner { height: 52px; padding: 0 14px; }
  .nav-logo-icon { width: 30px; height: 30px; font-size: 15px; }

  /* Mobile menu */
  #mobile-menu { top: 52px; }
}

/* ── SMALL PHONE ── */
@media (max-width: 360px) {
  .video-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.2rem; }
  .hero-stats { gap: 10px; }
}

/* ── TOUCH DEVICES — larger tap targets ── */
@media (hover: none) and (pointer: coarse) {
  .video-card { cursor: pointer; }
  .filter-btn { min-height: 36px; }
  .btn { min-height: 40px; }
  .share-btn { min-height: 38px; }
  .nav-links a { padding: 8px 14px; }
  .related-video { padding: 12px 0; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-eyebrow::before { animation: none; }
}
