/* ==========================================================================
   excavator.css — Excavator Run
   ========================================================================== */

/* Day shift on the jobsite: the surround is the same clear sky as the game. */
body.gamepage { background: linear-gradient(180deg, #bfdbfe 0%, #e0f2fe 100%); }
#stage { background: #93c5fd; }

.combo {
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 4;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #21160a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(242, 176, 30, .40);
  transition: opacity .18s ease, transform .18s ease;
}
.combo.off { opacity: 0; transform: translateX(-50%) scale(.85); }

.fifty {
  position: absolute;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 4;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(242, 176, 30, .6);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .92);
  color: var(--gold2);
  box-shadow: var(--sh-soft);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.tapcue {
  position: absolute;
  left: 50%;
  bottom: 30%;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(17, 23, 38, .55);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .6px;
  pointer-events: none;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50%      { transform: translateX(-50%) translateY(-6px); opacity: .9; }
}
