body {
  margin: 0;
  font-family: 'VT323', monospace;
  background: #001b00;
  color: #a8ff60;
}
header {
  padding: 12px 20px;
  background: #003000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
header h1 {
  margin: 0;
  font-size: 22px;
}
header button {
  background: #002200;
  color: #a8ff60;
  border: 1px solid #0a480a;
  padding: 6px 12px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
}
header button:hover {
  background: #003800;
}
header button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
main {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 16px;
  padding: 16px;
}
.card {
  background: #002200;
  border-radius: 0;
  padding: 14px;
  border: 2px solid #0a480a;
}
.section-title {
  font-size: 16px;
  color: #66ff66;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.option {
  margin: 8px 0;
  padding: 16px;
  border: 2px solid #0a480a;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  background: #001b00;
}
.option:hover {
  background: #003000;
  border-color: #0f6a0f;
}
.option-title {
  font-weight: bold;
  color: #a8ff60;
  margin-bottom: 8px;
  font-size: 18px;
}
.option-description {
  color: #99ff99;
  font-size: 16px;
  line-height: 1.3;
}
.option-badges { margin-top: 8px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge { display:inline-block; padding:2px 6px; border-radius:999px; font-size:11px; border:1px solid transparent; }
.badge-tag { background:#002200; color:#99ff99; border-color:#0a480a; }
.badge-favored { background: rgba(102,255,102,0.15); color:#66ff66; border-color: rgba(102,255,102,0.3); }
.outcome-summary {
  background: #001b00;
  border: 2px solid #0a480a;
  border-radius: 0;
  padding: 20px;
  margin: 16px 0;
}
.delta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.delta-title {
  color: #66ff66;
  font-weight: bold;
  margin-bottom: 6px;
}
.delta-list {
  margin: 0;
  padding-left: 18px;
}
.delta-list.positive li { color: #66ff66; }
.delta-list.negative li { color: #ff7070; }
.delta-none { color: #99ff99; font-style: italic; }
.watchlist { margin-top: 16px; }
.watch-title { color: #e6e9ef; font-weight: bold; margin-bottom: 6px; }
.watch-list { margin: 0; padding-left: 18px; }
.turn-log { margin-top: 16px; }
.turnlog-title { color:#e6e9ef; font-weight:bold; margin-bottom:6px; }
.turnlog-list { margin:0; padding-left:18px; }
.outcome-summary h3 {
  color: #66ff66;
  margin: 0 0 12px 0;
  font-size: 18px;
}
.outcome-summary p {
  color: #a8ff60;
  line-height: 1.4;
  margin: 0;
}
.continue-prompt {
  text-align: center;
  color: #9aa3b2;
  font-style: italic;
  padding: 20px;
  background: #1a1d29;
  border-radius: 8px;
  border: 1px dashed #2d3345;
}
.dice-display {
  background: #001b00;
  border: 2px solid #0a480a;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}
.dice-display h3 {
  color: #66ff66;
  margin: 0 0 16px 0;
  text-align: center;
}
.dice-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.dice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #002200;
  border: 1px solid #0a480a;
  color: #a8ff60;
}
.dice-value {
  font-weight: bold;
  color: #66ff66;
  font-size: 20px;
}
.dice-impact {
  text-align: center;
  color: #9aa3b2;
  font-style: italic;
}
.scenario-content {
  margin-top: 20px;
}
.scenario-content h2 {
  color: #a8ff60;
  margin: 0 0 12px 0;
}
.scenario-content p {
  color: #99ff99;
  line-height: 1.4;
  margin: 0;
}
.why-scenario {
  margin-top: 12px;
  color: #9aa3b2;
  font-size: 13px;
  font-style: italic;
}
.wait-for-dice {
  text-align: center;
  padding: 40px 20px;
  background: #001b00;
  border-radius: 0;
  border: 2px solid #0a480a;
}
.wait-for-dice h3 {
  color: #66ff66;
  margin: 0 0 16px 0;
}
.wait-for-dice p {
  color: #99ff99;
  margin: 8px 0;
}
.roll-dice-btn {
  background: #003800;
  color: #a8ff60;
  border: 2px solid #0a480a;
  padding: 16px 32px;
  border-radius: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin: 16px 0;
}
.roll-dice-btn:hover {
  background: #004a00;
}
.game-start {
  text-align: center;
  padding: 40px 20px;
  background: #001b00;
  border-radius: 0;
  border: 2px solid #0a480a;
}
.game-start h2 {
  color: #66ff66;
  margin: 0 0 20px 0;
}
.game-start p {
  color: #99ff99;
  margin: 12px 0;
  line-height: 1.6;
}
.dice-roll {
  margin: 10px 0;
  padding: 8px;
  background: #1a1d29;
  border-radius: 6px;
  font-size: 14px;
  color: #9aa3b2;
}
.message {
  margin: 10px 0;
  padding: 12px;
  background: #002200;
  border-radius: 0;
  border: 2px solid #0a480a;
}

/* Delta chips in stats */
.delta-chip {
  display: inline-block;
  padding: 1px 6px;
  margin-left: 6px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 14px;
  vertical-align: middle;
}
.delta-up { background: rgba(102,255,102,0.15); color: #66ff66; border: 1px solid rgba(102,255,102,0.3); }
.delta-down { background: rgba(255,112,112,0.15); color: #ff7070; border: 1px solid rgba(255,112,112,0.3); }
.archetype-grid,
.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.archetype-card,
.template-card {
  padding: 16px;
  border: 2px solid #2d3345;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: #1a1d29;
}
.archetype-card:hover,
.template-card:hover {
  border-color: #4a5568;
  background: #2d3345;
}
.archetype-card.selected,
.template-card.selected {
  border-color: #4a90e2;
  background: #2d3345;
}
.archetype-card h3,
.template-card h3 {
  margin: 0 0 8px;
  color: #e6e9ef;
}
.archetype-card p,
.template-card p {
  margin: 0;
  font-size: 14px;
  color: #9aa3b2;
}
#startGame {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 16px;
  background: #4a90e2;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}
#startGame:hover {
  background: #357abd;
}
#startGame:disabled {
  background: #666;
  cursor: not-allowed;
}

/* Recruiter intro */
.recruiter-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recruiter-bubble {
  background: #1a1d29;
  border: 2px solid #4a90e2;
  border-radius: 10px;
  padding: 16px;
}
.recruiter-name {
  font-weight: bold;
  color: #4a90e2;
  margin-bottom: 8px;
}
.resume-grid,
.jd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.resume-card,
.jd-card {
  padding: 16px;
  border: 2px solid #2d3345;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: #1a1d29;
}
.resume-card:hover,
.jd-card:hover {
  border-color: #4a5568;
  background: #2d3345;
}
.resume-card.selected,
.jd-card.selected {
  border-color: #4a90e2;
  background: #2d3345;
}
.resume-card h3,
.jd-card h3 {
  margin: 0 0 8px;
  color: #e6e9ef;
}
.resume-card p,
.jd-card p {
  margin: 0;
  font-size: 14px;
  color: #9aa3b2;
}
.signals {
  margin: 10px 0 0 18px;
  color: #9aa3b2;
}
.signals li {
  margin: 4px 0;
}
