* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
  background-color: #0f172a;
  color: #f8fafc;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px 16px;
}

.container {
  max-width: 850px;
  width: 100%;
  text-align: center;
}

header {
  margin-bottom: 24px;
}

h1 {
  color: #38bdf8;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

header p {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Status Dashboard */
.status-board {
  display: flex;
  justify-content: space-around;
  background-color: #1e293b;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #334155;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat .label {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat .value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #facc15;
  margin-top: 4px;
}

/* Action Buttons */
.primary-btn, .sim-btn {
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.primary-btn:hover, .sim-btn:hover:not(:disabled) {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.primary-btn:active, .sim-btn:active:not(:disabled) {
  transform: translateY(0);
}

.sim-btn:disabled {
  background-color: #334155;
  color: #64748b;
  cursor: not-allowed;
  box-shadow: none;
}

/* Drafting Cards */
.card-options {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.player-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 2px solid #38bdf8;
  border-radius: 12px;
  padding: 16px;
  width: 220px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.15);
}

.player-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #22c55e;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

.player-card h3 {
  color: #f8fafc;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.player-card p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 3px 0;
}

/* Roster Grid & Slots */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 28px;
}

.roster-slot {
  background-color: #1e293b;
  padding: 14px;
  border-radius: 8px;
  border: 2px dashed #475569;
  font-size: 0.9rem;
  color: #94a3b8;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.roster-slot.filled {
  background-color: #0f172a;
  border-style: solid;
  border-color: #38bdf8;
  color: #f8fafc;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Simulation Results */
.sim-results {
  margin-top: 24px;
  padding: 16px;
  background-color: #1e293b;
  border-radius: 10px;
  border: 1px solid #334155;
  font-size: 1.2rem;
  font-weight: 700;
}

.sim-results p {
  margin: 6px 0;
}