body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0b1a2a, #020617);
  color: white;
}

#game {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.main-button {
  width: 100%;
  max-width: 400px;
  margin: 10px 0;
  padding: 16px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  border: none;
  background: #2563eb;
  color: white;
  transition: 0.2s;
}

.main-button:hover {
  background: #1d4ed8;
}

.images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
}

.panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 280px;
}

.prompt {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

#cropped, #full {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border-radius: 12px;
  border: 2px solid #444;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#cropped {
  background-size: 300% 300%;
}

#options {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
}

#options button {
  width: 100%;
  max-width: 400px;
  margin: 8px 0;
  padding: 14px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  border: none;
}

#result, #score, #timer {
  font-size: 20px;
  margin-top: 10px;
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 600px) {
  .images {
    flex-direction: column;
    align-items: center;
  }

  #cropped, #full {
    height: 220px;
  }

  #options button {
    font-size: 22px;
    padding: 18px;
  }

  #startBtn {
    font-size: 26px;
    padding: 22px 36px;
  }

  #score, #timer, #result {
    font-size: 22px;
  }

  .prompt {
    font-size: 22px;
  }

  body {
    font-size: 18px;
  }
}