body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}

.game-container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  max-width: 400px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.scoreboard {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}

.blink-area {
  position: relative;
  height: 200px;
  margin-bottom: 20px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.blink-icon {
  position: absolute;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.blink-icon.blink {
  animation: blinkAnimation 0.3s infinite;
}

@keyframes blinkAnimation {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.controls button {
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  background-color: #ff7f50;
  color: white;
  transition: transform 0.2s;
}

.controls button:hover {
  transform: scale(1.05);
}

.note {
  font-size: 0.9rem;
  margin-top: 15px;
  color: #555;
}
