/* ==========================================================================
   wortjagd.css – Mini-Game: Verben fangen (Prefix: hwh__)
   ========================================================================== */

.hwh__container {
  max-width: 1040px;
  margin: 0 auto;
}

.hwh__title {
  text-align: left;
}

.hwh__hud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 800;
}

.hwh__hud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f4f5f8;
  color: var(--hb-navy);
}

.hwh__game {
  position: relative;
  height: 340px;
  overflow: hidden;
  border: 1.5px solid var(--hb-border);
  border-radius: 20px;
  background: var(--hb-bg-soft);
}

.hwh__word {
  position: absolute;
  padding: 8px 12px;
  border: 2px solid #e5e5ea;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  user-select: none;
}

.hwh__word.is-verb {
  border-color: var(--hb-success);
  background: var(--hb-success-bg);
  color: #067247;
}

.hwh__word.is-noun {
  border-color: var(--hb-danger);
  background: var(--hb-danger-bg);
  color: #9d2424;
}

.hwh__bucket {
  position: absolute;
  bottom: 12px;
  left: 120px;
  width: 76px;
  height: 42px;
  border-radius: 14px 14px 20px 20px;
  background: var(--hb-primary);
  box-shadow: 0 10px 20px rgba(255, 91, 0, 0.28);
}

.hwh__bucket::before {
  content: "";
  position: absolute;
  inset: -8px 10px auto;
  height: 13px;
  border: 4px solid var(--hb-primary);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.hwh__btn {
  margin-top: 18px;
}

.hwh__btn:disabled {
  background: #c8cad4;
  box-shadow: none;
  cursor: default;
  transform: none;
}

.hwh__caught {
  max-width: 820px;
  margin: 20px auto 0;
  text-align: left;
}

.hwh__caught-title {
  margin: 8px 0 10px;
  color: var(--hb-navy);
  font-size: 17px;
  font-weight: 850;
}

.hwh__caught-item {
  display: flex;
  gap: 12px;
  margin-bottom: 9px;
  padding: 10px 12px;
  border: 1.5px solid var(--hb-success);
  border-radius: 14px;
  background: var(--hb-success-bg);
  color: #067247;
  font-size: 14px;
  font-weight: 650;
}

.hwh__caught-item strong {
  min-width: 180px;
  color: var(--hb-primary);
  font-weight: 850;
}

@media (max-width: 760px) {
  .hwh__title {
    text-align: center;
  }

  .hwh__caught-item {
    flex-direction: column;
    gap: 2px;
  }

  .hwh__caught-item strong {
    min-width: 0;
  }
}
