/* ===================== VAULTX.CSS — MASTER DESIGN SYSTEM v2 ===================== */
/* UFO | EPSTEIN | BITCOIN | WAR | LEAKS | TRENDING — VAULTX.IN                    */

/* ---- IMPORTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700&family=Bebas+Neue&family=IBM+Plex+Mono:wght@400;600&family=Share+Tech+Mono&display=swap');

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

/* ---- SCANLINE OVERLAY ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
}

/* ---- GLOW UTILITY ---- */
.glow-green { box-shadow: 0 0 20px rgba(0,255,136,0.3), 0 0 60px rgba(0,255,136,0.1); }
.glow-red   { box-shadow: 0 0 20px rgba(255,34,68,0.3); }
.glow-amber { box-shadow: 0 0 20px rgba(255,183,0,0.3); }
.glow-blue  { box-shadow: 0 0 20px rgba(0,136,255,0.3); }
.text-glow-green { text-shadow: 0 0 20px rgba(0,255,136,0.6); }

/* ---- CSS VARIABLES ---- */
:root {
  --bg:        #080c0f;
  --bg2:       #0d1117;
  --card:      #111820;
  --border:    rgba(255,255,255,0.08);
  --text:      #e8eaf0;
  --muted:     #607080;
  --green:     #00ff88;
  --red:       #ff2244;
  --amber:     #ffb700;
  --blue:      #0088ff;
  --purple:    #8844ff;
  --btc:       #f7931a;

  --font-display: 'Bebas Neue', sans-serif;
  --font-header:  'Barlow Condensed', sans-serif;
  --font-badge:   'IBM Plex Mono', monospace;
  --font-body:    'Share Tech Mono', monospace;

  --header-h:     60px;
  --transition:   0.2s ease;
  --radius:       4px;
  --shadow:       0 4px 30px rgba(0,0,0,0.5);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 15px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; }

/* ---- PRELOADER ---- */
#preloader {
  position: fixed; inset: 0; background: #050809; z-index: 99999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', 'Share Tech Mono', monospace;
  color: #00ff88; gap: 0.5rem;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,255,136,0.015) 2px, rgba(0,255,136,0.015) 4px);
}
#preloader-text {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.5rem; min-width: 320px; max-width: 90vw;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
}
#preloader-text div {
  color: #00ff88; letter-spacing: 1px;
  padding-left: 0; white-space: nowrap;
}
#preloader-text div::before { content: ''; }
#preloader-bar {
  width: clamp(280px, 40vw, 400px); height: 2px;
  background: rgba(0,255,136,0.12); position: relative; overflow: hidden; margin-top: 2rem;
}
#preloader-bar::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  animation: loaderBar 1.4s ease-in-out infinite;
}
@keyframes loaderBar { 0%{left:-100%} 100%{left:100%} }

/* ---- HEADER ---- */
header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  background: rgba(8,12,15,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); z-index: 1000;
  display: flex; align-items: center; padding: 0 2rem; gap: 2rem;
}
.logo {
  font-family: var(--font-display); font-size: 2rem; letter-spacing: 3px; white-space: nowrap;
}
.logo span { color: var(--green); }
header nav ul { display: flex; gap: 0.25rem; }
header nav a {
  font-family: var(--font-badge); font-size: 0.7rem; padding: 0.5rem 0.75rem;
  border-radius: var(--radius); transition: var(--transition); white-space: nowrap;
}
header nav a:hover, header nav a.active { background: rgba(0,255,136,0.1); color: var(--green); }
.nav-live { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.live-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-badge); font-size: 0.65rem;
  color: var(--red); border: 1px solid var(--red); padding: 0.2rem 0.6rem;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
  animation: pulse 1.2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none; flex-direction: column; gap: 4px; background: none; border: none;
  padding: 4px; width: 32px;
}
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(8,12,15,0.98); backdrop-filter: blur(20px);
  z-index: 1100; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 3px; }

/* ---- TICKER ---- */
.ticker-wrap {
  background: rgba(0,255,136,0.04); border-bottom: 1px solid rgba(0,255,136,0.15);
  height: 36px; overflow: hidden; display: flex; align-items: center; position: relative;
}
.ticker-label {
  font-family: var(--font-badge); font-size: 0.65rem; color: var(--red);
  background: var(--red); color: #fff; padding: 0 0.75rem; height: 100%;
  display: flex; align-items: center; white-space: nowrap; z-index: 1;
  flex-shrink: 0;
}
.ticker-track {
  display: flex; gap: 4rem; animation: scrollTicker 60s linear infinite;
  white-space: nowrap; font-family: var(--font-badge); font-size: 0.75rem; color: var(--text);
}
.ticker-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.ticker-item::before { content: '▸'; color: var(--green); }
@keyframes scrollTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.25);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,255,136,0.08) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.95) 100%);
}
#threejs-canvas { position: absolute; inset: 0; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 4rem 2rem;
}
.hero-eyebrow { font-family: var(--font-badge); font-size: 0.75rem; color: var(--green); margin-bottom: 1rem; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9; letter-spacing: 2px; margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff 60%, var(--green));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-family: var(--font-badge); font-size: 1rem; color: var(--muted); margin-bottom: 2rem; min-height: 1.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Glitch effect */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; inset: 0;
  background: linear-gradient(90deg, #fff 60%, var(--green));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.glitch::before { left: 2px; text-shadow: -1px 0 var(--red); animation: glitch1 3s infinite; }
.glitch::after  { left: -2px; text-shadow: 1px 0 var(--blue); animation: glitch2 3s infinite; }
@keyframes glitch1 { 0%,90%,100%{clip:rect(0,9999px,0,0);opacity:0} 91%{clip:rect(20px,9999px,40px,0);opacity:1} 95%{clip:rect(60px,9999px,80px,0)} }
@keyframes glitch2 { 0%,92%,100%{clip:rect(0,9999px,0,0);opacity:0} 93%{clip:rect(40px,9999px,60px,0);opacity:1} 97%{clip:rect(0px,9999px,20px,0)} }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.stats-inner { display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--green); display: block; }
.stat-label { font-family: var(--font-badge); font-size: 0.65rem; color: var(--muted); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-badge); font-size: 0.8rem; padding: 0.75rem 1.5rem;
  border: 1px solid; cursor: pointer; transition: var(--transition);
  letter-spacing: 1px;
}
.btn-green  { background: rgba(0,255,136,0.1); color: var(--green); border-color: var(--green); }
.btn-green:hover  { background: var(--green); color: var(--bg); }
.btn-amber  { background: rgba(255,183,0,0.1); color: var(--amber); border-color: var(--amber); }
.btn-amber:hover  { background: var(--amber); color: var(--bg); }
.btn-red    { background: rgba(255,34,68,0.1); color: var(--red); border-color: var(--red); }
.btn-red:hover    { background: var(--red); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- SECTION ---- */
.section-pad { padding: 5rem 2rem; }
.section-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.5rem); letter-spacing: 2px; margin-bottom: 0.25rem; }
.section-sub { font-family: var(--font-badge); font-size: 0.75rem; color: var(--muted); }

/* ---- PAGE HERO ---- */
.page-hero { position: relative; min-height: 50vh; display: flex; align-items: center; overflow: hidden; }
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.2);
}
.page-hero-content { position: relative; z-index: 1; padding: 6rem 0 4rem; }
.page-tag { font-family: var(--font-badge); font-size: 0.7rem; margin-bottom: 1rem; }
.page-title { font-family: var(--font-display); font-size: clamp(3rem,7vw,6rem); letter-spacing: 3px; }
.page-sub { font-family: var(--font-badge); color: var(--muted); max-width: 700px; margin-top: 1rem; font-size: 0.85rem; }

/* ---- TOPIC GRID ---- */
.topic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.topic-card {
  background: var(--card); border: 1px solid var(--border); padding: 2.5rem 2rem;
  display: block; transition: var(--transition); transform-style: preserve-3d;
  position: relative; overflow: hidden;
}
.topic-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transition: transform 0.3s;
}
.topic-card:hover::before { transform: scaleX(1); }
.topic-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-4px); }
.topic-card[data-topic="bitcoin"]::before { background: var(--btc); }
.topic-card[data-topic="war"]::before { background: var(--red); }
.topic-card[data-topic="epstein"]::before { background: var(--amber); }
.topic-card[data-topic="leaks"]::before { background: var(--purple); }
.topic-card[data-topic="trending"]::before { background: var(--blue); }
.topic-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.topic-name { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.topic-count { font-family: var(--font-badge); font-size: 0.7rem; color: var(--green); }

/* ---- CARD GRID ---- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--card); border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.card:hover { border-color: rgba(0,255,136,0.2); transform: translateY(-2px); box-shadow: var(--shadow); }
.card-img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-badge { font-family: var(--font-badge); font-size: 0.6rem; border: 1px solid; padding: 0.15rem 0.4rem; margin-bottom: 0.75rem; display: inline-block; }
.card-title { font-family: var(--font-header); font-weight: 700; font-size: 1.1rem; line-height: 1.3; margin-bottom: 0.5rem; }
.card-meta { display: flex; gap: 0.75rem; font-family: var(--font-badge); font-size: 0.6rem; color: var(--muted); margin-bottom: 0.75rem; flex-wrap: wrap; }
.card-desc { color: var(--muted); font-size: 0.8rem; flex: 1; }
.card-read {
  font-family: var(--font-badge); font-size: 0.7rem; color: var(--green);
  display: inline-flex; align-items: center; margin-top: 1rem;
  border-bottom: 1px solid transparent; transition: var(--transition);
}
.card-read:hover { border-bottom-color: var(--green); }

/* Skeleton */
.skeleton { background: linear-gradient(90deg, var(--bg2) 25%, rgba(255,255,255,0.03) 50%, var(--bg2) 75%); background-size: 400% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0%{background-position:100% 0} 100%{background-position:-100% 0} }
.skeleton-card { height: 280px; border-radius: var(--radius); }
.error-card { background: rgba(255,34,68,0.05); border: 1px solid rgba(255,34,68,0.2); padding: 3rem 2rem; text-align: center; font-family: var(--font-badge); font-size: 0.75rem; color: var(--red); }

/* ---- DOCUMENT CARDS ---- */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.doc-card { background: var(--card); border: 1px solid rgba(0,255,136,0.2); padding: 1.5rem; position: relative; }
.doc-stamp { font-family: var(--font-badge); font-size: 0.65rem; color: var(--green); border: 1px solid var(--green); display: inline-block; padding: 0.2rem 0.5rem; margin-bottom: 1rem; }
.doc-title { font-family: var(--font-header); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.doc-meta { font-family: var(--font-badge); font-size: 0.65rem; color: var(--muted); margin-bottom: 0.75rem; }

/* ---- WHISTLEBLOWER CARDS ---- */
.wb-card { background: var(--card); border: 1px solid var(--border); padding: 2rem; display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.wb-photo { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; border: 2px solid var(--green); flex-shrink: 0; background: var(--bg2); }
.wb-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 2px; }
.wb-role { font-family: var(--font-badge); font-size: 0.65rem; color: var(--muted); margin-bottom: 0.75rem; }
.wb-quote { font-family: var(--font-badge); font-size: 0.8rem; color: var(--text); border-left: 2px solid var(--green); padding-left: 1rem; margin: 0.5rem 0; font-style: italic; }

/* ---- VERTICAL TIMELINE ---- */
.v-timeline { position: relative; }
.v-timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.tl-item { display: flex; gap: 2rem; padding-left: 3rem; margin-bottom: 2.5rem; position: relative; }
.tl-dot { position: absolute; left: 14px; top: 0.35rem; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--green); background: var(--bg); }
.tl-content { flex: 1; }
.tl-year { font-family: var(--font-display); font-size: 1.5rem; color: var(--green); display: block; }
.tl-event { font-family: var(--font-header); font-weight: 700; font-size: 1.1rem; margin: 0.25rem 0; }
.tl-source { font-family: var(--font-badge); font-size: 0.7rem; color: var(--muted); }

/* ---- BADGES ---- */
.badge { font-family: var(--font-badge); font-size: 0.65rem; border: 1px solid; padding: 0.2rem 0.5rem; display: inline-block; }
.badge-active { color: var(--red); border-color: var(--red); }
.badge-amber { color: var(--amber); border-color: var(--amber); }
.badge-red { color: var(--red); border-color: var(--red); }

/* ---- DECLASSIFY ---- */
.redacted { background: var(--text); color: var(--text); cursor: pointer; padding: 0 0.25rem; transition: var(--transition); }
.redacted.revealed { background: transparent; color: var(--red); }
.declassify-btn { font-family: var(--font-badge); font-size: 0.75rem; color: var(--green); border: 1px solid var(--green); background: none; padding: 0.5rem 1rem; cursor: pointer; transition: var(--transition); }
.declassify-btn:hover { background: rgba(0,255,136,0.1); }

/* ---- TABS ---- */
.tab-nav { display: flex; gap: 0.25rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn { font-family: var(--font-badge); font-size: 0.7rem; background: none; border: none; color: var(--muted); padding: 0.75rem 1.25rem; cursor: pointer; border-bottom: 2px solid transparent; transition: var(--transition); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ---- SWIPER SECTION ---- */
.swiper-section { margin-bottom: 4rem; }
.topic-swiper { overflow: hidden; }
.swiper-slide { width: 300px !important; }
.swiper-pagination-bullet { background: var(--muted); }
.swiper-pagination-bullet-active { background: var(--green); }

/* ---- QUIZ ---- */
.quiz-container { max-width: 700px; margin: 0 auto; }
.quiz-progress { height: 3px; background: var(--border); margin-bottom: 2rem; }
.quiz-progress-fill { height: 100%; background: var(--green); transition: width 0.5s ease; }
.quiz-q { font-family: var(--font-header); font-weight: 700; font-size: 1.4rem; margin-bottom: 2rem; }
.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-opt {
  font-family: var(--font-badge); font-size: 0.8rem; background: var(--card);
  border: 1px solid var(--border); color: var(--text); padding: 1rem 1.5rem;
  text-align: left; cursor: pointer; transition: var(--transition);
}
.quiz-opt:hover:not(:disabled) { border-color: var(--green); color: var(--green); }
.quiz-opt.correct { border-color: var(--green); background: rgba(0,255,136,0.1); color: var(--green); }
.quiz-opt.wrong { border-color: var(--red); background: rgba(255,34,68,0.1); color: var(--red); }
.quiz-score { text-align: center; padding: 3rem; }

/* ---- PRICE DISPLAY ---- */
.price-item { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.price-sym { font-family: var(--font-badge); font-size: 0.75rem; }
.price-val { font-family: var(--font-display); font-size: 1.2rem; color: var(--text); }
.price-change { font-family: var(--font-badge); font-size: 0.7rem; }
.price-change.pos { color: var(--green); }
.price-change.neg { color: var(--red); }

/* ---- SHARE SIDEBAR ---- */
.share-sidebar {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 0; z-index: 500;
}
.share-btn {
  background: var(--bg2); border: 1px solid var(--border); color: var(--muted);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.share-btn:hover { background: rgba(0,255,136,0.1); color: var(--green); border-color: var(--green); }

/* ---- ADS ---- */
.ad-slot { display: flex; justify-content: center; align-items: center; padding: 1rem; overflow: hidden; }

/* ---- DISCLAIMER ---- */
.disclaimer {
  background: rgba(255,34,68,0.05); border: 1px solid rgba(255,34,68,0.15);
  padding: 1rem 1.5rem; font-family: var(--font-badge); font-size: 0.7rem;
  color: var(--muted); line-height: 1.5;
}

/* ---- FOOTER ---- */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 2rem; letter-spacing: 4px; color: var(--green); }
.footer-desc { font-family: var(--font-badge); font-size: 0.75rem; color: var(--muted); margin-top: 1rem; line-height: 1.6; }
.footer-heading { font-family: var(--font-badge); font-size: 0.65rem; color: var(--muted); letter-spacing: 2px; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-family: var(--font-badge); font-size: 0.75rem; color: var(--muted); transition: var(--transition); }
.footer-links a:hover { color: var(--green); }
.footer-bottom { text-align: center; font-family: var(--font-badge); font-size: 0.7rem; color: var(--muted); margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  header nav { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .topic-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .share-sidebar { display: none; }
  .stats-inner { gap: 2rem; }
}
@media (max-width: 600px) {
  header { padding: 0 1rem; }
  .section-pad { padding: 3rem 1rem; }
  .hero-content { padding: 3rem 1rem; }
  .hero-btns { flex-direction: column; }
  .card-grid { grid-template-columns: 1fr; }
  .wb-card { flex-direction: column; }
  .doc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero-content { padding: 4rem 0 2rem; }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,255,136,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ---- SELECTION ---- */
::selection { background: rgba(0,255,136,0.2); color: var(--green); }

/* ---- SOUND TOGGLE ---- */
#sound-toggle {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 600;
  background: var(--bg2); border: 1px solid var(--border); color: var(--muted);
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
}
#sound-toggle:hover { border-color: var(--green); color: var(--green); }
#sound-toggle.on { border-color: var(--green); color: var(--green); box-shadow: 0 0 15px rgba(0,255,136,0.3); }
#sound-toggle .sound-wave { display: none; }
#sound-toggle.on .sound-wave { display: inline; }
#sound-toggle.on .sound-icon { display: none; }

/* ---- TOPIC CARD HOVER GLOW ---- */
.topic-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,255,136,0.12); }
.topic-card[data-topic="bitcoin"]:hover { box-shadow: 0 8px 40px rgba(247,147,26,0.12); border-color: rgba(247,147,26,0.3); }
.topic-card[data-topic="war"]:hover { box-shadow: 0 8px 40px rgba(255,34,68,0.12); border-color: rgba(255,34,68,0.3); }
.topic-card[data-topic="epstein"]:hover { box-shadow: 0 8px 40px rgba(255,183,0,0.12); border-color: rgba(255,183,0,0.3); }
.topic-card[data-topic="leaks"]:hover { box-shadow: 0 8px 40px rgba(136,68,255,0.12); border-color: rgba(136,68,255,0.3); }
.topic-card[data-topic="trending"]:hover { box-shadow: 0 8px 40px rgba(0,136,255,0.12); border-color: rgba(0,136,255,0.3); }

/* Card image grayscale → color on hover */
.card-img { filter: grayscale(60%); transition: filter 0.4s ease; }
.card:hover .card-img { filter: grayscale(0%); }

/* ---- TEXT SCRAMBLE ---- */
.scramble { opacity: 0; transition: opacity 0.3s; }
.scramble.visible { opacity: 1; }

/* ---- MASTER TIMELINE PAGE ---- */
.timeline-hero {
  background: linear-gradient(180deg, rgba(0,255,136,0.05) 0%, var(--bg) 100%);
  padding: 8rem 2rem 4rem; text-align: center;
}
.timeline-filter {
  display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap;
  padding: 2rem; background: var(--bg2); border-bottom: 1px solid var(--border);
  position: sticky; top: 60px; z-index: 100;
}
.tl-filter-btn {
  font-family: var(--font-badge); font-size: 0.7rem; padding: 0.5rem 1rem;
  border: 1px solid var(--border); background: none; color: var(--muted);
  cursor: pointer; transition: var(--transition);
}
.tl-filter-btn.active { border-color: var(--green); color: var(--green); background: rgba(0,255,136,0.08); }
.tl-filter-btn[data-filter="ufo"].active     { border-color: var(--green); color: var(--green); }
.tl-filter-btn[data-filter="epstein"].active { border-color: var(--amber); color: var(--amber); }
.tl-filter-btn[data-filter="bitcoin"].active { border-color: var(--btc); color: var(--btc); }
.tl-filter-btn[data-filter="war"].active     { border-color: var(--red); color: var(--red); }
.tl-filter-btn[data-filter="leaks"].active   { border-color: var(--purple); color: var(--purple); }

/* Master timeline container */
.master-timeline { position: relative; padding: 3rem 2rem; }
.master-timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(180deg, var(--green), var(--blue), var(--amber), var(--red));
  opacity: 0.3;
}
.mt-item {
  display: flex; gap: 3rem; margin-bottom: 3rem; position: relative;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.mt-item:nth-child(odd)  { flex-direction: row-reverse; }
.mt-item .mt-content {
  flex: 1; background: var(--card); border: 1px solid var(--border); padding: 1.5rem;
  position: relative; transition: var(--transition);
}
.mt-item .mt-content:hover { transform: translateY(-2px); }
.mt-item .mt-year {
  min-width: 80px; text-align: center; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start; padding-top: 1.5rem;
}
.mt-year-num { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.mt-dot {
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid; margin-top: 0.5rem;
  background: var(--bg); position: relative; z-index: 1;
}
.mt-item[data-topic="ufo"]     .mt-dot { border-color: var(--green); box-shadow: 0 0 10px rgba(0,255,136,0.4); }
.mt-item[data-topic="epstein"] .mt-dot { border-color: var(--amber); box-shadow: 0 0 10px rgba(255,183,0,0.4); }
.mt-item[data-topic="bitcoin"] .mt-dot { border-color: var(--btc); box-shadow: 0 0 10px rgba(247,147,26,0.4); }
.mt-item[data-topic="war"]     .mt-dot { border-color: var(--red); box-shadow: 0 0 10px rgba(255,34,68,0.4); }
.mt-item[data-topic="leaks"]   .mt-dot { border-color: var(--purple); box-shadow: 0 0 10px rgba(136,68,255,0.4); }

.mt-item[data-topic="ufo"]     .mt-content { border-top: 2px solid var(--green); }
.mt-item[data-topic="epstein"] .mt-content { border-top: 2px solid var(--amber); }
.mt-item[data-topic="bitcoin"] .mt-content { border-top: 2px solid var(--btc); }
.mt-item[data-topic="war"]     .mt-content { border-top: 2px solid var(--red); }
.mt-item[data-topic="leaks"]   .mt-content { border-top: 2px solid var(--purple); }

.mt-topic-badge {
  font-family: var(--font-badge); font-size: 0.6rem; border: 1px solid;
  padding: 0.15rem 0.4rem; display: inline-block; margin-bottom: 0.5rem;
}
.mt-event { font-family: var(--font-header); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.mt-desc { color: var(--muted); font-size: 0.8rem; }
.mt-source { font-family: var(--font-badge); font-size: 0.65rem; color: var(--muted); margin-top: 0.75rem; }
.mt-link { font-family: var(--font-badge); font-size: 0.65rem; color: var(--green); }
.mt-link:hover { text-decoration: underline; }

/* Timeline mobile */
@media (max-width: 768px) {
  .master-timeline::before { left: 20px; }
  .mt-item, .mt-item:nth-child(odd) { flex-direction: column; padding-left: 3rem; }
  .mt-item .mt-year { flex-direction: row; gap: 1rem; padding-top: 0; min-width: auto; }
  .mt-dot { margin-top: 0; }
}

/* ---- ABOUT PAGE ---- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.about-section {
  background: var(--card); border: 1px solid var(--border); padding: 2rem;
}
.about-section-title {
  font-family: var(--font-display); font-size: 2rem; letter-spacing: 2px;
  color: var(--green); margin-bottom: 1rem;
}
.about-p { color: var(--muted); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1rem; }
.sources-list { display: flex; flex-direction: column; gap: 0.75rem; }
.source-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg2); border: 1px solid var(--border); padding: 0.75rem 1rem;
  font-family: var(--font-badge); font-size: 0.75rem;
}
.source-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  background: var(--bg2); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-badge); font-size: 0.8rem; padding: 0.75rem 1rem;
  width: 100%; outline: none; transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--green); box-shadow: 0 0 10px rgba(0,255,136,0.1);
}
.contact-form textarea { min-height: 120px; resize: vertical; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---- TRENDING SCORE ---- */
.trending-score {
  font-family: var(--font-badge); font-size: 0.6rem;
  color: var(--blue); border: 1px solid rgba(0,136,255,0.4);
  padding: 0.15rem 0.4rem; display: inline-block; margin-left: 0.5rem;
}
.hot-badge {
  font-family: var(--font-badge); font-size: 0.6rem;
  background: rgba(255,34,68,0.15); color: var(--red); border: 1px solid var(--red);
  padding: 0.15rem 0.4rem; display: inline-block;
  animation: hotPulse 1.5s ease infinite;
}
@keyframes hotPulse { 0%,100%{opacity:1} 50%{opacity:0.6} }

/* ---- CONFLICT PULSE MARKERS ---- */
.conflict-pulse {
  position: relative; display: inline-block;
  width: 12px; height: 12px;
}
.conflict-pulse::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--red); animation: conflictPulse 1.5s ease-out infinite;
}
.conflict-pulse::after {
  content: ''; position: absolute; inset: 2px; border-radius: 50%;
  background: var(--red);
}
@keyframes conflictPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* ---- RADAR SWEEP (war map) ---- */
.radar-container {
  position: relative; width: 200px; height: 200px; margin: 0 auto;
  border: 1px solid rgba(0,255,136,0.2); border-radius: 50%;
}
.radar-sweep {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
}
.radar-sweep::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 50%; height: 2px; background: linear-gradient(90deg, rgba(0,255,136,0.6), transparent);
  transform-origin: left center; animation: radarSpin 3s linear infinite;
}
@keyframes radarSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ---- READING PROGRESS BAR ---- */
#reading-progress {
  position: fixed; top: 60px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  z-index: 999; transform-origin: left; transform: scaleX(0);
  transition: transform 0.1s;
}

/* ---- RELATED TOPICS BAR ---- */
.related-bar {
  background: var(--bg2); border: 1px solid var(--border); padding: 1rem 2rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.related-label { font-family: var(--font-badge); font-size: 0.65rem; color: var(--muted); white-space: nowrap; }
.related-tag {
  font-family: var(--font-badge); font-size: 0.65rem; border: 1px solid var(--border);
  padding: 0.25rem 0.6rem; color: var(--muted); transition: var(--transition); cursor: pointer;
}
.related-tag:hover { border-color: var(--green); color: var(--green); }

/* ---- SEO HIDDEN KEYWORD BLOCK ---- */
.seo-keywords { 
  font-size: 0; height: 0; overflow: hidden; opacity: 0; 
  pointer-events: none; position: absolute;
}

/* ---- PREFERS-REDUCED-MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .ticker-track { animation: none; }
  #preloader-bar::after { animation: none; }
  .glitch::before, .glitch::after { display: none; }
}

/* ---- FLOATING HERO ELEMENTS ---- */
.hero-float {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: floatEl 6s ease-in-out infinite;
}
@keyframes floatEl {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* ---- BACK TO TOP ---- */
#back-to-top {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 600;
  background: var(--bg2); border: 1px solid var(--border); color: var(--muted);
  width: 44px; height: 44px; display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
}
#back-to-top.visible { display: flex; }
#back-to-top:hover { border-color: var(--green); color: var(--green); }

/* ---- SEARCH BOX (trending page) ---- */
.search-box {
  display: flex; gap: 0; margin-bottom: 2rem; max-width: 500px;
}
.search-box input {
  flex: 1; background: var(--card); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-badge); font-size: 0.8rem; padding: 0.75rem 1rem; outline: none;
  transition: var(--transition);
}
.search-box input:focus { border-color: var(--green); }
.search-box button {
  background: rgba(0,255,136,0.1); border: 1px solid var(--green); border-left: none;
  color: var(--green); font-family: var(--font-badge); font-size: 0.8rem;
  padding: 0.75rem 1.25rem; cursor: pointer; transition: var(--transition);
}
.search-box button:hover { background: var(--green); color: var(--bg); }

/* ---- NOTIFICATION BANNER ---- */
.notification-bar {
  display: none; background: rgba(0,255,136,0.06); border-top: 1px solid rgba(0,255,136,0.2);
  border-bottom: 1px solid rgba(0,255,136,0.2); padding: 0.75rem 2rem;
  text-align: center; font-family: var(--font-badge); font-size: 0.75rem; color: var(--green);
  cursor: pointer; position: sticky; top: 96px; z-index: 90;
}
.notification-bar.show { display: block; animation: slideDown 0.3s ease; }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---- IMAGE HOVER EFFECTS ---- */
.img-hover-zoom { overflow: hidden; }
.img-hover-zoom img { transition: transform 0.5s ease; }
.img-hover-zoom:hover img { transform: scale(1.05); }

/* ---- EXTRA RESPONSIVE ---- */
@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: clamp(2rem, 12vw, 3rem); }
  .page-title { font-size: clamp(2rem, 12vw, 3rem); }
  .tab-nav { gap: 0; }
  .tab-btn { padding: 0.6rem 0.75rem; font-size: 0.65rem; }
  .stats-inner { gap: 1.5rem; }
  .stat-num { font-size: 2rem; }
  #sound-toggle { display: none; }
  .ad-slot iframe { max-width: 100%; }
}

/* ---- CARD HOVER INNER GLOW ---- */
.card:hover { 
  border-color: rgba(0,255,136,0.2); 
  transform: translateY(-2px); 
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(0,255,136,0.05);
}
.doc-card:hover { 
  border-color: rgba(0,255,136,0.4);
  box-shadow: 0 0 20px rgba(0,255,136,0.08);
}

/* ---- PULSING LIVE INDICATOR ---- */
.pulse-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); animation: pulse 1.2s ease infinite;
  margin-right: 0.4rem;
}

/* ---- TOPIC ACCENT BORDERS ON SECTION TITLES ---- */
.section-title.accent-green { border-left: 3px solid var(--green); padding-left: 1rem; }
.section-title.accent-red   { border-left: 3px solid var(--red); padding-left: 1rem; }
.section-title.accent-amber { border-left: 3px solid var(--amber); padding-left: 1rem; }
.section-title.accent-blue  { border-left: 3px solid var(--blue); padding-left: 1rem; }
.section-title.accent-btc   { border-left: 3px solid var(--btc); padding-left: 1rem; }
.section-title.accent-purple{ border-left: 3px solid var(--purple); padding-left: 1rem; }
