/* pwa/games/vocab-catcher.css */
.game-stage {
  display: flex; flex-direction: column;
  flex: 1; min-height: 0;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(45,90,30,0.35) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 60%, var(--bg-secondary) 100%);
}

.vc-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--border-bronze);
}
.vc-topbar .vc-hearts { color: var(--accent-red); letter-spacing: 2px; font-size: 16px; }
.vc-topbar .vc-score { color: var(--accent-gold); font-weight: 700; font-size: 16px; }
.vc-topbar .vc-quit {
  background: transparent; border: 0; color: var(--text-muted);
  font-size: 22px; cursor: pointer; padding: 4px 10px;
  font-family: inherit;
}

.vc-target { text-align: center; padding: 14px 12px 8px; }
.vc-target-label {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.vc-target-word {
  font-family: var(--font-title);
  color: var(--accent-gold);
  font-size: 36px; line-height: 1.1; margin-top: 4px;
}

.vc-feedback-banner {
  background: rgba(180, 30, 20, 0.88);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,80,60,0.5);
  transition: opacity 0.2s;
}
.vc-feedback-hidden { display: none; }

.vc-field {
  position: relative;
  flex: 1;
  overflow: hidden;
  touch-action: none;
}

.vc-card {
  position: absolute;
  width: 68px;
  padding: 8px 6px;
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(180deg,#f5e6c3 0%,#d9c389 100%);
  color: #2b2008;
  box-shadow: 0 4px 0 rgba(0,0,0,0.35), 0 0 0 1px rgba(80,55,10,0.5);
  font-weight: 700;
  font-size: 13px;
  transform: translateX(-50%);
  will-change: top;
  pointer-events: none;
  display: flex; flex-direction: column; align-items: center;
}
.vc-card .vc-card-emoji { font-size: 22px; line-height: 1; margin-bottom: 4px; }

.vc-basket {
  position: absolute; bottom: 14px;
  width: 90px; height: 56px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.5) 0%, transparent 65%),
    linear-gradient(180deg,#8a5a1c 0%,#5d3b0e 100%);
  border-radius: 50% 50% 14px 14px / 60% 60% 14px 14px;
  border: 2px solid var(--accent-bronze);
  box-shadow: 0 6px 0 rgba(0,0,0,0.4), inset 0 -8px 12px rgba(0,0,0,0.35);
  transition: filter 0.2s ease;
  pointer-events: none;
}
.vc-basket.hit { filter: drop-shadow(0 0 18px rgba(255,215,0,0.7)); }
.vc-basket.miss { filter: drop-shadow(0 0 18px rgba(231,76,60,0.7)); }

.vc-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 20px;
}
.vc-overlay h2 {
  font-family: var(--font-title);
  background: var(--title-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 32px; margin: 0;
}
.vc-final-score { color: var(--accent-gold); font-size: 28px; font-weight: 700; margin: 0; }
.vc-newhigh { color: var(--accent-gold); font-weight: 700; margin: 0; }
.muted { color: var(--text-muted); }

.game-empty {
  padding: 40px 20px; text-align: center; color: var(--text-secondary);
  display: flex; flex-direction: column; gap: 20px; align-items: center;
}

/* Spiele-Hub Tiles */
.games-heading {
  font-family: var(--font-title);
  color: var(--accent-gold);
  text-align: center;
  margin: 14px 0 4px;
}
.games-subtitle { text-align: center; color: var(--text-muted); margin: 0 0 18px; }
.games-list { display: flex; flex-direction: column; gap: 12px; padding: 0 14px 32px; }
.game-tile {
  border: 1px solid var(--border-bronze);
  border-radius: 14px;
  padding: 14px;
  background: rgba(0,0,0,0.25);
  display: grid;
  grid-template-columns: 56px 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 4px 12px;
  align-items: center;
}
.game-tile-icon {
  grid-row: 1 / span 3;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  border-radius: 12px;
  background: linear-gradient(180deg,rgba(255,215,0,0.15),rgba(0,0,0,0.2));
  border: 1px solid var(--border-bronze);
}
.game-tile.locked .game-tile-icon { filter: grayscale(1) brightness(0.6); }
.game-tile-title { margin: 0; font-size: 15px; color: var(--text-primary); }
.game-tile.locked .game-tile-title { color: var(--text-muted); }
.game-tile-desc { margin: 0; font-size: 12px; line-height: 1.35; }
.game-tile-info { margin: 0; font-size: 13px; color: var(--accent-bronze); }
.game-tile-info.muted { color: var(--text-muted); }
.game-tile-btn { grid-row: 1 / span 3; grid-column: 3; align-self: center; }
