/* Reset */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0d0d0d;
  color: #fff;
}

/* Branding */
#branding {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  background-color: #000;
  border-bottom: 1px solid #333;
}

.brand-name {
  font-size: 18px;
  font-weight: bold;
  color: #00e5ff;
}

.brand-tagline {
  font-size: 12px;
  color: #bbb;
}

/* Main Container */
#game-container {
  padding: 10px 20px;
  max-width: 420px;
  margin: auto;
  text-align: center;
}

/* Start Screen */
#start-screen h2 {
  margin-top: 30px;
  color: #00e5ff;
}

input[type="text"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin: 15px 0;
  border: none;
  border-radius: 8px;
  background: #222;
  color: #fff;
}

button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background-color: #00e5ff;
  color: #000;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  font-weight: bold;
}

/* Game Screen */
#game-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

#question-area {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffcc00;
}

#image-area img {
  width: 90%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  margin: 15px 0;
  border: 2px solid #555;
}

/* Answer / Status */
#answer-area {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

#status {
  font-size: 18px;
  color: #00e5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dots {
  animation: blink 1s infinite;
  font-size: 22px;
  color: #00e5ff;
}

@keyframes blink {
  0%   { opacity: 0.2; }
  50%  { opacity: 1; }
  100% { opacity: 0.2; }
}

#result {
  margin-top: 10px;
  font-size: 18px;
  color: #90ee90;
}

/* Mai Name */
.mai-name {
  color: #ff4081;
  font-weight: bold;
}
