/* =========================================================
   balcky.lionwitte.de — Happy 25th Birthday Page
   Farb-Palette: Navy/Electric-Blue, SFW Pup-Vibe
   ========================================================= */

:root {
  --bg-0: #0a0e1a;
  --bg-1: #111733;
  --bg-2: #1a2340;
  --accent: #3b82f6;
  --accent-2: #60a5fa;
  --accent-3: #2563eb;
  --glow: rgba(96, 165, 250, 0.55);
  --text: #e8f1ff;
  --text-dim: #9fb3d9;
  --card: rgba(30, 41, 77, 0.55);
  --card-border: rgba(96, 165, 250, 0.25);
  --radius: 16px;
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(ellipse at top, var(--bg-2) 0%, var(--bg-1) 45%, var(--bg-0) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

.hidden { display: none !important; }

/* =========================================================
   Hintergrund-Partikel (Pfoten & Knochen)
   ========================================================= */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  left: var(--x);
  top: 110%;
  width: var(--size);
  height: var(--size);
  opacity: 0;
  animation: float-up var(--d) linear infinite;
  animation-delay: var(--delay, 0s);
  color: var(--accent);
  filter: drop-shadow(0 0 6px var(--glow));
  translate: var(--ix, 0px) var(--iy, 0px);
  transition: translate 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.particle.paw {
  -webkit-mask: url('../assets/paw.svg') center/contain no-repeat;
          mask: url('../assets/paw.svg') center/contain no-repeat;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

.particle.bone {
  -webkit-mask: url('../assets/bone.svg') center/contain no-repeat;
          mask: url('../assets/bone.svg') center/contain no-repeat;
  background: linear-gradient(180deg, var(--accent-2), var(--accent-3));
}

@keyframes float-up {
  0%   { transform: translateY(0) rotate(0deg);    opacity: 0; }
  10%  { opacity: 0.35; }
  50%  { transform: translateY(-60vh) rotate(180deg); opacity: 0.5; }
  90%  { opacity: 0.25; }
  100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}

/* =========================================================
   Passwort-Gate
   ========================================================= */
.gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(10, 14, 26, 0.85) 0%, rgba(10, 14, 26, 0.98) 70%);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  animation: gate-in 0.6s ease-out;
}

.gate.fade-out { animation: gate-out 0.7s ease-in forwards; }

@keyframes gate-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes gate-out { to { opacity: 0; visibility: hidden; } }

.gate-card {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(12px);
  animation: card-rise 0.8s cubic-bezier(.2,.9,.3,1.2);
}

@keyframes card-rise {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.gate-paw {
  font-size: 3rem;
  animation: paw-wiggle 2.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes paw-wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(8deg); }
}

.gate-card h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.4rem;
  margin: 0.5rem 0 0.8rem;
  background: linear-gradient(120deg, var(--accent-2), var(--text));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.gate-sub {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

#gate-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#gate-input {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

#gate-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

#gate-form button,
.voucher-cta,
.gift-button {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--accent-3), var(--accent));
  color: white;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transition: transform .15s, box-shadow .2s, filter .2s;
}

#gate-form button:hover,
.voucher-cta:hover,
.gift-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

#gate-form button:active { transform: translateY(0); }

.gate-error {
  margin-top: 0.75rem;
  min-height: 1.2rem;
  color: #f87171;
  font-size: 0.9rem;
}

.gate-hint {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: 0.82rem;
  opacity: 0.7;
}

/* =========================================================
   App-Container
   ========================================================= */
.app {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--accent-2);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.paw-icon { font-size: 1rem; }

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.6rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin-bottom: 1rem;
}

.hero-title span {
  display: block;
  animation: title-in 1s cubic-bezier(.2,.8,.2,1.2) both;
}
.hero-title .t1 { animation-delay: 0.05s; color: var(--text); }
.hero-title .t2 {
  animation-delay: 0.25s;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero-title .t3 {
  animation-delay: 0.45s;
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
}

@keyframes title-in {
  from { opacity: 0; transform: translateY(30px) scale(0.9); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   filter: blur(0); }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 36ch;
  margin: 0 auto 2.5rem;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: hint-float 2s ease-in-out infinite;
}

.scroll-hint .arrow {
  font-size: 1.5rem;
  color: var(--accent-2);
}

@keyframes hint-float {
  0%, 100% { transform: translateY(0);  opacity: 0.6; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* =========================================================
   Section-Titel + Divider
   ========================================================= */
.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(120deg, var(--accent-2), var(--text));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.divider {
  text-align: center;
  font-size: 1.2rem;
  color: var(--accent-2);
  margin: 0.5rem auto 2.5rem;
  opacity: 0.6;
  position: relative;
}
.divider::before, .divider::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-border), transparent);
  vertical-align: middle;
  margin: 0 1rem;
}

/* =========================================================
   Nachrichten
   ========================================================= */
.messages {
  padding: 4rem 0;
}
.message-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 56ch;
  margin: 0 auto;
}
.msg {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  font-size: 1.05rem;
  color: var(--text);
  backdrop-filter: blur(8px);
  line-height: 1.7;
  position: relative;
}
.msg::before {
  content: '🐾';
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--bg-1);
  padding: 0 8px;
  font-size: 1rem;
  opacity: 0.7;
}

/* =========================================================
   Memories
   ========================================================= */
.memories { padding: 4rem 0; }

.memories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.memory-card {
  aspect-ratio: 1;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}
.memory-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
}
.memory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.memory-card.placeholder {
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(96,165,250,0.02));
}
.memory-card .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(transparent, rgba(10,14,26,0.85));
  font-size: 0.85rem;
  color: var(--text);
}

/* =========================================================
   Gift Reveal
   ========================================================= */
.gift-section {
  padding: 4rem 0;
  text-align: center;
}

.gift-stage {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.gift-rays {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(96,165,250,0.25) 0%, rgba(96,165,250,0.06) 30%, transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: 0;
}
.gift-section.opened .gift-rays { opacity: 1; animation: ray-pulse 3s ease-in-out infinite; }

@keyframes ray-pulse {
  0%,100% { opacity: 0.8; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1;   transform: translate(-50%,-50%) scale(1.05); }
}

.gift-wrapper {
  position: relative;
  width: 220px;
  height: 240px;
  margin-bottom: 2rem;
  z-index: 1;
  animation: gift-bounce 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
  transition: transform 0.4s ease;
}

.gift-wrapper:hover { transform: scale(1.05); }

@keyframes gift-bounce {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-10px) rotate(1.5deg); }
}

.gift-svg {
  width: 100%;
  height: 100%;
}

/* Opening animation — affects lid + bow via the SVG internal groups */
.gift-section.opened .gift-wrapper {
  animation: gift-shake-then-open 0.8s ease-in-out forwards;
}

@keyframes gift-shake-then-open {
  0%   { transform: translateY(0) rotate(0deg); }
  15%  { transform: translateY(-4px) rotate(-4deg); }
  30%  { transform: translateY(0)    rotate(4deg); }
  45%  { transform: translateY(-4px) rotate(-4deg); }
  60%  { transform: translateY(0)    rotate(0deg); }
  100% { transform: translateY(-80px) rotate(0deg) scale(0.5); opacity: 0; }
}

.gift-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
}
.gift-button .btn-emoji { font-size: 1.3rem; }

.gift-section.opened .gift-button {
  animation: btn-out 0.4s ease forwards;
}
@keyframes btn-out {
  to { opacity: 0; transform: translateY(10px) scale(0.9); pointer-events: none; }
}

/* Voucher Card */
.voucher-card {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  margin-top: -60px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.9,.3,1.2);
}

.gift-section.opened .voucher-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0.5s;
}

.voucher-inner {
  background: linear-gradient(135deg, rgba(37,99,235,0.25), rgba(10,14,26,0.85));
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.5), inset 0 0 40px rgba(96,165,250,0.12);
  position: relative;
  animation: voucher-glow 2.5s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

@keyframes voucher-glow {
  0%, 100% { box-shadow: 0 0 60px rgba(59,130,246,0.4), inset 0 0 40px rgba(96,165,250,0.12); }
  50%      { box-shadow: 0 0 80px rgba(96,165,250,0.7), inset 0 0 50px rgba(96,165,250,0.2); }
}

.voucher-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-family: 'Fredoka', sans-serif;
}
.voucher-label {
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent-2), var(--text));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.voucher-head .star {
  color: var(--accent-2);
  font-size: 1.2rem;
  animation: star-twinkle 2s ease-in-out infinite;
}
.voucher-head .star:last-child { animation-delay: 1s; }

@keyframes star-twinkle {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

.voucher-body {
  text-align: left;
  position: relative;
}

.voucher-text {
  font-family: 'Inter', monospace;
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--text);
  min-height: 10.5em;
}
.voucher-text::after {
  content: '▋';
  color: var(--accent-2);
  animation: caret 0.9s steps(2) infinite;
  margin-left: 2px;
}
.voucher-card.done .voucher-text::after { content: ''; }

@keyframes caret {
  0%, 50%  { opacity: 1; }
  51%,100% { opacity: 0; }
}

.voucher-seal {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 1rem;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s, transform 0.6s cubic-bezier(.2,.9,.3,1.5);
}
.voucher-card.done .voucher-seal { opacity: 1; transform: scale(1); }

.voucher-cta {
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
}
.voucher-card.done .voucher-cta { opacity: 1; transform: translateY(0); }

/* =========================================================
   Scroll-Reveals
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero.reveal { opacity: 1; transform: none; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  margin-top: 4rem;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
  border-top: 1px solid var(--card-border);
}

/* =========================================================
   Confetti Canvas
   ========================================================= */
#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
}

/* =========================================================
   Mobile-First Responsive
   Basis = Handy (portrait). Min-width queries = größere Screens.
   ========================================================= */

/* --- Basis Mobile (< 480px) -------------------------------- */

/* iOS/Android: echter Viewport inkl. dynamischer Adressleiste */
.hero { min-height: 100dvh; min-height: 100vh; }
.gate { min-height: 100dvh; min-height: 100vh; }

/* Notch / Safe-Area-Abstände */
.app {
  padding: 1rem max(1rem, env(safe-area-inset-right)) 4rem max(1rem, env(safe-area-inset-left));
}
.gate {
  padding: max(1.5rem, env(safe-area-inset-top))
           max(1.25rem, env(safe-area-inset-right))
           max(1.5rem, env(safe-area-inset-bottom))
           max(1.25rem, env(safe-area-inset-left));
}

/* Gate-Card: volle Breite auf kleinen Phones */
.gate-card {
  padding: 2rem 1.25rem;
  max-width: 100%;
}

/* Tap-Targets: min. 44px Höhe für Buttons & Inputs */
#gate-input, #gate-form button, .gift-button, .voucher-cta {
  min-height: 48px;
}

/* Memories: 1 Spalte auf sehr kleinen Phones, 2 ab mehr Platz */
.memories-grid {
  grid-template-columns: 1fr;
}

/* Hero: etwas kompakter auf kleinen Screens */
.hero-title {
  font-size: clamp(2.2rem, 11vw, 6rem);
}
.hero { padding: 5rem 0 3rem; }

/* Gift: kleiner Wrapper damit er auf dem Screen passt */
.gift-wrapper { width: 160px; height: 180px; }
.gift-stage { min-height: 380px; padding: 1rem; }

/* Voucher: volle Breite, kleinere Schrift */
.voucher-card { width: 100%; margin-top: -40px; }
.voucher-inner { padding: 1.4rem 1.1rem; }
.voucher-label { font-size: 1.05rem; letter-spacing: 0.18em; }
.voucher-text { font-size: 0.93rem; }

/* Divider-Linien kürzer */
.divider::before, .divider::after { width: 30px; margin: 0 0.4rem; }

/* Sections weniger Abstand */
.messages, .memories, .gift-section { padding: 2.5rem 0; }

/* Scroll-hint: deutlicher auf Mobile */
.scroll-hint { font-size: 0.9rem; }
.scroll-hint .arrow { font-size: 1.8rem; }

/* Background-Partikel: halbe Anzahl durch Ausblenden jeder 2. */
.bg-particles .particle:nth-child(even) { display: none; }

/* --- Phablet / große Phones (>= 480px) --------------------- */
@media (min-width: 480px) {
  .gate-card { max-width: 420px; padding: 2.5rem 2rem; }
  .memories-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-wrapper { width: 200px; height: 220px; }
  .app { padding: 1.25rem 1.5rem 4rem; }
  .bg-particles .particle:nth-child(even) { display: block; }
}

/* --- Tablet+ (>= 768px) ------------------------------------ */
@media (min-width: 768px) {
  .app { padding: 2rem 1.25rem 4rem; }
  .hero { padding: 2rem 0; }
  .memories-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .gift-wrapper { width: 220px; height: 240px; }
  .gift-stage { min-height: 460px; padding: 2rem 1rem; }
  .voucher-inner { padding: 2rem 1.8rem; }
  .voucher-label { font-size: 1.4rem; letter-spacing: 0.25em; }
  .voucher-text { font-size: 1rem; }
  .messages, .memories, .gift-section { padding: 4rem 0; }
}

/* --- Kein Hover auf Touch-Screens (vermeidet stuck-hover) -- */
@media (hover: none) {
  .memory-card:hover { transform: none; box-shadow: none; }
  .gift-wrapper:hover { transform: none; }
  #gate-form button:hover,
  .gift-button:hover,
  .voucher-cta:hover { transform: none; filter: none; box-shadow: 0 8px 24px rgba(37,99,235,0.35); }
}

/* --- Reduce Motion ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bg-particles { display: none; }
}

/* =========================================================
   Sound-Toggle (oben rechts)
   ========================================================= */
.sound-toggle {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  right: calc(env(safe-area-inset-right, 0px) + 12px);
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(96,165,250,0.35);
  background: rgba(10,14,26,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sound-toggle:hover { transform: scale(1.08); box-shadow: 0 0 16px rgba(96,165,250,0.5); }
.sound-toggle .sound-on  { display: inline; }
.sound-toggle .sound-off { display: none; }
.sound-toggle.muted .sound-on  { display: none; }
.sound-toggle.muted .sound-off { display: inline; opacity: 0.6; }

/* =========================================================
   Voucher-CTA Pulse (Herz-Klick)
   ========================================================= */
.voucher-cta.thumped {
  animation: thump 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes thump {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.18); box-shadow: 0 0 30px rgba(96,165,250,0.7); }
  50%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}
