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

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
  font-family: 'Space Mono', monospace;
}

#game {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.picker-container {
  text-align: center;
  background: #0a0a0a;
  padding: 40px;
  border: 2px solid #333;
}

.picker-container h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 2px;
}

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

.color-option {
  width: 70px;
  height: 70px;
  cursor: pointer;
  transition: all 0.2s;
  border: 3px solid #333;
}

.color-option:hover {
  transform: scale(1.05);
  border-color: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .color-option {
    width: 60px;
    height: 60px;
  }
}