/* VCA - Void Containment Agency
   2000s Aero Style CSS
   ========================= */

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0a14;
  color: #c0c0c0;
  line-height: 1.6;
  min-height: 100vh;
}

/* 2000s Aero Button Style */
.btn {
  display: inline-block;
  padding: 10px 24px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset,
    0 4px 8px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset,
    0 6px 12px rgba(0,0,0,0.5);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 
    0 -1px 0 rgba(255,255,255,0.1) inset,
    0 1px 0 rgba(0,0,0,0.3) inset,
    0 2px 4px rgba(0,0,0,0.3);
}

.btn-primary {
  background: linear-gradient(180deg, #4a9fd4 0%, #2a6f9f 50%, #1a5f8f 100%);
  border: 1px solid #1a4f6f;
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #5aafee 0%, #3a7faf 50%, #2a6f9f 100%);
}

.btn-secondary {
  background: linear-gradient(180deg, #5a5a6a 0%, #3a3a4a 50%, #2a2a3a 100%);
  border: 1px solid #1a1a2a;
  color: #c0c0c0;
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #6a6a7a 0%, #4a4a5a 50%, #3a3a4a 100%);
}

/* Security Banner */
.security-banner {
  background: linear-gradient(180deg, #8b0000 0%, #5a0000 100%);
  color: #ffcc00;
  text-align: center;
  padding: 6px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid #3a0000;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
}

/* Header */
.header {
  background: linear-gradient(180deg, #2a2a45 0%, #1a1a30 50%, #151525 100%);
  border-bottom: 3px solid #3a3a5c;
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 4px 12px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #3a3a5c 0%, #1a1a30 100%);
  border: 2px solid #4a4a6c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.5),
    0 1px 0 rgba(255,255,255,0.1) inset;
}

.void-symbol {
  font-size: 24px;
  color: #6af;
  text-shadow: 0 0 10px rgba(102,170,255,0.5);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 18px;
  font-weight: bold;
  color: #e0e0e0;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.logo-subtitle {
  font-size: 10px;
  color: #888;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  color: #a0a0b0;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #e0e0e0;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.nav-link.active {
  color: #6af;
  background: linear-gradient(180deg, rgba(102,170,255,0.1) 0%, rgba(102,170,255,0.05) 100%);
  border-color: rgba(102,170,255,0.3);
}

.login-btn {
  padding: 8px 16px;
  background: linear-gradient(180deg, #d4af37 0%, #a08020 50%, #806010 100%);
  border: 1px solid #604000;
  border-radius: 3px;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 2px 4px rgba(0,0,0,0.3);
  transition: all 0.2s ease;
}

.login-btn:hover {
  background: linear-gradient(180deg, #e4bf47 0%, #b09030 50%, #907020 100%);
}

.lock-icon {
  font-size: 12px;
}

/* News Ticker */
.ticker-container {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border-bottom: 1px solid #2a2a45;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-label {
  background: linear-gradient(180deg, #d4af37 0%, #a08020 100%);
  color: #1a1a2e;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  white-space: nowrap;
}

.ticker-wrapper {
  flex: 1;
  overflow: hidden;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  padding: 8px 0;
  font-size: 12px;
  color: #888;
}

.ticker-item {
  padding: 0 20px;
}

.urgent {
  color: #ff6b6b;
  font-weight: bold;
}

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

/* Hero Section */
.hero {
  background: 
    linear-gradient(180deg, rgba(10,10,20,0.9) 0%, rgba(20,20,40,0.95) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #2a2a45;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at center, rgba(102,170,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(180deg, #3a3a5c 0%, #2a2a45 100%);
  border: 1px solid #4a4a6c;
  border-radius: 3px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 24px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #e0e0e0;
  letter-spacing: 8px;
  margin-bottom: 16px;
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.5),
    0 0 40px rgba(102,170,255,0.2);
}

.hero-tagline {
  font-size: 18px;
  color: #6af;
  letter-spacing: 4px;
  margin-bottom: 24px;
  font-style: italic;
}

.hero-description {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.redacted {
  background: #1a1a1a;
  color: #666;
  padding: 2px 6px;
  border-radius: 2px;
  font-family: monospace;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-box {
  background: linear-gradient(180deg, #2a2a45 0%, #1a1a30 100%);
  border: 1px solid #3a3a5c;
  border-radius: 4px;
  padding: 20px 32px;
  min-width: 140px;
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 4px 8px rgba(0,0,0,0.3);
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: #6af;
  text-shadow: 0 0 10px rgba(102,170,255,0.3);
}

.stat-label {
  font-size: 11px;
  color: #666;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Database Section */
.database-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #e0e0e0;
  letter-spacing: 4px;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-subtitle {
  font-size: 12px;
  color: #666;
  letter-spacing: 2px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 11px;
  color: #666;
  letter-spacing: 1px;
  margin-right: 8px;
}

.filter-btn {
  padding: 6px 14px;
  background: linear-gradient(180deg, #2a2a45 0%, #1a1a30 100%);
  border: 1px solid #3a3a5c;
  border-radius: 3px;
  color: #888;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: linear-gradient(180deg, #3a3a55 0%, #2a2a40 100%);
  color: #c0c0c0;
}

.filter-btn.active {
  background: linear-gradient(180deg, #3a7ca5 0%, #2a5c85 100%);
  border-color: #4a8cb5;
  color: #fff;
}

.entity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.entity-card {
  background: linear-gradient(180deg, #252540 0%, #1a1a30 100%);
  border: 1px solid #3a3a5c;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.entity-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 8px 20px rgba(0,0,0,0.5);
}

.entity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

.entity-header.safe {
  background: linear-gradient(180deg, #2a5a2a 0%, #1a3a1a 100%);
}

.entity-header.euclid {
  background: linear-gradient(180deg, #5a5a2a 0%, #3a3a1a 100%);
}

.entity-header.keter {
  background: linear-gradient(180deg, #5a2a2a 0%, #3a1a1a 100%);
}

.entity-header.thaumiel {
  background: linear-gradient(180deg, #2a2a5a 0%, #1a1a3a 100%);
}

.entity-id {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.entity-class {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 3px 8px;
  background: rgba(0,0,0,0.3);
  border-radius: 2px;
  color: #e0e0e0;
}

.entity-body {
  padding: 16px;
}

.entity-name {
  font-size: 16px;
  font-weight: bold;
  color: #c0c0c0;
  margin-bottom: 8px;
}

.entity-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}

.entity-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #666;
}

.status {
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: bold;
  letter-spacing: 1px;
}

.status.contained {
  background: rgba(40, 120, 40, 0.3);
  color: #6f6;
  border: 1px solid #4a4;
}

.status.breach {
  background: rgba(120, 40, 40, 0.3);
  color: #f66;
  border: 1px solid #a44;
  animation: pulse 1s infinite;
}

.status.monitoring {
  background: rgba(120, 120, 40, 0.3);
  color: #ff6;
  border: 1px solid #aa4;
}

.status.secured {
  background: rgba(40, 80, 120, 0.3);
  color: #6af;
  border: 1px solid #48a;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.database-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: #666;
}

.database-footer a {
  color: #6af;
  text-decoration: none;
}

.database-footer a:hover {
  text-decoration: underline;
}

/* Protocols Section */
.protocols-section {
  padding: 60px 20px;
  background: 
    linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.01) 50px, rgba(255,255,255,0.01) 51px);
}

.protocols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.protocol-card {
  background: linear-gradient(180deg, #252540 0%, #1a1a30 100%);
  border: 1px solid #3a3a5c;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 4px 12px rgba(0,0,0,0.4);
}

.protocol-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.protocol-icon.red {
  background: linear-gradient(180deg, #5a2a2a 0%, #3a1a1a 100%);
  border: 2px solid #6a3a3a;
}

.protocol-icon.blue {
  background: linear-gradient(180deg, #2a3a5a 0%, #1a2a3a 100%);
  border: 2px solid #3a4a6a;
}

.protocol-icon.green {
  background: linear-gradient(180deg, #2a5a3a 0%, #1a3a2a 100%);
  border: 2px solid #3a6a4a;
}

.protocol-icon.gold {
  background: linear-gradient(180deg, #5a4a2a 0%, #3a3a1a 100%);
  border: 2px solid #6a5a3a;
}

.protocol-title {
  font-size: 14px;
  font-weight: bold;
  color: #6af;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.protocol-subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #c0c0c0;
  margin-bottom: 16px;
}

.protocol-list {
  list-style: none;
  margin-bottom: 16px;
}

.protocol-list li {
  font-size: 13px;
  color: #888;
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.protocol-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #6af;
}

.protocol-link {
  font-size: 12px;
  color: #6af;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.protocol-link:hover {
  color: #8cf;
  text-decoration: underline;
}

.protocol-link.locked {
  color: #666;
  cursor: not-allowed;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #151525 0%, #0a0a14 100%);
  border-top: 3px solid #2a2a45;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-section h4 {
  font-size: 12px;
  font-weight: bold;
  color: #6af;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #c0c0c0;
  margin-bottom: 12px;
}

.footer-logo .void-symbol {
  font-size: 32px;
}

.footer-tagline {
  font-size: 12px;
  color: #666;
  font-style: italic;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  font-size: 12px;
  color: #666;
  padding: 4px 0;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #6af;
}

.footer-contact {
  font-size: 12px;
  color: #666;
  line-height: 2;
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 20px;
  text-align: center;
  border-top: 1px solid #2a2a45;
}

.footer-bottom p {
  font-size: 11px;
  color: #666;
  margin: 4px 0;
}

.footer-warning {
  color: #8b0000 !important;
}

/* Terminal Section */
.terminal-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #151525 0%, #0a0a14 100%);
}

.crt-monitor {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), inset 0 2px 4px rgba(255,255,255,0.1);
  border: 2px solid #333;
}

.crt-screen {
  position: relative;
  background: #020a02;
  border-radius: 10px;
  padding: 24px;
  height: 600px;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.9), inset 0 0 20px rgba(0,255,0,0.05);
  cursor: text;
  font-family: 'Consolas', 'Courier New', monospace;
}

/* CRT scanline + flicker overlay */
.crt-overlay {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.15) 1px,
    transparent 1px,
    transparent 3px
  );
  z-index: 3;
  animation: crt-flicker 0.15s infinite;
}

@keyframes crt-flicker {
  0% { opacity: 0.9; }
  50% { opacity: 1; }
  100% { opacity: 0.92; }
}

.terminal-output {
  color: #33ff66;
  font-size: 13px;
  line-height: 1.5;
  text-shadow: 0 0 4px rgba(51, 255, 102, 0.6);
  white-space: pre-wrap;
  word-break: break-word;
  height: calc(100% - 24px);
  overflow-y: auto;
  position: relative;
  z-index: 2;
}

.terminal-output::-webkit-scrollbar {
  width: 6px;
}

.terminal-output::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.3);
}

.terminal-output::-webkit-scrollbar-thumb {
  background: #1a4a1a;
  border-radius: 3px;
}

.terminal-line {
  margin-bottom: 2px;
}

.terminal-line.cmd-echo {
  color: #aaffaa;
}

.terminal-line.error {
  color: #ff5555;
  text-shadow: 0 0 4px rgba(255, 85, 85, 0.6);
}

.terminal-line.warn {
  color: #ffcc33;
  text-shadow: 0 0 4px rgba(255, 204, 51, 0.6);
}

.terminal-line.system {
  color: #66ccff;
  text-shadow: 0 0 4px rgba(102, 204, 255, 0.6);
}

.terminal-line.dim {
  color: #1a9a3a;
}

.terminal-input-line {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  color: #33ff66;
  font-size: 13px;
  text-shadow: 0 0 4px rgba(51, 255, 102, 0.6);
}

.terminal-prompt {
  margin-right: 8px;
  white-space: nowrap;
}

.terminal-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #33ff66;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 13px;
  text-shadow: 0 0 4px rgba(51, 255, 102, 0.6);
  caret-color: transparent;
}

.terminal-cursor {
  color: #33ff66;
  animation: cursor-blink 1s step-end infinite;
  margin-left: -4px;
}

@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.terminal-hint {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 20px;
  letter-spacing: 1px;
}

.hint-cmd {
  font-family: 'Consolas', 'Courier New', monospace;
  background: #1a1a30;
  color: #33ff66;
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid #2a4a2a;
}

/* Reports Section */
.reports-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #0a0a14 0%, #151525 100%);
}

.reports-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.report-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

.report-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #2a2a45 0%, #1a1a30 100%);
  border: 1px solid #3a3a5c;
  border-radius: 4px;
  color: #888;
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.report-tab:hover {
  background: linear-gradient(180deg, #3a3a55 0%, #2a2a40 100%);
  color: #c0c0c0;
}

.report-tab.active {
  background: linear-gradient(180deg, #3a7ca5 0%, #2a5c85 100%);
  border-color: #4a8cb5;
  color: #fff;
}

.report-tab.locked {
  opacity: 0.7;
}

.report-tab.locked:hover {
  border-color: #8b0000;
}

.tab-icon {
  font-size: 16px;
}

.tab-text {
  flex: 1;
}

.lock-indicator {
  font-size: 12px;
  color: #d4af37;
}

.clearance-badge {
  font-size: 9px;
  padding: 2px 6px;
  background: rgba(139, 0, 0, 0.5);
  border: 1px solid #8b0000;
  border-radius: 2px;
  color: #ff6b6b;
}

.report-panel {
  flex: 1;
  background: linear-gradient(180deg, #1a1a30 0%, #151525 100%);
  border: 1px solid #3a3a5c;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.report-content {
  display: none;
}

.report-content.active {
  display: block;
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(180deg, #2a2a45 0%, #1f1f35 100%);
  border-bottom: 2px solid #3a3a5c;
}

.report-header h3 {
  font-size: 16px;
  font-weight: bold;
  color: #e0e0e0;
  letter-spacing: 2px;
}

.clearance-level {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 3px;
}

.clearance-level.public {
  background: rgba(40, 120, 40, 0.3);
  color: #6f6;
  border: 1px solid #4a4;
}

.clearance-level.level-2 {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  border: 1px solid #a08020;
}

.clearance-level.level-3 {
  background: rgba(255, 165, 0, 0.2);
  color: #ffa500;
  border: 1px solid #cc8400;
}

.clearance-level.level-4 {
  background: rgba(255, 100, 100, 0.2);
  color: #ff6464;
  border: 1px solid #cc4040;
}

.clearance-level.level-5 {
  background: rgba(139, 0, 0, 0.4);
  color: #ff4444;
  border: 1px solid #8b0000;
}

.report-body {
  padding: 20px;
  max-height: 600px;
  overflow-y: auto;
}

.document-entry {
  background: rgba(0,0,0,0.2);
  border: 1px solid #2a2a45;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
}

.document-entry:last-child {
  margin-bottom: 0;
}

.document-entry.transcript {
  background: rgba(40, 60, 80, 0.2);
  border-color: #3a5a7c;
}

.document-date {
  font-size: 12px;
  font-weight: bold;
  color: #6af;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a45;
}

.document-text {
  font-size: 13px;
  color: #a0a0a0;
  line-height: 1.8;
}

.document-text p {
  margin-bottom: 12px;
}

.document-text p:last-child {
  margin-bottom: 0;
}

.document-text strong {
  color: #c0c0c0;
}

.document-text em {
  color: #888;
  font-style: italic;
}

.redacted-code {
  font-family: 'Consolas', 'Courier New', monospace;
  background: #1a1a1a;
  color: #6af;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 11px;
}

.classified-placeholder {
  text-align: center;
  padding: 40px 20px;
}

.classified-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.classified-placeholder h4 {
  font-size: 18px;
  color: #888;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.classified-placeholder > p {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
}

/* Login Overlay */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.login-modal {
  background: linear-gradient(180deg, #252540 0%, #1a1a30 100%);
  border: 2px solid #3a3a5c;
  border-radius: 8px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #666;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: #c0c0c0;
}

.login-header {
  text-align: center;
  margin-bottom: 16px;
}

.login-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
}

.login-header h3 {
  font-size: 18px;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 3px;
}

.login-desc {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  background: linear-gradient(180deg, #1a1a30 0%, #151525 100%);
  border: 1px solid #3a3a5c;
  border-radius: 4px;
  color: #e0e0e0;
  font-size: 14px;
  font-family: 'Consolas', 'Courier New', monospace;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #6af;
  box-shadow: 0 0 8px rgba(102, 170, 255, 0.2);
}

.login-error {
  background: rgba(139, 0, 0, 0.3);
  border: 1px solid #8b0000;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #ff6b6b;
  text-align: center;
  letter-spacing: 1px;
}

.login-submit {
  width: 100%;
  padding: 12px;
}

.login-warning {
  text-align: center;
  font-size: 10px;
  color: #8b0000;
  margin-top: 16px;
  letter-spacing: 1px;
}

/* Scrollbar styling for report body */
.report-body::-webkit-scrollbar {
  width: 8px;
}

.report-body::-webkit-scrollbar-track {
  background: #1a1a30;
}

.report-body::-webkit-scrollbar-thumb {
  background: #3a3a5c;
  border-radius: 4px;
}

.report-body::-webkit-scrollbar-thumb:hover {
  background: #4a4a6c;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
  }

  .entity-grid {
    grid-template-columns: 1fr;
  }

  .reports-container {
    flex-direction: column;
  }

  .report-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: auto;
  }

  .report-tab {
    flex: 1;
    min-width: 150px;
    justify-content: center;
  }

  .tab-text {
    display: none;
  }

  .report-body {
    max-height: 400px;
  }
}
