.page-balloon #presence-progress,
.page-balloon .presence-mascot {
  display: none;
}

.screen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.start-emoji {
  margin: 0;
  font-size: clamp(3.5rem, 16vw, 5rem);
  line-height: 1;
  text-align: center;
}

.subtitle {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.35;
}

.play-hud {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
}

.timer-text {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 11vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-grove-deep);
  font-variant-numeric: tabular-nums;
}

.score-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.play-field {
  position: relative;
  flex: 1 1 auto;
  min-height: clamp(16rem, 48dvh, 22rem);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, #b3e5fc 0%, #e1f5fe 55%, #fff8e1 100%);
  border: 3px solid rgba(3, 169, 244, 0.22);
  overflow: hidden;
  touch-action: manipulation;
}

.float-item {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(4.4rem, 18vw, 5.4rem);
  height: clamp(4.4rem, 18vw, 5.4rem);
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
  font-size: clamp(2.4rem, 11vw, 3.1rem);
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.float-item:active {
  filter: brightness(1.08);
}

.balloon-item.is-pop {
  animation: pop-away 0.16s ease-out forwards;
}

@keyframes pop-away {
  to {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 0;
  }
}

.feedback {
  min-height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 0.4rem 0.75rem;
  flex-shrink: 0;
}

.feedback-correct {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.feedback-wrong {
  background: var(--color-warn-bg);
  color: #d68910;
}

.final-score {
  text-align: center;
  font-size: clamp(1.35rem, 5vw, 1.65rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-grove-deep);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .balloon-item.is-pop {
    animation: none;
  }
}
