/* ============================================================
   CASOS POLICIALES — Tema: Crónica TV
   Sensacionalista · Urgente · Impacto
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;600;700&family=Roboto+Condensed:wght@300;400;700&family=Source+Code+Pro:wght@400;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-elevated: #1c1c1c;
  --border-subtle: #2a2a2a;
  --border-accent: #444;
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --cr-red: #cc0000;
  --cr-red-bright: #e60000;
  --cr-yellow: #ffcc00;
  --cr-yellow-dark: #d4a800;
  --cr-white: #ffffff;
  --cr-black: #000000;
  --font-display: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  --font-condensed: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --font-mono: 'Source Code Pro', 'Courier New', monospace;
  --radius-sm: 2px;
  --radius-md: 4px;
  --transition: 150ms ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--font-condensed);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--cr-yellow); text-decoration: none; }
a:hover { color: var(--cr-red-bright); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--cr-red); border-radius: 0; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 3px solid var(--cr-red);
  padding: 0 1.5rem;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Anton', var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cr-white);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--cr-red);
  padding: 0.3rem 0.8rem;
  line-height: 1;
  display: inline-block;
}

.nav-logo:hover { background: var(--cr-red-bright); }

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  padding: 0.3rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--cr-red);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--cr-white); }
.nav-links a:hover::after { width: 100%; }

/* --- Hamburger --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cr-white);
  transition: all 300ms ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Bottom Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #000;
  border-top: 2px solid var(--cr-red);
  justify-content: space-around;
  align-items: center;
  padding: 0.4rem 0;
  padding-bottom: env(safe-area-inset-bottom, 0.4rem);
}

.mobile-nav-item {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-item svg {
  width: 22px;
  height: 22px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active { color: var(--cr-red-bright); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(204,0,0,0.12) 0%, transparent 60%),
    #0a0a0a;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 850px;
  position: relative;
  z-index: 1;
}

/* --- Urgent Banner --- */
.urgent-banner {
  display: inline-block;
  background: var(--cr-red);
  color: var(--cr-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  margin-bottom: 1rem;
  position: relative;
  animation: urgent-flash 1.5s ease infinite;
}

/* --- Audio Player --- */
.audio-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #000;
  border: 1px solid #333;
  border-left: 3px solid var(--cr-red);
  padding: 0.6rem 1rem;
  max-width: 550px;
  margin: 0 auto 1.5rem;
  transition: border-color 300ms ease;
}

.audio-player.playing {
  border-left-color: var(--cr-yellow);
  box-shadow: 0 0 12px rgba(255,204,0,0.1);
}

.audio-btn {
  background: none;
  border: 1px solid #444;
  color: var(--cr-white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
  flex-shrink: 0;
}

.audio-btn:hover {
  border-color: var(--cr-red-bright);
  background: rgba(204,0,0,0.1);
}

.audio-player.playing .audio-btn {
  border-color: var(--cr-yellow);
}

.audio-info { flex: 1; min-width: 0; }

.audio-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--cr-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-status {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.audio-player.playing .audio-status {
  color: var(--cr-yellow);
}

.audio-progress {
  width: 60px;
  height: 3px;
  background: #222;
  border-radius: 2px;
  overflow: hidden;
}

.audio-bar {
  height: 100%;
  width: 0%;
  background: var(--cr-red-bright);
  transition: width 200ms linear;
}

.audio-player.playing .audio-bar {
  background: var(--cr-yellow);
}

.audio-time {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  width: 2.5rem;
  text-align: right;
}

@media (max-width: 768px) {
  .audio-player { padding: 0.5rem 0.75rem; gap: 0.5rem; }
  .audio-btn { width: 34px; height: 34px; }
  .audio-progress { display: none; }
  .audio-time { display: none; }
  .urgent-banner { font-size: 0.85rem; padding: 0.4rem 1.2rem; }
}

/* --- Auto-update banner --- */
.update-banner {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #000;
  border: 2px solid var(--cr-red-bright);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--cr-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 24px rgba(204,0,0,0.5);
  animation: banner-slide-up 400ms ease;
  white-space: nowrap;
}

@keyframes banner-slide-up {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.update-banner button {
  background: var(--cr-red-bright);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  transition: background 200ms ease;
}

.update-banner button:hover { background: #ff1a1a; }

@keyframes urgent-flash {
  0%, 100% { background: var(--cr-red); box-shadow: 0 0 20px rgba(204,0,0,0.6); }
  50% { background: var(--cr-red-bright); box-shadow: 0 0 40px rgba(230,0,0,0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--cr-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 0 rgba(204,0,0,0.3);
}

.hero h1 .accent { color: var(--cr-red-bright); }

.hero-subtitle {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

/* --- Live Counter --- */
.hero-counter {
  margin: 1.5rem auto;
  padding: 1rem 1.5rem;
  background: #000;
  border: 2px solid var(--cr-red);
  display: inline-block;
  animation: counter-border-glow 2s ease infinite;
}

@keyframes counter-border-glow {
  0%, 100% { border-color: var(--cr-red); box-shadow: 0 0 10px rgba(204,0,0,0.3); }
  50% { border-color: var(--cr-red-bright); box-shadow: 0 0 25px rgba(230,0,0,0.6); }
}

.counter-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--cr-yellow);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.counter-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.counter-digit {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cr-white);
  background: #111;
  border: 1px solid #333;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.6rem;
  min-width: 3.5rem;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(204,0,0,0.5);
}

.counter-sep {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cr-red-bright);
  font-weight: 300;
  animation: counter-blink 1s step-end infinite;
}

@keyframes counter-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.counter-units {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  margin-top: 0.3rem;
}

.counter-units span {
  font-family: var(--font-condensed);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  min-width: 3.5rem;
  text-align: center;
  text-transform: uppercase;
}

/* --- News Ticker --- */
.hero-ticker {
  margin: 1rem auto 1rem;
  max-width: 720px;
  background: #000;
  border: 1px solid #333;
  border-left: 4px solid var(--cr-red);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}

.ticker-label {
  flex-shrink: 0;
  background: var(--cr-red);
  color: var(--cr-white);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  white-space: nowrap;
  animation: ticker-label-pulse 2s ease infinite;
}

@keyframes ticker-label-pulse {
  0%, 100% { background: var(--cr-red); }
  50% { background: var(--cr-red-bright); }
}

.ticker-track { flex: 1; overflow: hidden; position: relative; height: 1.8rem; }
.ticker-items { display: flex; animation: ticker-scroll 35s linear infinite; white-space: nowrap; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0 1.2rem; flex-shrink: 0; }
.ticker-time { font-family: var(--font-mono); font-size: 0.6rem; color: var(--cr-red-bright); font-weight: 600; }
.ticker-text { font-family: var(--font-condensed); font-size: 0.78rem; color: var(--cr-white); font-weight: 400; }
.ticker-source { font-size: 0.5rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; background: #1a1a1a; padding: 0.1rem 0.3rem; }
.ticker-item.urgent .ticker-text { color: var(--cr-yellow); font-weight: 700; }
.ticker-sep { color: #444; margin: 0 0.3rem; }
.hero-ticker:hover .ticker-items { animation-play-state: paused; }

/* --- Hero Photo --- */
.hero-photo { margin-bottom: 1.5rem; display: flex; flex-direction: column; align-items: center; }
.hero-photo img {
  width: 180px; height: 180px; border-radius: 2px;
  object-fit: cover; border: 3px solid var(--cr-red);
  box-shadow: 0 0 24px rgba(204,0,0,0.3), 0 4px 20px rgba(0,0,0,0.7);
}
.hero-photo-caption {
  margin-top: 0.6rem; font-size: 0.7rem; color: var(--text-muted);
  max-width: 320px; text-align: center; line-height: 1.4;
  font-style: italic;
}

.hero-stats { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 1rem; }
.hero-stat { text-align: center; }
.hero-stat-value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--cr-yellow); }
.hero-stat-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-top: 0.15rem; }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--text-muted); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  animation: float 2s ease infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Sections --- */
.section { padding: 5rem 1.5rem; max-width: 1100px; margin: 0 auto; }

.section-header {
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--cr-red);
  padding-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--cr-red-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #000;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--cr-red);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cr-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-desc {
  font-family: var(--font-condensed);
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.divider { height: 2px; background: var(--cr-red); width: 100%; margin: 1.5rem 0; opacity: 0.3; }

/* --- Timeline --- */
.timeline { position: relative; padding-left: 2.5rem; }

.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--cr-red); opacity: 0.4;
}

.timeline-item {
  position: relative; margin-bottom: 1.5rem; padding: 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-left: 3px solid #333; transition: border-color var(--transition);
}

.timeline-item:hover { border-left-color: var(--cr-red); }

.timeline-item::before {
  content: ''; position: absolute;
  left: -2.85rem; top: 1.5rem;
  width: 10px; height: 10px;
  background: #222; border: 2px solid #555;
}

.timeline-item.critical::before {
  background: var(--cr-red); border-color: var(--cr-red-bright);
  box-shadow: 0 0 8px rgba(204,0,0,0.6);
}

.timeline-item.key::before {
  background: var(--cr-yellow); border-color: var(--cr-yellow-dark);
}

.timeline-date {
  font-family: var(--font-display); font-size: 0.7rem;
  color: var(--cr-yellow); letter-spacing: 1px; margin-bottom: 0.4rem;
  display: flex; align-items: center; gap: 0.4rem;
}

.timeline-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  text-transform: uppercase; margin-bottom: 0.4rem; color: var(--cr-white);
}

.timeline-desc {
  font-family: var(--font-condensed); font-size: 0.85rem;
  color: var(--text-secondary); line-height: 1.5;
}

.timeline-tag {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.55rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 0.15rem 0.5rem; margin-top: 0.5rem;
}
.tag-evidence { background: rgba(204,0,0,0.1); color: var(--cr-red-bright); border: 1px solid rgba(204,0,0,0.3); }
.tag-witness { background: rgba(255,204,0,0.1); color: var(--cr-yellow); border: 1px solid rgba(255,204,0,0.3); }
.tag-critical { background: rgba(204,0,0,0.2); color: var(--cr-red-bright); border: 1px solid var(--cr-red); font-size: 0.6rem; }

/* --- Scene --- */
.scene-container {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--cr-red); padding: 1.5rem; overflow: hidden;
}
.scene-title { font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; margin-bottom: 0.3rem; }
.scene-desc { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.scene-map { width: 100%; max-width: 800px; margin: 0 auto; }
.scene-map svg { width: 100%; height: auto; }

/* --- Person Cards --- */
.person-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }

.person-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  padding: 1.25rem; transition: border-color var(--transition);
}

.person-card:hover { border-color: var(--cr-red); }

.person-card.suspect { border-left: 4px solid var(--cr-red-bright); }
.person-card.victim { border-left: 4px solid var(--cr-yellow); }
.person-card.witness { border-left: 4px solid #999; }
.person-card.official { border-left: 4px solid #666; }

.person-role {
  font-family: var(--font-display); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.4rem;
}

.person-photo { margin-bottom: 0.5rem; }
.person-photo img { width: 100%; height: 160px; object-fit: cover; filter: grayscale(50%); border: 1px solid var(--border-subtle); }
.person-card:hover .person-photo img { filter: grayscale(0%); }

.person-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 0.2rem; color: var(--cr-white);
}

.person-subtitle { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; font-style: italic; }

.person-details { list-style: none; }
.person-details li {
  font-size: 0.78rem; color: var(--text-secondary); padding: 0.25rem 0;
  border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between;
}
.person-details li:last-child { border: none; }
.person-details li .label { color: var(--text-muted); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- Evidence --- */
.evidence-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }

.evidence-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  padding: 1.25rem; transition: border-color var(--transition);
}
.evidence-card:hover { border-color: var(--cr-red); }

.evidence-card.confirmed { border-left: 4px solid var(--cr-yellow); }
.evidence-card.pending { border-left: 4px solid #ff9800; }
.evidence-card.critical-e { border-left: 4px solid var(--cr-red-bright); }

.evidence-type {
  font-family: var(--font-display); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.5rem;
}

.evidence-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; margin-bottom: 0.5rem; color: var(--cr-white);
}

.evidence-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.evidence-source { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted); margin-top: 0.5rem; }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.75rem; }
.gallery-item { position: relative; overflow: hidden; border: 1px solid var(--border-subtle); }
.gallery-item:hover { border-color: var(--cr-red); }
.gallery-item img { width: 100%; height: 180px; object-fit: cover; display: block; }
.gallery-item:hover img { filter: brightness(1.15); }
.gallery-caption {
  display: block; padding: 0.4rem 0.6rem; font-size: 0.65rem;
  color: var(--text-muted); background: #000; border-top: 1px solid var(--border-subtle);
  font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.5px;
}

/* --- Video Cards --- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1rem; }
.video-card {
  background: #000; border: 1px solid var(--border-subtle); overflow: hidden;
  text-decoration: none; display: block; transition: border-color var(--transition);
}
.video-card:hover { border-color: var(--cr-red); }
.video-thumb { position: relative; overflow: hidden; }
.video-thumb img { width: 100%; height: 150px; object-fit: cover; display: block; }
.video-card:hover .video-thumb img { filter: brightness(1.2); }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; background: rgba(204,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; font-weight: 700;
}
.video-card:hover .video-play { background: var(--cr-red-bright); }
.video-info { padding: 0.6rem 0.8rem; background: #0a0a0a; }
.video-source {
  font-family: var(--font-display); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--cr-red-bright); margin-bottom: 0.2rem;
}
.video-title { font-family: var(--font-condensed); font-size: 0.8rem; font-weight: 700; color: var(--cr-white); text-transform: uppercase; }

/* --- Theories --- */
.theory-list { display: flex; flex-direction: column; gap: 0.75rem; }

.theory-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle); overflow: hidden;
}
.theory-item.open { border-color: var(--cr-red); }

.theory-header {
  padding: 1rem 1.25rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; user-select: none;
  background: #0a0a0a; transition: background var(--transition);
}
.theory-header:hover { background: #111; }

.theory-left { display: flex; align-items: center; gap: 1rem; }
.theory-number { font-family: var(--font-display); font-size: 0.8rem; color: var(--cr-red-bright); font-weight: 700; min-width: 1.5rem; }

.theory-info h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; color: var(--cr-white);
}
.theory-info p { font-size: 0.75rem; color: var(--text-secondary); }

.theory-probability { display: flex; align-items: center; gap: 0.4rem; }
.prob-bar { width: 60px; height: 4px; background: #333; overflow: hidden; }
.prob-fill { height: 100%; }
.prob-fill.high { background: var(--cr-red-bright); }
.prob-fill.med { background: var(--cr-yellow); }
.prob-fill.low { background: #666; }
.prob-value { font-family: var(--font-display); font-size: 0.8rem; color: var(--text-secondary); width: 2.5rem; text-align: right; }

.theory-arrow { color: var(--text-muted); font-size: 0.7rem; transition: transform var(--transition); }
.theory-item.open .theory-arrow { transform: rotate(180deg); }
.theory-body { padding: 0 1.25rem 1.25rem; display: none; background: var(--bg-card); }
.theory-item.open .theory-body { display: block; }

.theory-sub {
  margin: 0.75rem 0 0.4rem; font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.theory-sub.pro { color: var(--cr-yellow); }
.theory-sub.con { color: var(--cr-red-bright); }

.theory-body ul { list-style: none; padding: 0; }
.theory-body li {
  font-size: 0.8rem; color: var(--text-secondary); padding: 0.3rem 0; padding-left: 1rem; position: relative;
}
.theory-body li::before { content: '▸'; position: absolute; left: 0; top: 0.3rem; font-size: 0.6rem; }
.theory-sub.pro + ul li::before { color: var(--cr-yellow); }
.theory-sub.con + ul li::before { color: var(--cr-red-bright); }

/* --- Inconsistencies --- */
.inc-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.inc-table thead th {
  text-align: left; padding: 0.6rem 0.8rem;
  font-family: var(--font-display); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--cr-yellow); background: #000; border-bottom: 2px solid var(--cr-red);
}
.inc-table tbody td {
  padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary); vertical-align: top;
}
.inc-table tbody tr:hover td { background: #111; }

.severity {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.55rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 0.1rem 0.4rem;
}
.severity.alta { background: var(--cr-red); color: #fff; }
.severity.media { background: var(--cr-yellow-dark); color: #000; }

/* --- Sources --- */
.sources-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.75rem; }
.source-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-left: 3px solid #333; padding: 1rem; transition: border-color var(--transition);
}
.source-item:hover { border-left-color: var(--cr-red); }
.source-medium {
  font-family: var(--font-display); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--cr-yellow); margin-bottom: 0.3rem;
}
.source-title { font-size: 0.82rem; font-weight: 500; color: var(--cr-white); margin-bottom: 0.2rem; }
.source-date { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted); }
.source-link { display: inline-block; margin-top: 0.4rem; font-family: var(--font-mono); font-size: 0.7rem; color: var(--cr-red-bright); }

/* --- Footer --- */
.footer {
  text-align: center; padding: 3rem 1.5rem;
  border-top: 3px solid var(--cr-red); background: #000;
  color: var(--text-muted); font-size: 0.75rem;
}
.footer-brand {
  font-family: 'Anton', var(--font-display);
  font-size: 1.4rem;
  color: var(--cr-white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 0.3rem;
  background: var(--cr-red);
  display: inline-block;
  padding: 0.2rem 0.7rem;
}
.footer a { color: var(--cr-yellow); }

/* --- Support / Monetization --- */
.footer-support {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid #222;
}

.support-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.support-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,204,0,0.1);
  color: var(--cr-yellow);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 400;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border: 1px solid var(--cr-yellow);
  letter-spacing: 0.5px;
  transition: all 250ms ease;
  animation: cafecito-glow 2.5s ease infinite;
}

@keyframes cafecito-glow {
  0%, 100% { box-shadow: 0 0 4px rgba(255,204,0,0.1); }
  50% { box-shadow: 0 0 14px rgba(255,204,0,0.25); }
}

.support-btn:hover {
  background: var(--cr-yellow);
  color: #000;
  box-shadow: 0 0 20px rgba(255,204,0,0.4);
  transform: scale(1.05);
  animation: none;
}

.support-sep {
  color: #444;
}

.support-alias {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
  background: #111;
  padding: 0.35rem 0.6rem;
  border: 1px solid #333;
}

.support-alias strong {
  color: var(--cr-yellow);
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 1.2rem; }
  .hero-stat-value { font-size: 1.5rem; }
  .counter-digit { font-size: 2rem; min-width: 2.5rem; padding: 0.2rem 0.4rem; }
  .counter-sep { font-size: 1.4rem; }
  .counter-units span { min-width: 2.5rem; font-size: 0.45rem; }
  .section { padding: 3rem 1rem 5rem; }
  .section-title { font-size: 1.5rem; }
  .person-grid { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 2rem; }
  .hero-photo img { width: 140px; height: 140px; }
  .ticker-label { font-size: 0.45rem; padding: 0.25rem 0.4rem; }
  .ticker-text { font-size: 0.7rem; }

  /* Hamburger */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    display: none;
    z-index: 1000;
  }

  .nav-links.open { display: flex !important; }

  .nav-links a {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cr-white);
    letter-spacing: 1px;
  }

  .nav-links a:hover { color: var(--cr-red-bright); }

  /* Bottom nav */
  .mobile-nav { display: flex; }

  /* Hide desktop-only elements */
  .scroll-indicator { display: none; }
}

@media (min-width: 769px) {
  .nav-links { display: flex !important; }
}

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(15px); transition: opacity 500ms ease, transform 500ms ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Scene SVG --- */
.scene-svg .road { stroke: #333; stroke-width: 2; fill: none; }
.scene-svg .road-dash { stroke: #444; stroke-width: 1; stroke-dasharray: 6 4; fill: none; }
.scene-svg .building { fill: #1a1d2a; stroke: #2a2d3d; stroke-width: 1; }
.scene-svg .building-label { fill: #5c5a66; font-size: 8px; font-family: monospace; }
.scene-svg .route { stroke: var(--cr-red-bright); stroke-width: 2; stroke-dasharray: 8 4; fill: none; }
.scene-svg .route-dot { fill: var(--cr-red); }
.scene-svg .pin { fill: var(--cr-red); }
.scene-svg .pin-label { fill: var(--text-secondary); font-size: 8px; }
.scene-svg .car { fill: var(--cr-yellow); }

/* --- Veredicto / Proyección --- */
.veredicto-section {
  background: #000;
  border: 2px solid var(--cr-red);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}

.veredicto-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(204,0,0,0.03) 1px, rgba(204,0,0,0.03) 2px);
  pointer-events: none;
}

.veredicto-stamp {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cr-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(255,204,0,0.4);
}

.veredicto-body {
  font-family: var(--font-condensed);
  font-size: 1rem;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.veredicto-body strong { color: var(--cr-yellow); font-weight: 700; }

.veredicto-confidence {
  text-align: center;
  margin: 1.5rem 0;
}

.confidence-bar {
  width: 100%;
  max-width: 400px;
  margin: 0.5rem auto;
  height: 8px;
  background: #222;
  position: relative;
}

.confidence-fill {
  height: 100%;
  background: var(--cr-yellow);
  position: relative;
  transition: width 1s ease;
}

.confidence-fill::after {
  content: '';
  position: absolute; right: 0; top: -4px;
  width: 16px; height: 16px;
  background: var(--cr-yellow); border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,204,0,0.6);
}

.confidence-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cr-yellow);
  font-weight: 700;
  display: block;
  margin-top: 0.3rem;
}

.veredicto-factors {
  margin-top: 1.5rem;
}

.factor-bar {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.factor-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  min-width: 180px;
  text-align: right;
  letter-spacing: 0.5px;
}

.factor-track {
  flex: 1;
  height: 6px;
  background: #1a1a1a;
  overflow: hidden;
}

.factor-fill {
  height: 100%;
  transition: width 800ms ease;
}
