.frog-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subtitle {
  text-align: center;
  color: #748e8a;
  font-family: Helvetica, sans-serif;
  font-size: 13px;
  margin-top: -6px;
}

#game {
  width: min(420px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 20px 0 10px;
  padding: 20px;
  border: 1px solid black;
  border-radius: 5px;
  background: FloralWhite;
  box-shadow: 0 2px 3px #b3aa99;
}

/* album box sits inside the same card, visually separated */
.album-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d1d5c8;
}

.album-box label {
  font-size: 12px;
  color: #4c6b71;
}

.controls {
  display: flex;
  gap: 10px;
}

/* buttons reuse the site's back-card-container language */
.btn-frog {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  padding: 6px 14px;
  height: 30px;
  border: 1px solid #748e8a;
  border-radius: 6px;
  background: FloralWhite;
  color: #4c6b71;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-frog:hover:not(:disabled),
.btn-frog:focus:not(:disabled) {
  transform: translateY(-3px);
}

.btn-frog:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.round-dots {
  display: flex;
  gap: 6px;
}

.round-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #4c6b71;
  background: transparent;
}

.round-dot.spent {
  background: #d1d5c8;
  border-color: #d1d5c8;
}

.round-dot.current {
  background: rgb(192, 255, 222);
  border-color: #4c6b71;
}

#guess-form,
.album-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

#guess-input,
#album-input {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid #748e8a;
  border-radius: 5px;
  background: white;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  color: black;
}

#guess-input:focus,
#album-input:focus {
  outline: none;
  border-color: #4c6b71;
}

.message {
  min-height: 1.2em;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  text-align: center;
  margin: 0;
}

.message.correct { color: #4c6b71; font-weight: 600; }
.message.wrong { color: #c1714a; }

.album-message {
  min-height: 1.1em;
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  text-align: center;
  margin: 0;
}

.album-message.correct { color: #4c6b71; font-weight: 600; }
.album-message.wrong { color: #c1714a; }

.reveal {
  min-height: 1.2em;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  font-style: italic;
  color: #2f4858;
  margin: 0;
  text-align: center;
}

.reveal b { font-style: normal; }

.stats {
  font-family: monospace;
  font-size: 11px;
  color: #748e8a;
  margin: 4px 0 0;
}