:root {
  color-scheme: dark;
  --page-bg-base: #070b12;
  --page-bg-top: #0a1422;
  --page-bg-bottom: #050911;
  --page-glow-1: rgba(39, 91, 170, 0.28);
  --page-glow-2: rgba(18, 50, 118, 0.22);
  --page-glow-3: rgba(16, 94, 160, 0.12);
  --page-glow-1-x: 18%;
  --page-glow-1-y: 14%;
  --page-glow-2-x: 82%;
  --page-glow-2-y: 78%;
  --page-glow-3-x: 48%;
  --page-glow-3-y: 42%;
  --page-noise-a: rgba(255, 255, 255, 0.014);
  --page-noise-b: rgba(42, 96, 176, 0.04);
  --page-noise-c: rgba(24, 74, 148, 0.05);
  --menu-bg-start: rgba(11, 22, 48, 0.1);
  --menu-bg-end: rgba(6, 11, 20, 0.1);
  --menu-glow-1: rgba(48, 103, 194, 0.24);
  --menu-glow-2: rgba(23, 58, 128, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  background-color: var(--page-bg-base);
  background-image:
    linear-gradient(155deg, var(--page-bg-top), var(--page-bg-bottom));
  background-attachment: fixed;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1500px 1100px at var(--page-glow-1-x) var(--page-glow-1-y), var(--page-glow-1), transparent 60%),
    radial-gradient(1300px 980px at var(--page-glow-2-x) var(--page-glow-2-y), var(--page-glow-2), transparent 62%),
    radial-gradient(1000px 700px at var(--page-glow-3-x) var(--page-glow-3-y), var(--page-glow-3), transparent 68%);
  transform-origin: center;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 24%, var(--page-noise-a) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 36%, var(--page-noise-b) 0 1.2px, transparent 1.7px),
    radial-gradient(circle at 48% 68%, var(--page-noise-c) 0 1.1px, transparent 1.6px);
  background-size: 180px 180px, 240px 240px, 220px 220px;
  background-position: 0 0, 60px 80px, 30px 140px;
  opacity: 0.5;
}

.theme-animate body::before {
  animation: pageGlowDrift 82s ease-in-out infinite alternate;
}

.theme-animate body::after {
  animation: pageNoiseDrift 110s linear infinite;
}

.ambient-scene {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: normal;
  opacity: 1;
}

.ambient-scene__asset {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.ambient-scene__hill,
.ambient-scene__sun,
.ambient-scene__bird,
.ambient-scene__figure {
  position: absolute;
  pointer-events: none;
}

.ambient-scene__hill {
  left: 0;
  bottom: 0;
  width: 80vw;
  height: 24vh;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform-origin: center bottom;
  box-shadow: 0 -40px 80px rgba(10, 18, 34, 0.18);
}

.ambient-scene__hill--far {
  background:
    linear-gradient(180deg, rgba(90, 145, 220, 0.28), rgba(18, 38, 74, 0.9)),
    radial-gradient(circle at 22% 28%, rgba(178, 211, 255, 0.22), transparent 34%);
  clip-path: var(--ambient-hill-clip, polygon(0 100%, 0 62%, 12% 54%, 24% 34%, 38% 48%, 51% 26%, 67% 46%, 82% 32%, 100% 56%, 100% 100%));
}

.ambient-scene__hill--mid {
  background:
    linear-gradient(180deg, rgba(51, 108, 188, 0.36), rgba(8, 20, 46, 0.95)),
    radial-gradient(circle at 54% 18%, rgba(156, 197, 255, 0.18), transparent 38%);
  clip-path: var(--ambient-hill-clip, polygon(0 100%, 0 66%, 18% 52%, 34% 30%, 48% 46%, 63% 22%, 81% 44%, 100% 60%, 100% 100%));
}

.ambient-scene__hill--front {
  background:
    linear-gradient(180deg, rgba(31, 68, 134, 0.48), rgba(4, 12, 30, 0.98)),
    radial-gradient(circle at 68% 14%, rgba(188, 219, 255, 0.18), transparent 36%);
  clip-path: var(--ambient-hill-clip, polygon(0 100%, 0 74%, 16% 62%, 32% 70%, 46% 46%, 58% 58%, 74% 34%, 89% 54%, 100% 48%, 100% 100%));
}

.ambient-scene__sun {
  left: 0;
  top: 0;
  width: clamp(110px, 11vw, 170px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 248, 224, 0.96), rgba(255, 208, 125, 0.9) 34%, rgba(255, 152, 84, 0.64) 70%, rgba(255, 119, 74, 0.08) 100%);
  box-shadow:
    0 0 40px rgba(255, 188, 112, 0.34),
    0 0 120px rgba(255, 140, 74, 0.2);
  opacity: 0;
}

.ambient-scene__bird {
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(240, 246, 255, 0.72), rgba(156, 186, 235, 0.18));
  clip-path: polygon(0 78%, 16% 46%, 36% 38%, 50% 22%, 64% 38%, 84% 46%, 100% 78%, 72% 62%, 50% 44%, 28% 62%);
  transform-origin: center;
  opacity: 0;
}

.ambient-scene__figure {
  width: 24px;
  height: 82px;
  color: rgba(223, 235, 255, 0.28);
  background: linear-gradient(180deg, rgba(191, 214, 255, 0.42), rgba(101, 137, 206, 0.1));
  border-radius: 12px 12px 8px 8px;
  opacity: 0;
}

.ambient-scene__figure::before {
  content: "";
  position: absolute;
  top: -18%;
  left: 29%;
  width: 42%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: currentColor;
}

.ambient-scene__figure::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -10%;
  height: 18%;
  border-radius: 999px;
  background: rgba(104, 145, 214, 0.18);
  filter: blur(8px);
}

html:not(.theme-ambient-gsap) .ambient-scene__hill {
  animation-name: ambientHillFloat;
  animation-duration: var(--ambient-duration, 20s);
  animation-timing-function: ease-in-out;
  animation-delay: var(--ambient-delay, 0s);
  animation-iteration-count: 2;
  animation-direction: var(--ambient-direction, alternate);
  animation-fill-mode: both;
}

html:not(.theme-ambient-gsap) .ambient-scene__sun {
  opacity: 0;
  animation-name: ambientSunCross;
  animation-duration: var(--ambient-duration, 36s);
  animation-timing-function: linear;
  animation-delay: var(--ambient-delay, 0s);
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

html:not(.theme-ambient-gsap) .ambient-scene__bird {
  opacity: 0;
  animation-name: ambientBirdFlight;
  animation-duration: var(--ambient-duration, 18s);
  animation-timing-function: linear;
  animation-delay: var(--ambient-delay, 0s);
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

html:not(.theme-ambient-gsap) .ambient-scene__figure {
  opacity: var(--ambient-fade-min, 0.06);
  animation-name: ambientFigureDrift;
  animation-duration: var(--ambient-duration, 12s);
  animation-timing-function: ease-in-out;
  animation-delay: var(--ambient-delay, 0s);
  animation-iteration-count: 2;
  animation-direction: var(--ambient-direction, alternate);
  animation-fill-mode: both;
}

.site-header {
  background: linear-gradient(135deg, var(--menu-bg-start), var(--menu-bg-end));
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 200;
  overflow: hidden;
  pointer-events: auto;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 180% at 10% 0%, var(--menu-glow-1), transparent 55%),
    radial-gradient(120% 180% at 90% 100%, var(--menu-glow-2), transparent 58%);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.site-footer {
  background: #070b12;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.footer-container {
  max-width: 100%;
  padding: clamp(.2vw, .2vw, .2vw);
  padding-inline: clamp(2vw, 2vw, 2vw);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.footer-container p {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.76rem;
  margin: 0;
  grid-column: 2;
  text-align: center;
}

.footer-license-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.76rem;
  grid-column: 3;
  justify-self: end;
}

.nav-container {
  max-width: 100%;
  padding: clamp(.4vw, .4vw, .4vw);
  padding-inline: clamp(2vw, 2vw, 2vw);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2vw, 3vw, 4vw);
  position: relative;
  z-index: 1;
}

.nav-brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  width: 50px;
  height: auto;
  transform-origin: 50% 50%;
}

.nav-brand a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand a:link,
.nav-brand a:visited,
.nav-brand a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.nav-controls {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
}

.nav-volume-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nav-volume-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.nav-volume-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  user-select: none;
  line-height: 1;
}

.nav-volume-slider {
  width: 44px;
  height: 16px;
  accent-color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.nav-mute-btn {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.nav-mute-btn[aria-pressed="true"] {
  background: rgba(200, 160, 0, 0.7);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-links a:active {
  color: rgba(255, 255, 255, 1); /* Keep the hover color on active */
}

.nav-links a:link {
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:visited {
  color: rgba(255, 255, 255, 0.82);
}

.header-image-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 60%;
  min-width: 0;
  overflow-x: auto;
  padding-block: 4px;
  scrollbar-width: none;
}

.header-image-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(120, 200, 255, 0.3);
}

/* Unvisited links */
a:link {
  color: #3887e0; /* A soft blue that works on dark backgrounds */
  text-decoration: none; /* Optional: Remove underlines */
}

/* Visited links */
a:visited {
  color: #7b68ee; /* A lighter purple for visited links */
}

/* Hover effect */
a:hover {
  color: #90cdfc; /* White on hover for contrast */
  text-decoration: underline; /* Optional: Add underline on hover */
}

/* Active (clicked) state */
a:active {
  color: #cde4ff; /* A subtle red for active state */
}

.layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  min-height: auto;
}

.layout.single {
  grid-template-columns: 1fr;
}

.layout.layout-single {
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
  margin: 0;
}

.column {
  position: relative;
  padding: 0 clamp(2vw, 2vw, 2vw);
  display: flex;
  align-items: center;
  min-height: auto;
}

.column::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-size: 180% 180%;
  background-position: 0% 50%;
  animation: drift 90s ease-in-out infinite;
}

.left {
  background: transparent;
  align-items: stretch;
}

.left::before {
  background-image:
    radial-gradient(900px 500px at 15% 20%, rgba(120, 200, 255, 0.16), transparent 55%),
    radial-gradient(900px 500px at 85% 80%, rgba(170, 140, 255, 0.14), transparent 55%);
}

.right {
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  align-items: stretch;
}

.right::before {
  background-image:
    radial-gradient(900px 500px at 20% 80%, rgba(170, 140, 255, 0.12), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(120, 200, 255, 0.12), transparent 60%);
  animation-duration: 105s;
}

.single {
  background: transparent;
  align-items: stretch;
}

.single::before {
  background-image:
    radial-gradient(900px 500px at 15% 20%, rgba(120, 200, 255, 0.16), transparent 55%),
    radial-gradient(900px 500px at 85% 80%, rgba(170, 140, 255, 0.14), transparent 55%);
}

.column-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
}

#wow-img,
#magic-text {
  will-change: transform;
}

.left .column-inner {
  display: flex;
  flex-direction: column;
  min-height: auto;
  z-index: 500;
}

.right .column-inner {
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.single .column-inner {
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.layout.layout-single .column {
  align-items: stretch;
  justify-content: flex-start;
  padding-block: 0;
  padding-inline: clamp(16px, 2vw, 32px);
}

.layout.layout-single .column-inner {
  max-width: none;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
}

h1,
h2 {
  margin: 4px 0 8px;
  letter-spacing: -0.02em;
}

.post-box {
  flex: 1 1 auto;
  border-radius: 16px;
  border: 5px solid rgba(255, 255, 255, 0.20);
  overflow: hidden;
  position: relative;
  background: transparent;
  margin-bottom: 15px;
}

.post-box > * {
  position: relative;
  z-index: 1;
}

.post-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  pointer-events: none;
  z-index: 0;
}

.post-list {
  height: auto;
  overflow: visible;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* Contained feed: constrained to the viewport so the page itself never overflows */
.post-box--contained {
  max-height: calc(100vh - 140px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-box--contained .post-list {
  flex: 1 1 0;
  min-height: 0;
  height: auto;
  overflow-y: scroll;
  overscroll-behavior: contain;
}

/* Generic scroll container for any .post-box content */
.post-scroll {
  height: auto;
  overflow: visible;
  padding: 14px;
  position: relative;
  z-index: 1;
}

.post-scroll > p {
  margin: 0 0 14px;
}

.post-scroll > :last-child {
  margin-bottom: 0;
}

.post-scroll.no-scroll {
  overflow: visible;
}

.dev-package-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0 16px;
}

.dev-package-cta .lemonsqueezy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 240px);
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 223, 129, 0.98), rgba(255, 168, 62, 0.98));
  color: #171209;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px rgba(255, 159, 48, 0.22);
}

.dev-package-cta .lemonsqueezy-button:focus-visible {
  color: #171209;
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

.post {
  border-radius: 14px;
  border: 5px solid rgba(255, 255, 255, 0.16);
  padding: 12px;
  flex: 0 0 auto;
  min-width: 0;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.post::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  pointer-events: none;
  z-index: 0;
}

.post > * {
  position: relative;
  z-index: 1;
}

.post-meta {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-sticky-label {
  margin-left: auto;
  white-space: nowrap;
}

.post-content {
  display: grid;
  gap: 10px;
}

.post-text {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: rgba(255, 255, 255, 0.86);
}

.post-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  max-width: 100%;
}

.post-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}

.post-content video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  border: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}

.post-embed-fallback {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 16, 30, 0.42);
}

.post-embed-fallback p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.post-embed-fallback a {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.post-embed-fallback a:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.post-empty {
  color: rgba(255, 255, 255, 0.62);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px;
}

.pill {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  animation: floaty 36s ease-in-out infinite;
}

@keyframes drift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pageGlowDrift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  50% {
    transform: translate3d(1%, 1.5%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(2%, -1%, 0) scale(1.02);
  }
}

@keyframes pageNoiseDrift {
  0% {
    background-position: 0 0, 60px 80px, 30px 140px;
  }
  100% {
    background-position: 180px 120px, -120px 160px, 210px 20px;
  }
}

@keyframes ambientHillFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(var(--ambient-drift-x, 0vw), var(--ambient-drift-y, -1vh), 0);
  }
}

@keyframes ambientSunCross {
  0% {
    transform: translate3d(var(--ambient-start-x, -22vw), var(--ambient-start-y, 10vh), 0) scale(0.96);
    opacity: 0;
  }
  12% {
    opacity: var(--ambient-opacity, 0.92);
  }
  50% {
    transform: translate3d(var(--ambient-mid-x, 44vw), var(--ambient-mid-y, 1vh), 0) scale(1);
    opacity: var(--ambient-opacity, 0.92);
  }
  100% {
    transform: translate3d(var(--ambient-end-x, 108vw), var(--ambient-end-y, 8vh), 0) scale(0.94);
    opacity: 0;
  }
}

@keyframes ambientBirdFlight {
  0% {
    transform: translate3d(var(--ambient-start-x, -16vw), var(--ambient-start-y, 20vh), 0) scale(var(--ambient-scale, 1));
    opacity: 0;
  }
  14% {
    opacity: var(--ambient-opacity, 0.58);
  }
  50% {
    transform: translate3d(var(--ambient-mid-x, 48vw), var(--ambient-mid-y, 15vh), 0) scale(var(--ambient-mid-scale, 1.04));
    opacity: var(--ambient-opacity, 0.58);
  }
  100% {
    transform: translate3d(var(--ambient-end-x, 112vw), var(--ambient-end-y, 12vh), 0) scale(var(--ambient-scale, 1));
    opacity: 0;
  }
}

@keyframes ambientFigureDrift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: var(--ambient-fade-min, 0.06);
  }
  100% {
    transform: translate3d(0, -0.8vh, 0);
    opacity: var(--ambient-fade-max, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .column::before,
  .pill {
    animation: none;
  }

  body::before,
  body::after {
    animation: none;
  }
}
