/* --- RESET & BASE -------------------------------------------- */
html, body {
  width: 100%; /* Ensure full width */
  height: 100%; /* Ensure full height */
  margin: 0;
  padding: 0; /* Add padding reset */
  background: #222; /* Fallback body background */
  color: #0f0; 
  font-family: "Courier New", monospace; /* Default for terminal */
  overflow: hidden; /* Already present, good */
  box-sizing: border-box; /* Add for consistency */
}

/* --- NEW ANIMATED ASCII GRID BACKDROP - REMOVED --------------- */
/* Ensure Press Start 2P is loaded via <link> in HTML */

/* --- INTRO CONTENT OVERLAY ------------------------------------ */
#intro-content-overlay {
  position: fixed; 
  inset: 0;
  z-index: 10; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  background-color: rgba(0,0,0,0.9); /* Increased opacity for better readability */
}

pre.manifesto {
  max-width: 100ch; /* Slightly reduced for potentially smaller font */
  margin: 0 auto 2rem;
  color: #f00; 
  font-size: 1em; 
  font-family: "Courier New", monospace; /* Keep manifesto font for readability */
  white-space: pre-wrap; 
  text-shadow: 0 0 5px #f00, 0 0 10px #f00;
  line-height: 1.4;
}

#init {
  background: #ff0000;
  border: none;
  border-radius: 4px;
  color: #000;
  font-family: "Courier New", monospace; /* Or 'Press Start 2P' for consistency */
  font-weight: bold;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 0 8px #f00, 0 0 16px #f00 inset;
  animation: pulse 1s infinite alternate;
  text-transform: uppercase;
}

#init:active {
  transform: scale(0.95);
}

@keyframes pulse {
  from { transform: scale(1); box-shadow: 0 0 8px #f00, 0 0 16px #f00 inset; }
  to { transform: scale(1.08); box-shadow: 0 0 12px #f00, 0 0 24px #f00 inset, 0 0 5px #fff; }
}

/* Remove or update old intro styles if they conflict */
/* #intro-container, #content, #ascii-bg (old one) etc. */
#intro-container, #content, #ascii-bg /* old #ascii-bg */ {
    display: none; /* Ensure old intro elements using these IDs are hidden */
}


/* --- MAIN TERMINAL STYLES (EXISTING - largely unchanged but check for conflicts) --- */
#terminal {
  display: none; 
  flex-direction: column;
  height: 100vh; 
  background-color: #000;
  padding: 10px;
  box-sizing: border-box;
  color: #0f0; 
  overflow: hidden; 
  position: relative; /* Added for z-indexing if needed relative to intro */
  z-index: 5; /* Ensure terminal is above hidden intro elements if any overlap */
}

/* ... (rest of your existing terminal styles: #terminal-content, scrollbar, .input-container, etc.) ... */
/* Ensure they don't conflict with new body/html or global styles */

#terminal-content {
  flex-grow: 1;
  overflow-y: auto; 
  padding-right: 10px; 
  word-wrap: break-word;
  white-space: pre-wrap;
}

#terminal-content::-webkit-scrollbar {
  width: 8px;
}

#terminal-content::-webkit-scrollbar-track {
  background: #111;
}

#terminal-content::-webkit-scrollbar-thumb {
  background-color: #0f0;
  border-radius: 4px;
  border: 1px solid #000;
}

.input-container {
  display: flex;
  align-items: flex-start; 
  padding-top: 10px;
  border-top: 1px solid #0a0a0a; 
}

#input-prefix {
  color: #0f0; 
  margin-right: 5px;
  white-space: nowrap;
  padding-top: 0.2em; 
}

#user-input {
  flex-grow: 1;
  background-color: transparent;
  border: none;
  color: #0f0;
  font-family: "Courier New", monospace;
  font-size: 1em;
  outline: none;
  resize: none;
  overflow-y: auto; 
  max-height: 150px; 
  caret-color: #0f0; 
  line-height: 1.5em; 
  padding: 0; 
}

.aurora-message, .user-message, .system-message, .system-error {
  margin-bottom: 10px;
  line-height: 1.5em;
}

.system-message, .system-error {
  color: #ff4444; 
  font-style: italic;
}

#loading-indicator, #aurora-typing-indicator {
  color: #0f0;
  margin: 10px 0;
  font-style: italic;
}

.typing-dots {
  display: inline-block;
  width: 1.5em; 
  text-align: left;
}

.reasoning-details {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px dashed rgba(0, 255, 0, 0.3);
  padding: 10px;
  background-color: rgba(0, 255, 0, 0.05);
}

.reasoning-details summary {
  cursor: pointer;
  color: #0f0;
  font-style: italic;
  outline: none;
}

.reasoning-details summary:hover {
  text-decoration: underline;
}

.reasoning-text {
  margin-top: 8px;
  white-space: pre-wrap;
  color: rgba(0, 255, 0, 0.8);
  font-size: 0.9em;
}

.ascii-art {
  color: #0f0; 
  white-space: pre;
  font-family: "Courier New", monospace; 
  line-height: 1.1; 
  margin-top: 10px;
  margin-bottom: 10px;
  text-shadow: 0 0 3px #0f0;
}

#restart-button-container button {
    background-color: #000;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 10px 20px;
    font-family: "Courier New", monospace;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 0 5px #0f0;
    text-transform: uppercase;
}

#restart-button-container button:hover {
    background-color: #0f0;
    color: #000;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Global styles from previous CSS that might conflict or be redundant - REVIEW */
/* * { ... } - This was too broad, specific resets are better */

/* body, html from previous might conflict if not merged carefully */
/* #terminal specific styles from previous CSS for matrixDrip, scanline, flicker etc. */
/* These were very specific and might be too much with the new grid background */
/* Consider removing them if the new grid is the primary visual */

/* #terminal::before, #terminal::after { content: none !important; } */ /* Example of disabling old effects */

/* Ensure old #intro-screen and its children are not styled if IDs were reused or similar */
#intro-screen /* old ID */, #ascii-art-intro /* old ID */, #intro-text-container /* old ID */ {
    display: none !important; 
}

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', monospace;
}

body, html {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  color: #0f0;
  font-family: 'Courier New', Courier, monospace;
}

/* Terminal styles */
#terminal {
  width: 100%;
  height: 100vh;
  background-color: #000;
  color: #0f0;
  text-shadow: 0 0 5px #0f0;
  background-image: 
    radial-gradient(rgba(0, 50, 0, 0.1) 2px, transparent 2px),
    radial-gradient(rgba(0, 50, 0, 0.15) 2px, transparent 2px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  animation: scanline 10s linear infinite;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Matrix code drip effect (renamed from bloodDrip for clarity) */
#terminal::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 100, 0, 0.4));
  animation: matrixDrip 15s infinite;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

@keyframes matrixDrip {
  0%, 100% { transform: translateY(-30px); }
  50% { transform: translateY(100vh); }
}

@keyframes scanline {
  0% {
    background-position: 0 0, 25px 25px;
  }
  100% {
    background-position: 0 100px, 25px 125px;
  }
}

#terminal::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 20, 0, 0), rgba(0, 20, 0, 0.1) 50%, rgba(0, 20, 0, 0));
  pointer-events: none;
  animation: flicker 0.3s infinite;
  opacity: 0.15;
}

@keyframes flicker {
  0% { opacity: 0.15; }
  50% { opacity: 0.2; }
  100% { opacity: 0.15; }
}

#terminal-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  width: 100%;
}

#output {
  white-space: pre-wrap;
  word-wrap: break-word;
  margin-bottom: 10px;
  line-height: 1.5;
}

.typed-text {
  display: block;
  margin-bottom: 10px;
}

#input-line {
  display: flex;
  align-items: center;
}

.prompt {
  color: #0f0;
  margin-right: 5px;
}

.input-container {
  width: 100%;
  display: flex;
  overflow: visible;
  margin-bottom: 10px;
  position: relative;
  border: none;
  padding: 5px 10px;
  white-space: nowrap;
  background-color: #050505;
}

/* Contêiner para o prefixo - parte inativa da linha de comando */
#input-prefix {
  color: #0f0;
  font-size: 16px;
  padding: 0;
  margin: 0 5px 0 0;
  line-height: 1.5em;
  white-space: nowrap;
  display: inline-block;
  text-shadow: 0 0 5px #0f0;
  font-family: 'Courier New', monospace;
  border: none;
  background: transparent;
}

/* Cursor do sistema que pode ser posicionado */
#user-input {
  background: transparent;
  border: none;
  outline: none;
  color: #0f0;
  font-size: 1em;
  flex-grow: 1;
  caret-color: transparent;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: auto;
  resize: none;
  min-height: 1.5em;
  max-height: 10em;
  line-height: 1.5em;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-shadow: 0 0 5px #0f0;
  vertical-align: top;
}

#user-input::placeholder {
  color: #0f0;
  opacity: 1;
  animation: blink 1s infinite;
}

/* Blinking cursor animation */
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background-color: #0f0;
  animation: blink 1s infinite;
  vertical-align: middle;
}

/* Glitch effect for ASCII art */
@keyframes glitch {
  0% { transform: translate(0); text-shadow: 0 0 5px #0f0; }
  20% { transform: translate(-2px, 2px); text-shadow: 2px 0 5px #0f0, -2px 0 3px #0ff; }
  40% { transform: translate(-2px, -2px); text-shadow: -3px 0 2px #0f0, 3px 0 3px #f00; }
  60% { transform: translate(2px, 2px); text-shadow: 0 -3px 5px #0f0, 0 3px 3px #00f; }
  80% { transform: translate(2px, -2px); text-shadow: 0 0 10px #0f0; }
  100% { transform: translate(0); text-shadow: 0 0 5px #0f0; }
}

/* Interference lines for ASCII art */
@keyframes interference {
  0% { background-position: 0 0; }
  100% { background-position: 0 100%; }
}

/* ASCII art styling with reduced animations */
.ascii-art {
  display: inline-block;
  color: #0f8;
  text-shadow: 0 0 5px #0f0;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-left: 2px solid #0f0;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0) 0%, 
    rgba(0, 0, 0, 0) 48%, 
    rgba(0, 255, 0, 0.1) 50%,
    rgba(0, 0, 0, 0) 52%, 
    rgba(0, 0, 0, 0) 100%);
  background-size: 100% 20px;
}

.ascii-art::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 0, 0.03) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
}

/* Text content styling */
.text-content {
  margin-bottom: 10px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: #0f0;
}

/* Speaker styles */
[role="listitem"] {
  margin-bottom: 10px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}

[role="listitem"]:not(:last-child) {
  margin-bottom: 15px;
}

[role="listitem"]:nth-child(odd) {
  color: #0f0; /* Aurora messages */
}

[role="listitem"]:nth-child(even) {
  color: #6af; /* Human messages */
}

/* Screen reader only elements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* High contrast mode for better accessibility */
@media (prefers-contrast: more) {
  #terminal {
    color: #00ff00;
    text-shadow: 0 0 2px #000;
  }
  
  .text-content, #user-input, .prompt {
    color: #00ff00;
  }
  
  .ascii-art {
    border: 2px solid #00ff00;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  #terminal {
    animation: none;
  }
  
  #terminal::before, 
  #terminal::after {
    animation: none;
    opacity: 0.1;
  }
  
  .cursor {
    animation: blink 2s step-end infinite;
  }
  
  .ascii-art {
    transform: none !important;
  }
}

.typing-indicator {
  color: #0f0;
  margin-bottom: 10px;
  padding: 5px 0;
}

.typing-dots {
  display: inline-block;
  width: 30px;
}

/* Adicionar cursor customizado depois do texto no textarea */
.cursor-container {
  position: relative;
  display: inline-block;
}

#custom-cursor {
  display: none;
}

/* Remover a implementação do cursor customizado que não está funcionando */
.input-container::after {
  content: none;
}

/* Remover TODOS os pseudoelementos que podem causar barras verticais */
#terminal::before, #terminal::after,
#terminal-content::before, #terminal-content::after,
.input-container::before, .input-container::after,
#input-prefix::before, #input-prefix::after,
#user-input::before, #user-input::after {
  content: none !important;
  display: none !important;
  border: none !important;
}

/* Esconder cursor personalizado completamente */
#custom-cursor, .cursor {
  display: none !important;
}

/* Added style for restart-button-container if not already covered by inline */
#restart-button-container {
    flex-shrink: 0;
    /* text-align and padding are handled inline, display by JS */
}

.aurora-message pre.reasoning-text {
    background-color: #111;
    border-left: 3px solid #0f0;
    padding: 10px;
    margin-top: 5px;
    white-space: pre-wrap; /* Allows text to wrap */
    word-wrap: break-word; /* Breaks long words */
    font-family: 'Courier New', monospace;
    color: #ccc;
}

.aurora-message details.reasoning-details summary {
    cursor: pointer;
    color: #0f0;
    font-style: italic;
}

.aurora-message details.reasoning-details[open] summary {
    margin-bottom: 5px;
}

#ascii-art-intro {
  font-family: 'Courier New', Courier, monospace; /* Ensure monospaced font */
  white-space: pre; /* Crucial for ASCII formatting */
  font-size: 10px;   /* AUMENTADO - ajuste conforme necessário */
  line-height: 1.1;  /* Levemente aumentado para respiro */
  color: #0f0;       /* MUDADO PARA VERDE */
  margin-bottom: 0; /* Removido margin se o texto vai sobrepor */
  text-shadow: 0 0 3px #0f0, 0 0 5px #0f0; /* Sombreamento verde */
  overflow: auto; 
  max-width: 100%; 
  box-sizing: border-box;
  z-index: 1; /* Camada de baixo */
}

#intro-screen {
  display: flex; /* Keep flex for overall centering if needed before absolute children take over */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #000; 
  font-family: 'Courier New', Courier, monospace; 
  padding: 10px; 
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden; 
  position: relative; /* Contexto de posicionamento para #intro-text-container */
}

#intro-text-container {
  position: absolute; /* POSICIONAMENTO ABSOLUTO */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centraliza */
  width: 90%; /* Largura do container de texto, ajuste conforme necessário */
  max-width: 650px; /* Max largura para o texto não ficar muito espalhado */
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.65); /* Fundo semi-transparente para legibilidade sobre o ASCII */
  border-radius: 5px;
  z-index: 2; /* Camada de cima */
  text-align: center; /* Centraliza o texto dentro deste container */
}

#intro-text-container h1 {
  font-size: 2em; /* Ajustado */
  margin-bottom: 15px;
  color: #ff003c; /* Mantendo o vermelho/rosa para contraste, ou mude para #0f0 */
  text-shadow: 0 0 8px #ff003c, 0 0 12px #ff0000;
}

#intro-text-container p {
  font-size: 0.9em; /* Ajustado */
  margin-bottom: 12px;
  line-height: 1.4;
  color: #ddd; /* Cor clara para texto sobre fundo escuro semi-transparente */
}

#start-test-button {
  background-color: transparent; 
  color: #ff003c; /* Mantendo vermelho/rosa ou mude para #0f0 */
  border: 2px solid #ff003c;
  padding: 12px 25px;
  font-size: 1.1em;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px #ff003c, 0 0 15px #ff0000 inset; 
  letter-spacing: 1px;
}

#start-test-button:hover {
  background-color: #ff003c;
  color: #000;
  box-shadow: 0 0 15px #ff003c, 0 0 25px #ff0000, 0 0 5px #fff inset;
}

/* Styles for the main terminal (ensure they exist) */
#terminal {
  /* display: none; /* Initially hidden, JS will show it */
  /* Add other necessary styles for your terminal here if not already present */
  width: 100%;
  height: 100vh; /* Example */
  background-color: #000;
  color: #0f0;
  /* ... etc ... */
}

#terminal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* Allows scrolling for output */
}

#output {
  flex-grow: 1;
  padding: 10px;
  white-space: pre-wrap; /* So long lines wrap */
  overflow-wrap: break-word; /* Break long words if necessary */
}

.input-container {
  display: flex;
  padding: 5px 10px;
  background-color: #050505; /* Slightly different background for input area */
}

#input-prefix {
  color: #0f0; /* Green prefix */
  margin-right: 5px;
  white-space: nowrap;
}

#user-input {
  flex-grow: 1;
  background-color: transparent;
  border: none;
  color: #0f0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1em;
  outline: none;
  resize: none; /* Prevent manual resize */
  overflow-y: hidden; /* Hide scrollbar, height adjusts via JS */
  padding: 0;
  caret-color: #0f0; /* Ensure caret color is set */
}

.aurora-message, .system-message, .user-message, .system-error {
  margin-bottom: 5px;
}

/* New styles for input area with send button */
.input-area {
  display: flex;
  align-items: flex-end; /* Align items to the bottom for button and textarea */
  padding: 5px 10px;
  border-top: 1px solid #0a0a0a; 
  background-color: #050505;
}

/* Send button and hint styles */
.send-button-wrapper {
  display: flex;
  flex-direction: column; /* Stack button and hint vertically */
  align-items: center;    /* Center them horizontally */
  margin-left: 10px;      /* Space between textarea and button area */
}

#send-button {
  background-color: #0f0;
  color: #000;
  border: 1px solid #0f0;
  padding: 8px 12px; /* Adjust padding */
  font-family: "Courier New", monospace;
  font-size: 0.9em; /* Slightly smaller font */
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 3px;
  line-height: 1; /* Ensure text is vertically centered */
}

#send-button:hover {
  background-color: #000;
  color: #0f0;
  box-shadow: 0 0 5px #0f0;
}

#send-button:disabled {
  background-color: #555;
  color: #888;
  border-color: #555;
  cursor: not-allowed;
}

.send-hint {
  font-size: 0.7em;
  color: #888; /* Dim color for the hint */
  margin-top: 3px; /* Space between button and hint */
  white-space: nowrap;
}

/* --- MODAL STYLES (BYOK + ARCHIVES) --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background: #0a0a0a;
  border: 2px solid #0f0;
  padding: 30px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.modal-content.archives {
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-content h2 {
  color: #0f0;
  font-size: 1.4em;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #0f0;
}

.modal-content p {
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.5;
}

.modal-content .hint {
  color: #666;
  font-size: 0.85em;
}

.modal-content .hint.small {
  font-size: 0.75em;
  margin-top: 15px;
}

.modal-content .hint a {
  color: #0f0;
  text-decoration: none;
}

.modal-content .hint a:hover {
  text-decoration: underline;
}

.modal-content input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  font-size: 1em;
  font-family: 'Courier New', monospace;
  background: #000;
  border: 1px solid #0f0;
  color: #0f0;
  margin-bottom: 20px;
  box-sizing: border-box;
  outline: none;
}

.modal-content input[type="password"]:focus {
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-content button {
  background: #0f0;
  color: #000;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}

.modal-content button:hover {
  box-shadow: 0 0 15px #0f0;
  transform: scale(1.02);
}

.modal-content button.secondary {
  background: transparent;
  color: #0f0;
  border: 1px solid #0f0;
}

.modal-content button.secondary:hover {
  background: rgba(0, 255, 0, 0.1);
}

/* Archives list */
#archives-list {
  text-align: left;
  margin: 20px 0;
  max-height: 50vh;
  overflow-y: auto;
}

#archives-list::-webkit-scrollbar {
  width: 6px;
}

#archives-list::-webkit-scrollbar-thumb {
  background: #0f0;
  border-radius: 3px;
}

.archive-entry {
  border: 1px solid #333;
  padding: 15px;
  margin-bottom: 15px;
  background: rgba(0, 255, 0, 0.02);
}

.archive-entry:hover {
  border-color: #0f0;
  background: rgba(0, 255, 0, 0.05);
}

.archive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-role {
  color: #0f0;
  font-weight: bold;
  font-size: 1.1em;
}

.archive-score {
  color: #ff0;
  font-size: 0.9em;
}

.archive-date {
  color: #666;
  font-size: 0.8em;
}

.archive-qa {
  margin-top: 10px;
}

.archive-qa details {
  margin-bottom: 8px;
}

.archive-qa summary {
  cursor: pointer;
  color: #888;
  font-size: 0.9em;
}

.archive-qa summary:hover {
  color: #0f0;
}

.archive-qa .qa-content {
  padding: 10px;
  margin-top: 5px;
  background: #111;
  font-size: 0.85em;
  line-height: 1.4;
}

.archive-qa .question {
  color: #0f0;
  margin-bottom: 5px;
}

.archive-qa .answer {
  color: #aaa;
}

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

/* Recruitment modal */
.modal-content.recruit {
  border-color: #0ff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.modal-content.recruit h2 {
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
}

.modal-content.recruit .score-display {
  font-size: 1.5em;
  color: #0f0;
  margin: 10px 0;
}

.modal-content.recruit .role-display {
  font-size: 1.1em;
  color: #0ff;
  margin-bottom: 20px;
}

.modal-content.recruit .lever-btn {
  display: inline-block;
  background: #0ff;
  color: #000;
  padding: 12px 25px;
  font-size: 1em;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-content.recruit .lever-btn:hover {
  box-shadow: 0 0 15px #0ff;
  transform: scale(1.02);
}

.modal-content.recruit button {
  background: #0ff;
  color: #000;
}

.modal-content.recruit button:hover {
  box-shadow: 0 0 15px #0ff;
}

.modal-content.recruit button.secondary {
  background: transparent;
  color: #0ff;
  border: 1px solid #0ff;
}

.modal-content.recruit button.secondary:hover {
  background: rgba(0, 255, 255, 0.1);
} 