/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: hsl(220,40%,10%);
  color: hsl(40,20%,95%);
  overflow-x: hidden;
  min-height: 100vh;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Boogaloo', sans-serif; letter-spacing: 0.04em; }

/* ── Colour tokens ────────────────────────────────────────────── */
:root {
  --bg:        hsl(220,40%,10%);
  --fg:        hsl(40,20%,95%);
  --card:      hsl(220,35%,16%);
  --border:    hsl(220,30%,25%);
  --primary:   hsl(210,90%,55%);  /* electric blue */
  --secondary: hsl(22,95%,58%);   /* fiery orange  */
  --accent:    hsl(82,75%,52%);   /* neon lime     */
  --muted-fg:  hsl(220,15%,65%);
}

/* ── Utility ──────────────────────────────────────────────────── */
.font-display  { font-family: 'Boogaloo', sans-serif; }
.text-primary  { color: var(--primary); }
.text-secondary{ color: var(--secondary); }
.text-accent   { color: var(--accent); }

/* ── bg-confetti dot pattern ──────────────────────────────────── */
.bg-confetti {
  background-image:
    radial-gradient(circle at 20% 20%, #3b82f6 4px, transparent 5px),
    radial-gradient(circle at 80% 40%, #f97316 4px, transparent 5px),
    radial-gradient(circle at 40% 60%, #84cc16 4px, transparent 5px),
    radial-gradient(circle at 70% 90%, #3b82f6 4px, transparent 5px),
    radial-gradient(circle at 10% 80%, #f97316 4px, transparent 5px);
  background-size: 150px 150px;
  animation: bg-scroll 20s linear infinite;
}
@keyframes bg-scroll {
  to { background-position: 150px 150px; }
}

/* ── Float animations ─────────────────────────────────────────── */
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-15px) rotate(3deg); }
}
@keyframes float-reverse {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-15px) rotate(-3deg); }
}
.animate-float         { animation: float 4s ease-in-out infinite; }
.animate-float-reverse { animation: float-reverse 4s ease-in-out infinite; }

/* ── Intro splash ─────────────────────────────────────────────── */
#intro-splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, hsl(220,40%,8%) 0%, hsl(210,60%,18%) 100%);
  overflow: hidden;
  transition: opacity 0.8s ease;
}
#intro-splash.fade-out { opacity: 0; pointer-events: none; }
#intro-splash .confetti-bg {
  position: absolute; inset: 0; opacity: 0.3; pointer-events: none;
}
.splash-content {
  position: relative; z-index: 1; text-align: center;
  animation: splash-spring 0.7s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes splash-spring {
  from { transform: scale(0.5) translateY(50px); opacity: 0; }
  to   { transform: scale(1) translateY(0);      opacity: 1; }
}
.splash-title {
  font-family: 'Boogaloo', sans-serif;
  font-size: clamp(2rem, 8vw, 5rem);
  color: white;
  animation: text-wiggle 2s ease-in-out infinite;
}
.splash-name {
  font-family: 'Boogaloo', sans-serif;
  font-size: clamp(3.5rem, 14vw, 8rem);
  color: var(--primary);
  animation: pulse-scale 1.5s ease-in-out infinite;
}
@keyframes text-wiggle {
  0%,100% { transform: rotate(-2deg); }
  50%     { transform: rotate(2deg); }
}
@keyframes pulse-scale {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.05); }
}
.splash-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem;
  animation: fade-up 0.6s 0.8s ease both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.splash-badge {
  background: var(--accent); color: hsl(220,40%,10%);
  border-radius: 50%; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Boogaloo', sans-serif; font-size: 2.5rem;
  box-shadow: 0 0 24px var(--accent);
  animation: badge-spin 0.5s 1.2s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes badge-spin {
  from { transform: rotate(-180deg) scale(0); }
  to   { transform: rotate(0deg) scale(1); }
}

/* ── Canvas overlay ───────────────────────────────────────────── */
#confetti-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 100;
}

/* ── Mute button ──────────────────────────────────────────────── */
#mute-btn {
  position: fixed; bottom: 20px; right: 20px; z-index: 200;
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--primary);
  background: hsl(220,40%,18%);
  box-shadow: 0 0 16px hsl(210,90%,30%);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s;
}
#mute-btn:hover  { transform: scale(1.1); }
#mute-btn:active { transform: scale(0.9); }

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; padding: 1rem; text-align: center;
}
#hero .bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.6; }
.hero-content { position: relative; z-index: 1; max-width: 900px; width: 100%; }
.hero-lion { font-size: clamp(3rem,10vw,6rem); display: inline-block; }
.hero-title {
  font-family: 'Boogaloo', sans-serif;
  font-size: clamp(2rem,7vw,5rem);
  color: var(--primary);
  line-height: 1.1; margin: 0.5rem 0;
}
.hero-name {
  font-family: 'Boogaloo', sans-serif;
  font-size: clamp(2.8rem,10vw,6rem);
  color: var(--secondary);
}
.hero-sub {
  font-size: clamp(0.9rem,2.5vw,1.4rem);
  opacity: 0.9; max-width: 600px;
  margin: 1rem auto 2rem; padding: 0 0.5rem;
}
.btn-pop {
  font-family: 'Boogaloo', sans-serif;
  font-size: clamp(1.2rem,3vw,1.6rem);
  padding: 0.85rem 2rem;
  background: var(--secondary);
  color: white; border: 4px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(249,115,22,0.5);
  cursor: pointer; transition: transform 0.15s, filter 0.15s;
}
.btn-pop:hover  { transform: scale(1.1) rotate(3deg); filter: brightness(1.1); }
.btn-pop:active { transform: scale(0.9); }
.hero-float {
  position: absolute; font-size: clamp(2rem,5vw,3.5rem); opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 600px) { .hero-float { display: none; } }

/* ── Scroll reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Polaroid gallery ─────────────────────────────────────────── */
#gallery { padding: 4rem 1rem; position: relative; overflow: hidden; }
.section-title {
  font-family: 'Boogaloo', sans-serif;
  font-size: clamp(1.8rem,5vw,3.5rem);
  text-align: center; margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center; font-size: clamp(0.85rem,2vw,1.1rem);
  opacity: 0.9; margin-bottom: 2.5rem;
}
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem; max-width: 900px; margin: 0 auto;
}
@media (min-width: 900px) {
  .polaroid-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.polaroid-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 0.75rem 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  cursor: pointer; position: relative;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
}
.polaroid-card:hover {
  transform: rotate(0deg) scale(1.05) translateY(-12px) !important;
  box-shadow: 0 20px 40px rgba(59,130,246,0.2);
  z-index: 10;
}
.polaroid-img {
  width: 100%; aspect-ratio: 1;
  border-radius: 2px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.polaroid-emoji {
  font-size: clamp(3rem,10vw,5rem);
  transition: transform 0.4s; user-select: none;
}
.polaroid-card:hover .polaroid-emoji { transform: scale(1.2) rotate(-10deg); }
.polaroid-caption {
  position: absolute; bottom: 0.5rem; left: 0; width: 100%;
  text-align: center; padding: 0 0.25rem;
  font-family: 'Boogaloo', sans-serif;
  font-size: clamp(0.8rem,2.5vw,1.3rem);
}

/* ── Flip cards ───────────────────────────────────────────────── */
#flipcards { padding: 4rem 1rem; background: var(--bg); }
.flip-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 0.75rem; max-width: 900px; margin: 0 auto;
}
@media (min-width: 900px) {
  .flip-grid { grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
}
.flip-wrap {
  perspective: 1000px;
  height: clamp(160px,40vw,220px);
  cursor: pointer;
}
.flip-inner {
  width: 100%; height: 100%; position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(.34,1.2,.64,1);
}
.flip-wrap.flipped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 1rem; padding: 1rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.flip-front {
  background: var(--card);
  border: 4px solid var(--primary);
  transition: border-color 0.2s;
}
.flip-front:hover { border-color: var(--secondary); }
.flip-front .q-mark {
  font-size: clamp(1.5rem,5vw,2.5rem);
  color: var(--primary); margin-bottom: 0.5rem;
}
.flip-front h3 {
  font-family: 'Boogaloo', sans-serif;
  font-size: clamp(1rem,3vw,1.5rem); line-height: 1.2;
}
.flip-front .tap-hint {
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--secondary); margin-top: 0.5rem;
  text-transform: uppercase; font-weight: 700;
}
.flip-back {
  background: linear-gradient(135deg, hsl(210,90%,40%), hsl(210,90%,60%));
  border: 4px solid var(--primary);
  color: white;
  transform: rotateY(180deg);
  box-shadow: 0 0 20px rgba(59,130,246,0.3);
}
.flip-back .back-icon { font-size: clamp(2rem,7vw,3.5rem); margin-bottom: 0.5rem; }
.flip-back h3 {
  font-family: 'Boogaloo', sans-serif;
  font-size: clamp(1rem,3vw,1.8rem); line-height: 1.2;
}

/* ── Birthday cake ────────────────────────────────────────────── */
#cake { padding: 4rem 1rem; text-align: center; background: hsl(220,42%,9%); }
.cake-wrap { max-width: 480px; margin: 0 auto; }
.candle-row {
  display: flex; align-items: flex-end;
  justify-content: center; gap: 3.5rem;
  position: relative; z-index: 1;
}
.candle {
  display: flex; flex-direction: column;
  align-items: center; cursor: pointer; user-select: none;
}
.flame-area { height: 36px; display: flex; align-items: flex-end; justify-content: center; }
.flame {
  position: relative; width: 20px; height: 32px;
  animation: flame-flicker 0.8s ease-in-out infinite;
}
@keyframes flame-flicker {
  0%,100% { transform: scaleX(1) scaleY(1); }
  25%     { transform: scaleX(0.85) scaleY(1.08); }
  50%     { transform: scaleX(1.1) scaleY(0.95); }
  75%     { transform: scaleX(0.9) scaleY(1.05); }
}
.flame-outer {
  position: absolute; bottom: 0;
  width: 18px; height: 28px;
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
}
.flame-inner {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 14px;
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  background: radial-gradient(ellipse, #fff 40%, #fffacd 100%);
}
.smoke-ring {
  position: absolute; border-radius: 50%;
  background: rgba(200,200,220,0.55);
  filter: blur(3px);
  animation: smoke-rise var(--dur, 1.4s) ease-out infinite;
  opacity: 0;
}
@keyframes smoke-rise {
  0%   { opacity: 0.7; transform: translateX(-50%) translateY(0) scale(1); }
  100% { opacity: 0;   transform: translateX(calc(-50% + var(--drift,0px))) translateY(var(--ry,-34px)) scale(2.2); }
}
.candle-wick { width: 2px; height: 8px; background: #374151; }
.candle-body { border-radius: 9999px; box-shadow: inset 0 2px 8px rgba(255,255,255,0.15); }
.candle-drip { border-radius: 0 0 12px 12px; opacity: 0.7; margin-top: -2px; }

/* Cake tiers */
.cake-top {
  width: 180px; height: 56px; margin: 0 auto;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, hsl(210,90%,38%), hsl(210,90%,52%));
  box-shadow: 0 -3px 0 0 hsl(210,90%,60%), inset 0 2px 8px rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cake-top-name {
  font-family: 'Boogaloo', sans-serif; color: white; font-size: 1.3rem;
  position: relative; z-index: 1;
}
.frosting-drip {
  position: absolute; top: 0; width: 18px; height: 22px;
  background: rgba(255,255,255,0.85);
  border-radius: 0 0 10px 10px;
}
.cake-bottom {
  width: 240px; height: 72px; margin: 0 auto;
  background: linear-gradient(135deg, hsl(22,95%,40%), hsl(22,95%,58%));
  box-shadow: 0 4px 0 0 hsl(22,80%,32%), inset 0 2px 8px rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.sprinkle { position: absolute; border-radius: 50%; }
.cake-plate {
  width: 268px; height: 14px; margin: 0 auto;
  border-radius: 9999px;
  background: linear-gradient(180deg, hsl(220,20%,40%), hsl(220,20%,28%));
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
}
.cake-wish {
  margin-top: 2rem;
  animation: wish-pop 0.5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes wish-pop {
  from { transform: scale(0.7) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cake-wish h3 {
  font-family: 'Boogaloo', sans-serif; font-size: clamp(1.4rem,4vw,2rem);
  color: var(--primary); margin-bottom: 1rem;
}
.btn-relight {
  font-family: 'Boogaloo', sans-serif; font-size: 1.1rem;
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  background: hsl(210,90%,50%); color: white; border: none;
  box-shadow: 0 0 16px hsl(210,90%,40%); cursor: pointer;
  transition: transform 0.15s, filter 0.15s;
}
.btn-relight:hover  { transform: scale(1.05); filter: brightness(1.1); }
.btn-relight:active { transform: scale(0.95); }

/* ── Dino smash game ──────────────────────────────────────────── */
#game { padding: 4rem 1rem; background: hsl(220,40%,8%); }
.game-inner { max-width: 900px; margin: 0 auto; }
.score-badge {
  display: inline-block; padding: 0.5rem 1.5rem;
  border-radius: 9999px; border: 2px solid var(--primary);
  background: var(--card);
  font-family: 'Boogaloo', sans-serif; font-size: 1.5rem;
  color: var(--primary); margin: 0.75rem 0 1.25rem;
}
.game-arena {
  position: relative; width: 100%; height: 480px;
  border-radius: 1.5rem; overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: 0 0 40px hsl(210,90%,30%);
  background: linear-gradient(180deg, hsl(220,45%,10%) 0%, hsl(220,35%,14%) 100%);
}
@keyframes game-shake {
  0%   { transform: translate(0,0) rotate(0deg); }
  15%  { transform: translate(-5px,3px) rotate(-0.5deg); }
  30%  { transform: translate(5px,-3px) rotate(0.5deg); }
  50%  { transform: translate(-4px,4px) rotate(-0.4deg); }
  70%  { transform: translate(4px,-2px) rotate(0.3deg); }
  85%  { transform: translate(-2px,2px) rotate(-0.2deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}
.game-arena.shake { animation: game-shake 0.28s ease-in-out; }
.game-hint {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem; pointer-events: none;
  color: rgba(255,255,255,0.35);
  font-family: 'Boogaloo', sans-serif; font-size: 1.1rem;
}
.star-deco {
  position: absolute; color: white; user-select: none; pointer-events: none;
}
.moon-deco {
  position: absolute; top: 1.5rem; left: 2rem;
  font-size: 2.5rem; opacity: 0.2; pointer-events: none; user-select: none;
}

/* Dino */
.dino {
  position: absolute;
  cursor: crosshair; touch-action: none;
  user-select: none; pointer-events: auto;
}
.dino-ring {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.dino-emoji { font-size: 2.5rem; line-height: 1; display: block; }
.dino-string { width: 2px; height: 40px; margin: 0 auto; }

@keyframes dino-float-up {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(-580px); opacity: 0.4; }
}
@keyframes dino-wobble {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%     { transform: translateY(-6px) rotate(4deg); }
}
.dino-inner { animation: dino-wobble 1.2s ease-in-out infinite; }

@keyframes dino-smash {
  0%   { transform: scale(1) rotate(0deg); opacity: 1; }
  50%  { transform: scale(1.7) rotate(-35deg); opacity: 0.7; }
  100% { transform: scale(0) rotate(40deg); opacity: 0; }
}
.dino.smashed .dino-inner { animation: dino-smash 0.38s ease-out forwards; }

/* Win overlay */
.win-overlay {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(5,10,30,0.93);
  animation: wish-pop 0.4s cubic-bezier(.34,1.56,.64,1) both;
}
.win-trophy {
  font-size: 6rem; margin-bottom: 0.5rem;
  animation: trophy-shake 0.6s 0.1s ease both;
}
@keyframes trophy-shake {
  0%,100% { transform: rotate(0) scale(1); }
  20%     { transform: rotate(-10deg) scale(1.2); }
  40%     { transform: rotate(10deg) scale(1.2); }
  60%     { transform: rotate(-10deg) scale(1.1); }
  80%     { transform: rotate(10deg) scale(1); }
}
.win-title {
  font-family: 'Boogaloo', sans-serif; font-size: clamp(2rem,7vw,3.5rem);
  color: var(--secondary); text-shadow: 0 0 30px var(--secondary);
}
.win-sub { font-size: 1.1rem; color: var(--primary); margin-top: 0.5rem; }

/* Smash burst */
.smash-burst { position: absolute; pointer-events: none; z-index: 30; }
@keyframes ring-expand   { to { transform: scale(5); opacity: 0; } }
@keyframes ring-expand-2 { to { transform: scale(7); opacity: 0; } }
@keyframes spark-fly {
  to { transform: translate(var(--tx),var(--ty)) scale(0); opacity: 0; }
}
@keyframes word-float {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: 1; }
  40%  { transform: translate(-50%,-50%) scale(1.8); opacity: 1; }
  100% { transform: translate(-50%,calc(-50% - 48px)) scale(1.4); opacity: 0; }
}
@keyframes ghost-fade {
  from { transform: scale(1.8); opacity: 0.9; }
  to   { transform: scale(0) translateY(-30px); opacity: 0; }
}
@keyframes star-spin {
  to { transform: translate(var(--tx),var(--ty)) scale(0) rotate(270deg); opacity: 0; }
}

/* ── Wish form ────────────────────────────────────────────────── */
#wishes {
  padding: 4rem 1rem;
  background: hsl(220,38%,12%);
  position: relative; overflow: hidden;
}
.wish-card {
  max-width: 520px; margin: 0 auto;
  background: var(--card);
  border: 4px solid var(--accent);
  border-radius: 1.5rem; padding: 2rem;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}
.wish-label {
  display: block; font-family: 'Boogaloo', sans-serif;
  font-size: 1.1rem; margin-bottom: 0.5rem;
}
.wish-input, .wish-textarea {
  width: 100%; padding: 0.75rem 1rem;
  border-radius: 0.75rem; border: 2px solid hsl(220,30%,30%);
  background: hsl(220,40%,10%); color: white;
  font-family: 'Poppins', sans-serif; font-size: 1rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 1rem;
}
.wish-input:focus, .wish-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.2);
}
.wish-textarea { resize: none; min-height: 100px; }
.btn-wish {
  width: 100%; padding: 1rem;
  font-family: 'Boogaloo', sans-serif; font-size: 1.2rem;
  background: var(--secondary); color: white;
  border: none; border-bottom: 4px solid hsl(22,80%,40%);
  border-radius: 0.75rem;
  box-shadow: 0 0 15px rgba(249,115,22,0.4);
  cursor: pointer; transition: transform 0.15s, filter 0.15s;
}
.btn-wish:hover  { filter: brightness(1.1); transform: scale(1.02); }
.btn-wish:active { transform: scale(0.97); }
.wish-success {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem 1rem; text-align: center;
  animation: wish-pop 0.5s cubic-bezier(.34,1.56,.64,1) both;
}
.wish-success .boom {
  font-size: 4.5rem; margin-bottom: 1rem;
  animation: trophy-shake 0.5s ease;
}
.wish-success h3 {
  font-family: 'Boogaloo', sans-serif; font-size: 2rem;
  color: var(--primary); margin-bottom: 0.5rem;
}
.wish-success p { opacity: 0.9; }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  padding: 2.5rem 1rem; text-align: center;
  background: linear-gradient(135deg, hsl(210,90%,40%), hsl(22,95%,50%));
  position: relative; overflow: hidden;
}
footer p {
  font-family: 'Boogaloo', sans-serif;
  font-size: clamp(1rem,3vw,1.5rem);
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: center; gap: 0.5rem;
}
footer .star-pulse { animation: pulse-scale 1s infinite; font-size: 1.8rem; color: #fde047; }
.footer-float-l {
  position: absolute; left: 1.5rem; bottom: -16px;
  font-size: 2.5rem; opacity: 0.5;
}
.footer-float-r {
  position: absolute; right: 3rem; bottom: -8px;
  font-size: 2rem; opacity: 0.5;
}
