/* Web 1.0 Conspiracy Theory Aesthetic */

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

body {
  font-family: 'Times New Roman', Times, serif;
  background: #0a0a0a url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAIklEQVQIW2NkYGD4z8DAwMgABXAGNgGwSgYYR1kBIwNMAAANKgAREQkgBwAAAABJRU5ErkJggg==');
  color: #00ff00;
  line-height: 1.6;
  overflow-x: hidden;
}

.app {
  min-height: 100vh;
}

.container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  width: 250px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border-right: 3px solid #ff0000;
  padding: 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.nav-header {
  font-family: Impact, Arial Black, sans-serif;
  font-size: 18px;
  color: #ffff00;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px #ff0000;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 2px 2px #ff0000, 0 0 10px #ff0000; }
  to { text-shadow: 2px 2px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000; }
}

.nav-list {
  list-style: none;
}

.nav-list li {
  padding: 10px;
  margin: 5px 0;
  cursor: pointer;
  background: #1a1a1a;
  border: 2px solid #333;
  transition: all 0.3s;
  font-family: 'Courier New', monospace;
  font-size: 14px;
}

.nav-list li:hover {
  background: #2a2a2a;
  border-color: #ff0000;
  transform: translateX(5px);
}

.nav-list li.active {
  background: #ff0000;
  color: #000;
  font-weight: bold;
}

.nav-bullet {
  color: #ffff00;
  margin-right: 5px;
}

.nav-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
  color: #ffff00;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 20px;
  background: #0a0a0a;
}

.page {
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.page-title {
  font-family: Impact, Arial Black, sans-serif;
  font-size: 36px;
  color: #ff0000;
  text-align: center;
  margin: 20px 0;
  text-shadow: 3px 3px #000, 0 0 20px #ff0000;
  letter-spacing: 2px;
}

.page-header {
  text-align: center;
  margin-bottom: 30px;
}

.page-header h1 {
  font-family: Impact, sans-serif;
  font-size: 48px;
  color: #ff0000;
  text-shadow: 3px 3px #000;
  margin-bottom: 10px;
}

.glitch {
  position: relative;
  animation: glitch 1s linear infinite;
}

@keyframes glitch {
  2%, 64% {
    transform: translate(2px, 0) skew(0deg);
  }
  4%, 60% {
    transform: translate(-2px, 0) skew(0deg);
  }
  62% {
    transform: translate(0, 0) skew(5deg); 
  }
}

.subtitle {
  font-size: 24px;
  color: #ffff00;
  font-family: 'Courier New', monospace;
  text-shadow: 2px 2px #000;
}

/* Marquee */
.marquee-container {
  background: #ff0000;
  color: #000;
  font-weight: bold;
  padding: 10px 0;
  margin: 20px 0;
  overflow: hidden;
  border: 3px solid #ffff00;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.marquee-content {
  font-family: Arial Black, sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Content Boxes */
.content-box {
  background: #1a1a1a;
  border: 3px solid #333;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.content-box h3 {
  font-family: Impact, sans-serif;
  color: #ffff00;
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 2px 2px #000;
}

.warning-box {
  border-color: #ff0000;
  background: linear-gradient(135deg, #1a0000 0%, #1a1a1a 100%);
}

.action-box {
  border-color: #00ff00;
  text-align: center;
}

.evidence-box {
  background: #0a0a0a;
  border: 2px solid #ffff00;
  padding: 15px;
  margin: 15px 0;
}

.quote-box {
  background: #ffff00;
  color: #000;
  border: 3px solid #000;
  padding: 15px;
  margin: 15px 0;
  font-style: italic;
}

.quote-attribution {
  text-align: right;
  font-weight: bold;
  margin-top: 10px;
}

.redacted-box {
  background: #000;
  color: #ff0000;
  border: 2px dashed #ff0000;
  padding: 15px;
  margin: 15px 0;
  text-align: center;
  font-family: 'Courier New', monospace;
}

/* Text Styles */
.red-text {
  color: #ff0000;
  font-weight: bold;
}

.blue-text {
  color: #00ffff;
}

.blink {
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.bullet-list {
  list-style: none;
  padding-left: 0;
}

.bullet-list li {
  margin: 10px 0;
  font-size: 16px;
}

/* Buttons */
.retro-button {
  background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
  color: #00ff00;
  border: 3px solid #00ff00;
  padding: 12px 24px;
  font-family: Arial Black, sans-serif;
  font-size: 14px;
  cursor: pointer;
  margin: 10px;
  transition: all 0.3s;
  text-shadow: 1px 1px #000;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.retro-button:hover {
  background: #00ff00;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

.mini-button {
  background: #1a1a1a;
  color: #ffff00;
  border: 2px solid #ffff00;
  padding: 5px 10px;
  font-size: 11px;
  cursor: pointer;
  margin: 5px;
  font-family: 'Courier New', monospace;
}

.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 15px;
}

.stat-label {
  font-family: Arial Black, sans-serif;
  color: #ffff00;
  font-size: 14px;
  margin-bottom: 10px;
}

.stat-value {
  font-family: 'Courier New', monospace;
  color: #00ff00;
  font-size: 18px;
  font-weight: bold;
}

/* Hit Counter */
.hit-counter {
  display: inline-block;
}

.counter-digits {
  font-family: 'Courier New', monospace;
  font-size: 24px;
  color: #ff0000;
  background: #000;
  padding: 5px 10px;
  border: 2px solid #ff0000;
  display: inline-block;
  margin-top: 5px;
}

.digit {
  display: inline-block;
  min-width: 15px;
  text-align: center;
}

/* Accordion */
.accordion-section {
  margin: 15px 0;
  border: 2px solid #333;
  background: #0a0a0a;
}

.accordion-header {
  background: #1a1a1a;
  padding: 15px;
  cursor: pointer;
  font-family: Arial Black, sans-serif;
  color: #00ff00;
  font-size: 16px;
  transition: all 0.3s;
  border-bottom: 2px solid #333;
}

.accordion-header:hover {
  background: #2a2a2a;
  color: #ffff00;
}

.anomaly-header {
  color: #ff0000;
}

.accordion-icon {
  color: #ffff00;
  margin-right: 10px;
}

.accordion-content {
  padding: 20px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 1000px;
  }
}

/* Timeline */
.timeline-container {
  padding: 20px 0;
}

.timeline-event {
  display: flex;
  margin: 20px 0;
  padding: 15px;
  background: #1a1a1a;
  border-left: 4px solid #ffff00;
}

.timeline-time {
  min-width: 100px;
  font-family: 'Courier New', monospace;
  color: #ffff00;
  font-weight: bold;
  font-size: 14px;
}

.timeline-details {
  flex: 1;
}

.timeline-item {
  padding: 10px;
  margin: 5px 0;
  border-left: 3px solid;
}

.timeline-item.blue {
  border-color: #00ffff;
  background: rgba(0, 255, 255, 0.1);
}

.timeline-item.red {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
}

.timeline-item.yellow {
  border-color: #ffff00;
  background: rgba(255, 255, 0, 0.1);
}

.timeline-item.alt-red {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.15);
  color: #ff9999;
}

.timeline-item.alt-yellow {
  border-color: #ffff00;
  background: rgba(255, 255, 0, 0.15);
  color: #ffff99;
}

.timeline-comparison {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.timeline-col {
  flex: 1;
  padding: 15px;
  background: #0a0a0a;
  border: 2px solid #333;
}

.legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.legend-color {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 2px solid #fff;
}

.legend-color.blue {
  background: #00ffff;
}

.legend-color.red {
  background: #ff0000;
}

.legend-color.yellow {
  background: #ffff00;
}

/* Evidence Gallery */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.evidence-card {
  background: #1a1a1a;
  border: 2px solid #333;
  padding: 15px;
  position: relative;
  transition: all 0.3s;
}

.evidence-card:hover {
  border-color: #00ff00;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 255, 0, 0.3);
}

.evidence-placeholder {
  background: #0a0a0a;
  border: 2px dashed #666;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-family: 'Courier New', monospace;
  color: #666;
  font-size: 12px;
}

.evidence-type {
  background: #ff0000;
  color: #000;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}

.evidence-card h4 {
  color: #ffff00;
  font-size: 14px;
  margin: 10px 0;
  font-family: Arial, sans-serif;
}

.evidence-desc {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.evidence-actions {
  display: flex;
  gap: 5px;
}

.redacted-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  color: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Impact, sans-serif;
  font-size: 24px;
  letter-spacing: 5px;
  transform: rotate(-15deg);
  pointer-events: none;
}

/* Guestbook */
.guestbook-form {
  margin: 20px 0;
}

.form-group {
  margin: 15px 0;
}

.form-group label {
  display: block;
  color: #ffff00;
  margin-bottom: 5px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #0a0a0a;
  color: #00ff00;
  border: 2px solid #333;
  padding: 10px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ff00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.guestbook-entries {
  margin-top: 20px;
}

.guestbook-entry {
  background: #0a0a0a;
  padding: 15px;
  margin: 15px 0;
  border-left: 4px solid #00ff00;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #ffff00;
}

.entry-date {
  color: #666;
  font-size: 12px;
}

.entry-message {
  color: #00ff00;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.entry-divider {
  border: none;
  border-top: 1px dashed #333;
  margin: 15px 0;
}

.no-entries {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 30px;
}

/* Witness Grid */
.witness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

/* Video Links */
.video-links {
  margin: 20px 0;
}

.video-link {
  background: #0a0a0a;
  border: 2px solid #ff0000;
  padding: 15px;
  margin: 10px 0;
}

/* Screenshot Placeholder */
.screenshot-placeholder {
  background: #0a0a0a;
  border: 3px dashed #666;
  padding: 40px;
  text-align: center;
  margin: 20px 0;
  font-family: 'Courier New', monospace;
  color: #666;
  font-size: 14px;
}

.caption {
  margin-top: 10px;
  font-size: 12px;
  color: #999;
  font-style: italic;
}

/* Anomaly Styles */
.anomaly-grid {
  margin: 20px 0;
}

.anomaly-desc {
  font-style: italic;
  color: #ffff00;
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  border-top: 3px solid #ff0000;
  margin-top: 40px;
  padding: 30px 20px 10px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-section {
  margin: 15px 0;
  font-size: 12px;
  color: #666;
}

.footer-link {
  color: #00ff00;
  text-decoration: none;
  font-weight: bold;
}

.footer-link:hover {
  color: #ffff00;
  text-decoration: underline;
}

.footer-badges {
  margin: 20px 0;
}

.footer-badge {
  display: inline-block;
  margin: 5px;
  image-rendering: pixelated;
}

/* Construction GIF */
.construction-gif {
  width: 100px;
  margin: 10px auto;
  display: block;
  image-rendering: pixelated;
}

/* Flying GIFs */
.flying-gifs {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}

.flying-gif {
  position: absolute;
  width: 50px;
  height: 50px;
  image-rendering: pixelated;
}

.gif-1 {
  top: 100px;
  left: 50px;
  animation: float1 10s ease-in-out infinite;
}

.gif-2 {
  top: 300px;
  right: 100px;
  animation: float2 12s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(30px) rotate(-180deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  
  .navbar {
    width: 100%;
    height: auto;
    position: relative;
  }
  
  .timeline-comparison {
    flex-direction: column;
  }
  
  .evidence-grid {
    grid-template-columns: 1fr;
  }
  
  .witness-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    flex-direction: column;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
  border: 1px solid #333;
}

::-webkit-scrollbar-thumb {
  background: #ff0000;
  border: 1px solid #000;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffff00;
}