.screen {
  max-width: 600px;
  margin: 0 auto;
}

.screen-header {
  text-align: center;
  margin-bottom: 24px;
}

.screen-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #000000;
}

.screen-subtitle {
  font-size: 14px;
  color: var(--secondary);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.option-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.option-card:active {
  border-color: var(--primary);
  transform: scale(0.98);
}

.option-card.selected {
  border-color: var(--primary);
  background: rgba(36, 129, 204, 0.1);
}

.option-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.option-title {
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 14px;
  color: #000000 !important;
  min-height: 20px;
}

.option-description {
  font-size: 12px;
  color: #666666 !important;
}

.lobby-players {
  margin: 16px 0;
}

.lobby-player {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: white;
  border-radius: 8px;
  margin-bottom: 8px;
}

.ready-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}

.ready-badge.ready {
  background: var(--success);
  color: white;
}

.ready-badge.waiting {
  background: var(--warning);
  color: black;
}

.game-narrative {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 12px;
  margin: 16px 0;
  line-height: 1.8;
  font-size: 15px;
  color: #000000;
}

.actions-container {
  margin: 16px 0;
}

.history-entry {
  background: white;
  border-left: 4px solid var(--primary);
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 4px;
}

.history-round {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 4px;
}

.results-stats {
  background: white;
  padding: 16px;
  border-radius: 12px;
  margin: 16px 0;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  color: var(--secondary);
}

.stat-value {
  font-weight: bold;
  color: #000000;
}
