:root {
  --primary: #10b981;
  --primary-dark: #047857;
  --accent: #fbbf24;
  --sky: #38bdf8;
  --danger: #ef4444;
  --ink: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.08);
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.92);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(16, 185, 129, 0.22), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(56, 189, 248, 0.16), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #064e3b 100%);
  background-attachment: fixed;
  font-family: "Outfit", system-ui, sans-serif;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 8px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

a { color: inherit; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  flex: none;
}
.brand strong { display: block; font-size: 1.25rem; line-height: 1; }
.brand > span {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0;
}
.brand > span > span {
  display: block;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.nav-links a,
.pill-button,
.ghost-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.68rem 0.95rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.nav-links a:hover,
.ghost-button:hover { color: #fff; border-color: rgba(16, 185, 129, 0.5); background: rgba(255, 255, 255, 0.1); }
.pill-button { color: #052e2b; background: #6ee7b7; border-color: transparent; }
.danger-button { color: #fff; background: linear-gradient(135deg, #ef4444, #b91c1c); border-color: transparent; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 34px;
  align-items: center;
  padding: 58px 0 30px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(251, 191, 36, 0.36);
  color: var(--accent);
  background: rgba(251, 191, 36, 0.12);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0 0 20px;
}
.hero-title span { color: #6ee7b7; }
.lead {
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.72;
  margin: 0 0 26px;
  max-width: 680px;
}
.action-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.visual-panel {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,0.35);
  background: #0f172a;
}
.visual-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}
.visual-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.92));
}
.live-card {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metric {
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 14px;
}
.metric strong { display: block; font-size: 1.7rem; color: #6ee7b7; line-height: 1; }
.metric span { display: block; margin-top: 6px; color: var(--soft); font-size: 0.78rem; text-transform: uppercase; font-weight: 800; letter-spacing: 0.7px; }

.section { padding: 46px 0; }
.section-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 20px; }
.section-head h2 { font-size: clamp(1.85rem, 4vw, 3rem); margin: 0; }
.section-head p { color: var(--muted); line-height: 1.6; margin: 0; max-width: 620px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card,
.tool-card,
.form-card,
.notice-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(0,0,0,0.18);
}
.feature-card h3,
.tool-card h3,
.notice-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.feature-card p,
.tool-card p,
.notice-card p { color: var(--muted); line-height: 1.62; margin: 0 0 18px; }
.tool-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tool-card { min-height: 210px; display: flex; flex-direction: column; }
.tool-card a { margin-top: auto; color: #6ee7b7; font-weight: 800; text-decoration: none; }
.tagline { color: var(--accent); font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px; }

.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 18px; align-items: start; }
.timeline { display: grid; gap: 12px; }
.timeline-item { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; }
.timeline-dot { width: 42px; height: 42px; border-radius: 999px; background: rgba(16,185,129,0.18); border: 1px solid rgba(16,185,129,0.36); display: grid; place-items: center; color: #6ee7b7; font-weight: 900; }

.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #e2e8f0; font-size: 0.9rem; font-weight: 700; }
.field input,
.field select,
.field textarea {
  width: 100%;
  color: #fff;
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  outline: none;
}
.field textarea { min-height: 98px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(16,185,129,0.13); }
.field select option { color: #fff; background: #0f172a; }
.form-status { min-height: 1.5rem; color: #bbf7d0; font-weight: 800; }
.form-status.error { color: #fecaca; }

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
  padding: 34px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 22px; }
.footer-grid p,
.footer-grid a { color: var(--muted); line-height: 1.6; text-decoration: none; }
.footer-grid a:hover { color: #6ee7b7; }
.footer-links { display: grid; gap: 8px; }

.offline-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(251,191,36,0.42);
  color: #fde68a;
  border-radius: 8px;
  padding: 12px 14px;
  display: none;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.offline-banner.show { display: block; }
.skip-link { position: absolute; left: -999px; top: 12px; background: #fff; color: #0f172a; padding: 8px 12px; z-index: 999; }
.skip-link:focus { left: 12px; }

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .footer-grid { grid-template-columns: 1fr; }
  .feature-grid,
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-panel { min-height: 420px; }
}
@media (max-width: 680px) {
  .site-nav { align-items: flex-start; flex-direction: column; padding: 12px 0; }
  .nav-links { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .nav-links a { white-space: nowrap; }
  .hero-grid,
  .split { grid-template-columns: 1fr !important; }
  .hero-grid { padding-top: 34px; }
  .visual-panel { min-height: 390px; }
  .live-card { grid-template-columns: 1fr; position: relative; top: auto; left: auto; right: auto; margin: 12px; }
  .visual-overlay { position: absolute; }
  .feature-grid,
  .tool-grid,
  .field-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .section-head { display: block; }
}

/* Floating SOS Rescue Button */
.floating-sos {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.floating-sos:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px rgba(239, 68, 68, 0.55);
  color: white;
}
.floating-sos .sos-icon {
  font-size: 1.2rem;
  animation: pulse-sos 1.8s infinite;
}
@keyframes pulse-sos {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
@media (max-width: 600px) {
  .floating-sos {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 0.88rem;
  }
}
.floating-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.floating-wa:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}
/* Hide google translate top bar */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
.floating-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.floating-wa:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}
/* Hide google translate top bar */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
.floating-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.floating-wa:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}
/* Hide google translate top bar */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }

/* =========================================
   3D ENGINE & REACTIVE UI STYLES
   ========================================= */

/* 1. Global Custom Cursor */
body, a, button, input, textarea, select {
  cursor: none !important; /* Hide default OS cursor */
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 10px var(--primary);
}

.custom-cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(16, 185, 129, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99998;
  transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
}

/* Magnetic Hover State */
.cursor-hovering {
  width: 60px;
  height: 60px;
  background-color: rgba(16, 185, 129, 0.1);
  border-color: var(--primary);
  backdrop-filter: blur(2px);
}

/* 2. Scroll Reveal Animations */
.reveal-hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 3. Hide background CSS gradients since Vanta is active */
body {
  background: transparent !important;
}

/* =========================================
   TEXT CONTRAST ADJUSTMENTS
   ========================================= */
#vanta-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 15, 30, 0.55); /* Dark dimming overlay to push birds back */
  z-index: 1;
  pointer-events: none;
}

.notice-card, .glass-card, .impact-card {
  background: rgba(15, 23, 42, 0.7) !important;
  backdrop-filter: blur(24px) !important;
}

h1, h2, h3, h4, p, a, span {
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* =========================================
   🐾 ANIMAL LOVER UI OVERRIDE
   ========================================= */

/* Warm Color Overrides */
:root {
  --primary: #f59e0b; /* Warm Amber */
  --primary-dark: #d97706;
  --accent: #f43f5e; /* Soft Rose/Coral */
}

/* Highlight Donate Button */
.nav-donate-pulse {
  background: linear-gradient(135deg, #f43f5e, #fb7185) !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4) !important;
  animation: pulse-donate 2s infinite;
  display: inline-block;
}
@keyframes pulse-donate {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(244, 63, 94, 0.6); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4); }
}

/* Paw Print Custom Cursor */
.custom-cursor-dot {
  background-color: transparent !important;
  width: 24px !important;
  height: 24px !important;
  box-shadow: none !important;
}
.custom-cursor-dot::after {
  content: '🐾';
  font-size: 20px;
  position: absolute;
  top: -10px;
  left: -10px;
}

/* Floating Paw Print Trail & Hearts */
.paw-trail {
  position: fixed;
  width: 20px; height: 20px;
  pointer-events: none;
  z-index: 9999;
  animation: fadeOutUp 1s forwards;
}
.paw-trail::after {
  content: '🐾';
  font-size: 20px;
  position: absolute;
  top: -10px;
  left: -10px;
}

.floating-heart {
  position: fixed;
  font-size: 24px;
  pointer-events: none;
  z-index: 10000;
  animation: floatHeart 1.5s ease-out forwards;
}

@keyframes fadeOutUp {
  0% { opacity: 0.8; transform: scale(0.5) translateY(0); }
  100% { opacity: 0; transform: scale(1.5) translateY(-30px); }
}
@keyframes floatHeart {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
}

/* Cute Bouncing Tail Loader */
.skeleton {
  background: none !important;
  animation: none !important;
  position: relative;
  overflow: hidden;
}
.skeleton::before {
  content: '🐕';
  font-size: 2rem;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: wagging 0.5s infinite alternate ease-in-out;
}
@keyframes wagging {
  0% { transform: translate(-50%, -50%) rotate(-15deg); }
  100% { transform: translate(-50%, -50%) rotate(15deg); }
}
.floating-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.floating-wa:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}
/* Hide google translate top bar */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }

/* =========================================
   3D ENGINE & REACTIVE UI STYLES
   ========================================= */

/* 1. Global Custom Cursor */
body, a, button, input, textarea, select {
  cursor: none !important; /* Hide default OS cursor */
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 10px var(--primary);
}

.custom-cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(16, 185, 129, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99998;
  transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
}

/* Magnetic Hover State */
.cursor-hovering {
  width: 60px;
  height: 60px;
  background-color: rgba(16, 185, 129, 0.1);
  border-color: var(--primary);
  backdrop-filter: blur(2px);
}

/* 2. Scroll Reveal Animations */
.reveal-hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 3. Hide background CSS gradients since Vanta is active */
body {
  background: transparent !important;
}

/* =========================================
   🐾 ANIMAL LOVER UI OVERRIDE
   ========================================= */

/* Warm Color Overrides */
:root {
  --primary: #f59e0b; /* Warm Amber */
  --primary-dark: #d97706;
  --accent: #f43f5e; /* Soft Rose/Coral */
}

/* Highlight Donate Button */
.nav-donate-pulse {
  background: linear-gradient(135deg, #f43f5e, #fb7185) !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4) !important;
  animation: pulse-donate 2s infinite;
  display: inline-block;
}
@keyframes pulse-donate {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(244, 63, 94, 0.6); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4); }
}

/* Paw Print Custom Cursor */
.custom-cursor-dot {
  background-color: transparent !important;
  width: 24px !important;
  height: 24px !important;
  box-shadow: none !important;
}
.custom-cursor-dot::after {
  content: '🐾';
  font-size: 20px;
  position: absolute;
  top: -10px;
  left: -10px;
}

/* Floating Paw Print Trail & Hearts */
.paw-trail {
  position: fixed;
  width: 20px; height: 20px;
  pointer-events: none;
  z-index: 9999;
  animation: fadeOutUp 1s forwards;
}
.paw-trail::after {
  content: '🐾';
  font-size: 20px;
  position: absolute;
  top: -10px;
  left: -10px;
}

.floating-heart {
  position: fixed;
  font-size: 24px;
  pointer-events: none;
  z-index: 10000;
  animation: floatHeart 1.5s ease-out forwards;
}

@keyframes fadeOutUp {
  0% { opacity: 0.8; transform: scale(0.5) translateY(0); }
  100% { opacity: 0; transform: scale(1.5) translateY(-30px); }
}
@keyframes floatHeart {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
}

/* Cute Bouncing Tail Loader */
.skeleton {
  background: none !important;
  animation: none !important;
  position: relative;
  overflow: hidden;
}
.skeleton::before {
  content: '🐕';
  font-size: 2rem;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: wagging 0.5s infinite alternate ease-in-out;
}
@keyframes wagging {
  0% { transform: translate(-50%, -50%) rotate(-15deg); }
  100% { transform: translate(-50%, -50%) rotate(15deg); }
}
