:root {
  --bg: #f7f6f2;
  --ink: #1b3a34;
  --muted: #6d736f;
  --line: #e6e3db;
  --card: #ffffff;
  --teal: #1b3a34;
  --teal-deep: #142e29;
  --gold: #c4a15a;
  --gold-deep: #8c6a2c;
  --shadow: 0 10px 30px rgba(20, 30, 26, 0.07);
  --font: "IBM Plex Sans", "Segoe UI", sans-serif;
  --display: "Outfit", "IBM Plex Sans", sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --search-w: 680px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
}

body {
  overflow-x: hidden;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bg-mesh {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(640px 280px at 50% 18%, rgba(196, 161, 90, 0.08), transparent 70%);
}

.topbar,
.home,
.footer,
.serp-search,
.serp-body,
.tabs {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 6px 16px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand-mark .mark {
  width: 22px;
  height: 22px;
  margin: 0;
}

.serp-logo {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
}

.serp-logo .mark {
  width: 28px;
  height: 28px;
  margin: 0;
}

.serp-logo span {
  padding-left: 0.18em;
}

.top-right a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.top-right a:hover {
  color: var(--teal);
}

.icon-btn {
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
}

.icon-btn:hover {
  background: rgba(20, 104, 95, 0.08);
}

.sign-in {
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #d8d6d0;
  background: #fff;
  color: var(--ink);
  font: 600 14px var(--font);
  cursor: pointer;
}

.sign-in:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.home {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9vh 16px 40px;
}

.brand {
  text-align: center;
  margin-bottom: 40px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mark {
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  object-fit: contain;
  display: block;
}

.logo {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5.6vw, 52px);
  font-weight: 500;
  letter-spacing: 0.34em;
  padding-left: 0.34em;
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
}

.founder {
  margin: 16px 0 0;
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(11px, 1.5vw, 13px);
  color: var(--gold);
  letter-spacing: 0.42em;
  padding-left: 0.42em;
  text-transform: uppercase;
}

.credit {
  margin: 14px 0 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.credit a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.credit a:hover {
  border-bottom-color: var(--gold);
  color: var(--gold-deep);
}

@keyframes rise {
  from { transform: translateY(12px); }
  to { transform: none; }
}

.search-wrap {
  width: min(var(--search-w), 100%);
  position: relative;
  animation: rise 0.65s 0.18s ease both;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 6px 8px 6px 18px;
  border: 1px solid #eceae4;
  border-radius: 999px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-box:hover,
.search-box:focus-within {
  border-color: rgba(20, 104, 95, 0.28);
  box-shadow: 0 12px 36px rgba(12, 63, 58, 0.12);
}

.search-box.shake {
  animation: shake 0.42s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.lead {
  color: #8b9098;
  display: grid;
  place-items: center;
}

.search-box input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-family: inherit;
  background: transparent;
  color: var(--ink);
  min-width: 0;
}

.search-box input::placeholder {
  color: #8b9098;
}

.tool {
  border: 0;
  background: transparent;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  color: #5c6370;
}

.tool:hover {
  background: #f1efe9;
  color: var(--teal);
}

.split {
  width: 1px;
  height: 22px;
  background: #e4e2dc;
  margin: 0 4px;
}

.send {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.send:hover {
  background: var(--teal-deep);
}

.suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: 62px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 8px 0 10px;
  display: none;
  overflow: hidden;
  z-index: 4;
}

.search-wrap.open .suggest {
  display: block;
}

.suggest button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 18px;
  font: 500 15px var(--font);
  color: var(--ink);
  cursor: pointer;
}

.suggest button:hover,
.suggest button.active {
  background: #f4f2ec;
}

.modes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(var(--search-w), 100%);
}

.presets {
  width: min(var(--search-w), 100%);
  margin-top: 18px;
}

.presets-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 500 12px var(--font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s ease;
}

.presets-toggle:hover {
  color: var(--ink);
}

.presets-label {
  flex-shrink: 0;
}

.presets-hint {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #9aa09c;
}

.presets-chevron {
  flex-shrink: 0;
  display: inline-flex;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.presets.collapsed .presets-chevron {
  transform: rotate(-90deg);
}

.presets-panel {
  overflow: hidden;
  max-height: 120px;
  opacity: 1;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.25s ease;
}

.presets.collapsed .presets-panel {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}

.presets:not(.collapsed) .presets-panel {
  margin-top: 12px;
}

.presets.collapsed .presets-hint {
  display: inline;
}

.image-picker .compact-brand {
  margin-bottom: 24px;
}

.image-picker .compact-brand .mark {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}

.image-picker .compact-brand .logo {
  font-size: clamp(22px, 5vw, 32px);
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}

.image-picker .founder,
.image-picker .credit {
  display: none;
}

.image-presets {
  width: min(var(--search-w), 100%);
  margin-top: 20px;
}

.image-presets-head {
  margin-bottom: 18px;
  text-align: center;
}

.image-presets-kicker {
  margin: 0 0 8px;
  font: 600 11px var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.image-presets-title {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 600;
  color: var(--ink);
}

.image-presets-sub {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.preset-group {
  margin-bottom: 18px;
}

.preset-group-title {
  margin: 0 0 10px;
  font: 600 12px var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.preset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preset-chip {
  border: 1px solid #e7e4dc;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font: 500 12.5px var(--font);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  box-shadow: 0 1px 2px rgba(22, 24, 28, 0.04);
}

.preset-chip:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(196, 161, 90, 0.18);
  transform: translateY(-1px);
}

.preset-back {
  margin-top: 8px;
}

.mode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid #e7e4dc;
  background: #fff;
  color: #3a423e;
  font: 500 12.5px var(--font);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(22, 24, 28, 0.04);
}

.mode:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.tagline {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #8a8f8b;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
}

.sparkle {
  animation: twinkle 2.8s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.85; }
  50% { transform: rotate(18deg) scale(1.12); opacity: 1; }
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: auto;
  padding: 16px 28px;
  border-top: 1px solid #e8e6e0;
  color: #6b717a;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.45);
}

.foot-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
}

.region {
  border: 0;
  background: transparent;
  color: inherit;
  font: 500 13px var(--font);
  cursor: pointer;
  padding: 0;
}

.footer a {
  color: #6b717a;
  text-decoration: none;
}

.footer a:hover,
.region:hover {
  color: var(--teal);
}

.copy {
  margin: 0;
}

.serp-search {
  width: min(760px, calc(100% - 40px));
  margin: 8px auto 0;
}

.tabs {
  display: flex;
  gap: 6px;
  width: min(760px, calc(100% - 40px));
  margin: 18px auto 0;
  border-bottom: 1px solid #e8e6e0;
}

.tab {
  border: 0;
  background: transparent;
  padding: 12px 14px 10px;
  font: 600 14px var(--font);
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.serp-body {
  width: min(760px, calc(100% - 40px));
  margin: 18px auto 64px;
}

.stats {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.engine-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 16px;
}

.engine-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(196, 161, 90, 0.45);
  background: linear-gradient(135deg, #1b3a34 0%, #234a42 55%, #1b3a34 100%);
  color: #f4f1ea;
  box-shadow: 0 8px 24px rgba(27, 58, 52, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.engine-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(196, 161, 90, 0.22) 50%, transparent 65%);
  animation: engine-shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes engine-shine {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}

.engine-brand {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.engine-brand.alt {
  color: #e8d4a8;
}

.engine-plus {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.9;
}

.engine-crown {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7efd9, #eddca8);
  border: 1px solid rgba(196, 161, 90, 0.55);
  color: #6b4f1a;
  font: 700 11px var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(196, 161, 90, 0.22);
}

.engine-meta {
  font-size: 13px;
  color: var(--muted);
}

.ai-card {
  border: 1px solid #ebe8e1;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 22px;
  background: #fff;
  animation: rise 0.5s ease;
  box-shadow: var(--shadow);
}

.ai-card h2 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vision-caption {
  margin: 0 0 12px !important;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
}

.ai-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #3a3f45;
}

.gen-image {
  margin: 0 0 16px;
}

.player-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 14px;
  cursor: zoom-in;
  overflow: hidden;
}

.player-stage img,
.gen-image img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #f0ede6;
}

.media-player {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(20, 30, 26, 0.72);
  display: grid;
  place-items: center;
  padding: 24px;
}

.media-card {
  width: min(720px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 18px;
}

.media-card img,
.media-card audio {
  width: 100%;
  margin: 12px 0;
}

.admin-form input {
  display: block;
  width: 100%;
  margin: 8px 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: 15px var(--font);
}

.gen-actions {
  margin-top: 10px;
}

.download {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--teal);
  color: #fff;
  font: 600 13px var(--font);
  text-decoration: none;
  cursor: pointer;
}

.download.ghost {
  background: transparent;
  color: var(--teal);
  margin-right: 8px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip {
  font-size: 12px;
  color: var(--teal-deep);
  background: #eef6f4;
  border-radius: 16px;
  padding: 5px 10px;
  text-decoration: none;
  font-weight: 600;
}

.result {
  margin: 0 0 22px;
  animation: rise 0.45s ease both;
}

.result .url {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.result a.title {
  font-size: 19px;
  color: #124f8a;
  text-decoration: none;
  line-height: 1.3;
  font-weight: 600;
}

.result a.title:hover {
  text-decoration: underline;
}

.result p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.58;
  color: #4d5156;
}

.loader {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 48px 0;
}

.loader i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  animation: bounce 1s infinite ease-in-out;
}

.loader i:nth-child(2) { background: #1a7a6e; animation-delay: 0.12s; }
.loader i:nth-child(3) { background: var(--gold); animation-delay: 0.24s; }
.loader i:nth-child(4) { background: var(--teal-deep); animation-delay: 0.36s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0) scale(0.85); opacity: 0.6; }
  40% { transform: translateY(-10px) scale(1); opacity: 1; }
}

.listening {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(246, 245, 242, 0.88);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.listening-card {
  text-align: center;
}

.orb {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--ink);
  animation: orb 1.4s ease-in-out infinite;
}

@keyframes orb {
  0%, 100% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(20, 104, 95, 0.35); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 18px rgba(20, 104, 95, 0); }
}

.drawer {
  position: fixed;
  z-index: 25;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(300px, 86vw);
  background: #fff;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 12px 0 40px rgba(12, 63, 58, 0.12);
}

.drawer[hidden],
.scrim[hidden] {
  display: none;
}

.drawer-title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--ink);
}

.drawer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.drawer a:hover {
  color: var(--teal);
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(18, 22, 20, 0.28);
}

@media (max-width: 720px) {
  .topbar {
    padding: 12px 14px;
    padding-top: max(12px, env(safe-area-inset-top));
    gap: 8px;
  }

  .top-left {
    gap: 4px;
    min-width: 0;
  }

  .top-right {
    gap: 4px;
    flex-shrink: 0;
  }

  .brand-mark span {
    display: none;
  }

  .top-right a {
    display: none;
  }

  .sign-in {
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .serp-logo span {
    letter-spacing: 0.12em;
    font-size: 11px;
  }

  .home {
    padding: 6vh 14px 32px;
    padding-top: max(6vh, calc(env(safe-area-inset-top) + 12px));
  }

  .brand {
    margin-bottom: 28px;
  }

  .mark {
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
  }

  .logo {
    font-size: clamp(26px, 8vw, 34px);
    letter-spacing: 0.18em;
    padding-left: 0.18em;
  }

  .founder {
    font-size: 10px;
    letter-spacing: 0.28em;
    padding-left: 0.28em;
    margin-top: 12px;
  }

  .credit {
    font-size: 11px;
    margin-top: 10px;
  }

  .search-box {
    min-height: 52px;
    padding: 4px 6px 4px 14px;
    gap: 4px;
  }

  .search-box input {
    font-size: 16px;
  }

  .tool {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .split {
    margin: 0 2px;
  }

  .send {
    width: 40px;
    height: 40px;
  }

  .presets-hint {
    display: none;
  }

  .presets-toggle {
    font-size: 11px;
  }

  .mode {
    height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }

  .tagline {
    margin-top: 36px;
    font-size: 14px;
    padding: 0 12px;
    text-align: center;
  }

  .serp-search,
  .tabs,
  .serp-body {
    width: calc(100% - 24px);
  }

  .tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex-shrink: 0;
    padding: 10px 12px 8px;
    font-size: 13px;
  }

  .engine-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .engine-badge,
  .engine-crown {
    max-width: 100%;
  }

  .engine-brand {
    font-size: 10px;
  }

  .engine-crown {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 5px 10px;
  }

  .ai-card {
    padding: 16px;
    border-radius: 16px;
  }

  .ai-card h2 {
    font-size: 16px;
    flex-wrap: wrap;
  }

  .gen-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .download {
    margin-top: 0;
    font-size: 12px;
    padding: 8px 12px;
  }

  .download.ghost {
    margin-right: 0;
  }

  .result a.title {
    font-size: 17px;
  }

  .footer {
    justify-content: center;
    text-align: center;
    padding: 14px 16px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }

  .foot-left {
    justify-content: center;
  }

  .media-player {
    padding: 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .media-card {
    padding: 14px;
    border-radius: 14px;
  }
}

@media (max-width: 380px) {
  .sign-in {
    padding: 0 10px;
    font-size: 12px;
  }

  .logo {
    letter-spacing: 0.12em;
    padding-left: 0.12em;
  }

  .founder {
    letter-spacing: 0.2em;
    padding-left: 0.2em;
  }

  .preset-grid {
    gap: 6px;
  }

  .preset-chip {
    font-size: 12px;
    padding: 7px 12px;
  }

  .image-presets-sub {
    font-size: 13px;
    padding: 0 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
