/* =============================================
   NO FILTER AMERICA – DARK PATRIOT THEME
   Navy · Gold · Bold
   ============================================= */

:root {
  --navy: #0a1628;
  --navy-mid: #0d1f3c;
  --navy-light: #152a4e;
  --gold: #c9a84c;
  --gold-light: #f0c96a;
  --gold-dark: #a07830;
  --red: #cc2200;
  --white: #ffffff;
  --off-white: #f4f1ea;
  --gray: #8899aa;
  --card-bg: #111d33;
  --border: rgba(201,168,76,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ======== TICKER ======== */
.ticker-wrap, .ticker-wrap * {
  color: #ffffff !important;
}
.ticker-wrap {
  background: #cc0000;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 38px;
  position: relative;
  z-index: 100;
}
.ticker-label {
  background: #8b0000;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 12px;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.ticker-content {
  overflow: hidden;
  flex: 1;
  padding: 0 12px;
  position: relative;
}
.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: none !important;
  -webkit-animation: none !important;
}
.ticker-track:hover { animation-play-state: paused; }
#ticker-text,
#ticker-text-dupe {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-right: 100px;
  color: #ffffff !important;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@-webkit-keyframes ticker-scroll {
  0%   { -webkit-transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); }
}

/* ======== NAVBAR ======== */
.navbar {
  background: rgba(10,22,40,0.97);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.4));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.admin-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}
.admin-btn:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 14px 24px;
  color: var(--off-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(135deg, #050d1a 0%, #0a1628 40%, #0d1f3c 70%, #08122a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.hero-left { flex: 1; }
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-weight: 700;
  border-radius: 2px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero-title .gold { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.hero-socials { display: flex; gap: 14px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid;
}
.social-btn.tiktok {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.social-btn.tiktok:hover {
  background: var(--white);
  color: var(--navy);
}
.social-btn.youtube {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
}
.social-btn.youtube:hover { background: #cc0000; border-color: #cc0000; }

/* Liam */
.hero-right { flex: 0 0 420px; position: relative; }
.liam-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.liam-img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  filter: drop-shadow(0 20px 60px rgba(201,168,76,0.3)) drop-shadow(0 0 80px rgba(10,22,40,0.8));
  position: relative;
  z-index: 2;
}
.liam-badge {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 4px;
  margin-top: -8px;
  z-index: 3;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.liam-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 4px;
}
.liam-title {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-top: 2px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}
.scroll-indicator i { display: block; margin-top: 6px; font-size: 16px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ======== NEWS SECTION ======== */
.news-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 30px;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 4px;
  white-space: nowrap;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
}
.news-card.skeleton {
  height: 280px;
  background: linear-gradient(90deg, var(--card-bg) 25%, var(--navy-light) 50%, var(--card-bg) 75%);
  background-size: 400% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-body { padding: 20px; }
.card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 10px;
}
.card-meta {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.5px;
}
.load-more-wrap { text-align: center; margin-top: 50px; }
.load-more-btn {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 14px 48px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}
.load-more-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ======== PLATFORM SECTION ======== */
.platform-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 30px;
}
.platform-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
}
.platform-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
  transform: translateY(-3px);
}
.platform-icon { font-size: 2rem; color: var(--gold); }
.platform-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
}
.platform-card p { color: var(--gray); font-size: 14px; line-height: 1.6; }
.platform-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: gap 0.3s;
}
.platform-link:hover { gap: 14px; }

/* ======== FOOTER ======== */
.footer {
  background: #060e1a;
  border-top: 2px solid var(--gold);
  padding: 60px 30px 0;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo p {
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 12px;
}
.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4, .footer-social h4 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 8px;
  font-weight: 700;
}
.footer-links a, .footer-social a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 20px;
  color: var(--gray);
  font-size: 12px;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ======== VIDEO PAGES ======== */
.page-hero {
  background: linear-gradient(135deg, #050d1a, #0d1f3c);
  padding: 100px 30px 60px;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--gray); font-size: 1rem; letter-spacing: 1px; }

.video-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 30px;
}
.video-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.video-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-slot {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}
.video-slot:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
}
.video-slot video {
  width: 100%;
  display: block;
  background: #000;
}
.video-slot .video-info {
  padding: 16px 20px;
}
.video-slot .video-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.video-slot .video-date {
  font-size: 11px;
  color: var(--gray);
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  gap: 10px;
}
.video-placeholder i { font-size: 2.5rem; color: var(--border); }

/* ======== CONTACT PAGE ======== */
.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 30px;
}
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
}
.form-group textarea { min-height: 160px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.submit-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  width: 100%;
}
.submit-btn:hover { background: var(--gold-light); }
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-card i { font-size: 1.5rem; color: var(--gold); }
.contact-card span { font-size: 13px; color: var(--gray); }
.contact-card strong { display: block; color: var(--white); font-size: 14px; margin-top: 2px; }

/* ======== ADMIN PANEL ======== */
.admin-login {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.admin-login-card {
  background: var(--card-bg);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.admin-login-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.admin-login-card p { color: var(--gray); font-size: 14px; margin-bottom: 30px; }
.admin-panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 30px;
}
.admin-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.admin-panel > p { color: var(--gray); margin-bottom: 40px; }
.admin-tabs { display: flex; gap: 4px; margin-bottom: 32px; border-bottom: 2px solid var(--border); }
.admin-tab {
  background: transparent;
  border: none;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s;
}
.admin-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.admin-tab:hover { color: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 24px;
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.upload-zone i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; display: block; }
.upload-zone p { color: var(--gray); font-size: 14px; margin-bottom: 8px; }
.upload-zone strong { color: var(--white); font-size: 13px; }
.upload-zone input[type="file"] { display: none; }
.admin-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}
.admin-card h3 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.video-list { display: flex; flex-direction: column; gap: 12px; }
.video-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 20px;
}
.video-item i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.video-item-info { flex: 1; }
.video-item-info strong { display: block; color: var(--white); font-size: 14px; }
.video-item-info span { color: var(--gray); font-size: 12px; }
.video-item .delete-btn {
  background: rgba(204,34,0,0.15);
  border: 1px solid rgba(204,34,0,0.4);
  color: #ff4444;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.video-item .delete-btn:hover { background: var(--red); color: #fff; }
.slot-select {
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 16px;
  width: 100%;
}
.success-msg {
  background: rgba(0,180,80,0.15);
  border: 1px solid rgba(0,180,80,0.4);
  color: #00cc55;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 13px;
  margin-top: 12px;
  display: none;
}
.progress-bar-wrap {
  height: 6px;
  background: var(--navy-light);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 12px;
  display: none;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 3px;
  transition: width 0.3s;
}

/* ======== SUCCESS / ERROR STATES ======== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: var(--red); color: var(--white); }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .news-grid, .platform-inner { grid-template-columns: repeat(2, 1fr); }
  .video-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-right { flex: 0 0 320px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { flex-direction: column; padding: 40px 20px; text-align: center; }
  .hero-overlay { display: none; }
  .hero-socials { justify-content: center; }
  .hero-right { flex: unset; width: 100%; }
  .liam-img { max-width: 280px; }
  .news-grid, .platform-inner, .video-grid-2, .video-grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-info, .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .admin-card { padding: 20px; }
}

.video-storyline { font-family:'Oswald',sans-serif; font-size:11px; font-weight:600; color:var(--gold); letter-spacing:1px; text-transform:uppercase; margin-top:4px; }
.video-desc { font-size:12px; color:rgba(255,255,255,0.55); line-height:1.5; margin-top:4px; border-top:1px solid rgba(255,255,255,0.08); padding-top:6px; }

/* ======== BOTH SIDES — card with image (both dem & rep) ======== */
.sides-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sides-card:hover { background: rgba(255,255,255,0.07); }
.sides-card-img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.sides-card-body { flex: 1; min-width: 0; }
.sides-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #eee;
  line-height: 1.3;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sides-card-meta { font-size: 11px; color: var(--gray); }

/* ======== NO FILTER ZONE — portrait 9:16 video slots ======== */
.nfz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nfz-slot {
  background: var(--card-bg, #0d1e35);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.nfz-slot:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.2);
  transform: translateY(-3px);
}
.nfz-media {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #060f1a;
  overflow: hidden;
  position: relative;
}
.nfz-media video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Thumbnail card style */
.nfz-thumb-link {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.3s;
}
.nfz-thumb-link:hover { filter: brightness(1.1); }
.nfz-thumb-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  color: #fff;
  text-align: center;
  min-height: 80px;
}
.nfz-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.25);
}
.nfz-empty i { font-size: 2.8rem; color: var(--gold); opacity: 0.35; }
.nfz-empty span { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.nfz-empty small { font-size: 11px; color: rgba(255,255,255,0.2); }
.nfz-info { padding: 14px 16px; }
.nfz-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white, #f0f0f0);
  margin-bottom: 4px;
}
.nfz-desc { font-size: 13px; color: var(--gray, #888); margin-bottom: 4px; }
.nfz-date { font-size: 11px; color: rgba(255,255,255,0.3); font-family: 'Oswald', sans-serif; letter-spacing: 1px; }

/* Responsive NFZ */
@media (max-width: 900px) { .nfz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .nfz-grid { grid-template-columns: 1fr; } }

/* ---- FOOTER LEGAL BLOCK ---- */
.footer-legal {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
  padding: 28px 24px 16px;
  border-top: 1px solid rgba(197,160,70,0.25);
}
.footer-copyright {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.footer-links-row {
  margin-bottom: 18px;
}
.footer-links-row a {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links-row a:hover {
  color: #ffffff;
}
.footer-divider {
  color: rgba(197,160,70,0.4);
  margin: 0 12px;
  font-size: 12px;
}
.footer-legal-text {
  font-size: 11px;
  color: #55667a;
  line-height: 1.7;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

/* ========================================
   NFA INVESTIGATIONS
   ======================================== */

/* Investigation Cards Grid */
.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 30px;
}

.inv-card {
  background: var(--card-bg, #0d1a2e);
  border: 1px solid var(--border, #1e3050);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.inv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.18);
  border-color: var(--gold);
}

.inv-card-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #0a0f1e, #1a0505);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.inv-card-thumb-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.inv-card-thumb-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.2);
}
.inv-card-thumb-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.4; }

.inv-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.inv-status-badge.active     { background: #cc2200; color: #fff; }
.inv-status-badge.developing { background: #d97706; color: #fff; }
.inv-status-badge.ongoing    { background: #1d4ed8; color: #fff; }
.inv-status-badge.archived   { background: #374151; color: #aaa; }
.inv-status-badge.updated    { background: var(--gold); color: #000; }

.inv-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inv-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.inv-card-summary {
  font-size: 13px;
  color: var(--gray, #888);
  line-height: 1.5;
  flex: 1;
}
.inv-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}
.inv-card-cta {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Full Investigation Case File Page */
.inv-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 30px 100px;
}

.inv-page-header {
  margin-bottom: 40px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 30px;
}
.inv-page-status {
  display: inline-block;
  margin-bottom: 16px;
}
.inv-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.inv-page-title span { color: var(--gold); }
.inv-page-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.inv-section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inv-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.25);
}

/* Key Findings Box */
.inv-findings {
  background: linear-gradient(135deg, #0a1628, #12202e);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.inv-finding-item {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.inv-finding-item:last-child { border-bottom: none; }
.inv-finding-num {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Story Content */
.inv-story-box {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 28px 32px;
  max-height: 520px;
  overflow-y: auto;
  margin-bottom: 40px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255,255,255,0.05);
}
.inv-story-box::-webkit-scrollbar { width: 6px; }
.inv-story-box::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 3px; }
.inv-story-box::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; opacity: 0.7; }
@media (max-width: 768px) {
  .inv-story-box { max-height: 400px; padding: 20px 18px; }
}
.inv-story-content {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  background: rgba(13, 26, 46, 0.7);
  border: 1px solid rgba(197, 160, 70, 0.25);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 28px 32px;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255,255,255,0.05);
}
.inv-story-content::-webkit-scrollbar { width: 6px; }
.inv-story-content::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 3px; }
.inv-story-content::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.inv-story-content p { margin-bottom: 16px; }
.inv-story-content h2, .inv-story-content h3 { color: var(--gold); font-family: 'Playfair Display', serif; margin: 24px 0 12px; }
.inv-story-content strong { color: #fff; }
.inv-story-content a { color: var(--gold); }

/* Timeline */
.inv-timeline {
  margin-bottom: 40px;
}
.inv-timeline-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.inv-timeline-date {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  min-width: 110px;
  padding-top: 2px;
}
.inv-timeline-event {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* Documents */
.inv-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.inv-doc-item {
  background: var(--card-bg, #0d1a2e);
  border: 1px solid var(--border, #1e3050);
  border-radius: 8px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: border-color 0.2s;
  text-align: center;
}
.inv-doc-item:hover { border-color: var(--gold); }
.inv-doc-item i { font-size: 2rem; }
.inv-doc-item .doc-name { font-size: 12px; color: rgba(255,255,255,0.7); word-break: break-all; }
.inv-doc-item .doc-type { font-size: 10px; font-family: 'Oswald', sans-serif; letter-spacing: 2px; color: var(--gold); }
.inv-doc-pdf  i { color: #e74c3c; }
.inv-doc-img  i { color: #3498db; }
.inv-doc-doc  i { color: #2980b9; }
.inv-doc-other i { color: var(--gold); }

/* TikTok References */
.inv-tiktok-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.inv-tiktok-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg, #0d1a2e);
  border: 1px solid var(--border, #1e3050);
  border-radius: 8px;
  padding: 14px 18px;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  transition: border-color 0.2s;
}
.inv-tiktok-item:hover { border-color: var(--gold); color: #fff; }
.inv-tiktok-item i { font-size: 1.4rem; color: #fff; }

/* Sources */
.inv-sources-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.inv-source-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card-bg, #0d1a2e);
  border: 1px solid var(--border, #1e3050);
  border-radius: 8px;
  padding: 14px 18px;
}
.inv-source-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}
.inv-source-primary   { background: #cc2200; color: #fff; }
.inv-source-govt      { background: #1d4ed8; color: #fff; }
.inv-source-news      { background: #374151; color: #ddd; }
.inv-source-social    { background: var(--gold); color: #000; }
.inv-source-unverified{ background: #4b1c1c; color: #f87171; }
.inv-source-text { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.inv-source-text a { color: var(--gold); }

/* Back button */
.inv-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s;
}
.inv-back-btn:hover { background: rgba(201,168,76,0.08); }

/* Empty state */
.inv-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 30px;
  color: var(--gray);
}
.inv-empty i { font-size: 3.5rem; color: var(--gold); opacity: 0.35; display: block; margin-bottom: 20px; }
.inv-empty h3 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; letter-spacing: 2px; color: rgba(255,255,255,0.4); }

/* Responsive */
@media (max-width: 900px) { .inv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .inv-grid { grid-template-columns: 1fr; } .inv-page { padding: 40px 16px 60px; } }
