* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1a1a2e;
  color: #eee;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  padding: 1.5rem;
}

.hidden {
  display: none !important;
}

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

h1 {
  font-size: 1.8rem;
  color: #e94560;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 1.2rem;
  color: #aaa;
  margin: 1.5rem 0 0.8rem;
}

.info {
  text-align: center;
  color: #aaa;
  font-size: 1.1rem;
}

/* Join form */
#join-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#name-input {
  font-size: 1.2rem;
  padding: 0.8rem 1rem;
  border: 2px solid #333;
  border-radius: 8px;
  background: #16213e;
  color: #eee;
  outline: none;
  text-align: center;
}

#name-input:focus {
  border-color: #e94560;
}

#join-form button {
  font-size: 1.2rem;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background: #e94560;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

#join-form button:active {
  background: #c73652;
}

.error {
  color: #ff6b6b;
  text-align: center;
  margin-top: 1rem;
}

/* Game selection buttons */
.game-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 2px solid #333;
  border-radius: 8px;
  background: #16213e;
  color: #eee;
  cursor: pointer;
  text-align: left;
}

.game-btn:active {
  border-color: #e94560;
  background: #1a1a3e;
}

.game-btn strong {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.game-btn span {
  font-size: 0.85rem;
  color: #aaa;
}

/* Player list */
.player-list {
  list-style: none;
}

.player-list li {
  font-size: 1.1rem;
  padding: 0.6rem 0.8rem;
  margin: 0.3rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.player-list li.me {
  border-left: 3px solid #e94560;
}

.host-badge {
  font-size: 0.65rem;
  background: #e94560;
  color: #fff;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
