/* =========================================================
   Star Merge Tycoon — Stardom Runway landing
   Light glamorous palette: pearl lilac + plum + gold
   Layout: career star-trail + merge-board + diagonal runway
   ========================================================= */

:root {
  --bg: #f7f0ff;
  --bg-soft: #fff8fc;
  --bg-warm: #fff6ea;
  --surface: rgba(255, 255, 255, 0.82);
  --plum: #4a1f6a;
  --plum-deep: #321247;
  --plum-mid: #6b2d8b;
  --lilac: #c4a0e0;
  --lilac-soft: #e8d5f7;
  --gold: #d4a017;
  --gold-bright: #f0c43a;
  --gold-edge: #b8860b;
  --pink: #e56ba8;
  --text: #321247;
  --muted: #6b5280;
  --line: rgba(106, 45, 139, 0.14);
  --shadow: 0 18px 40px rgba(74, 31, 106, 0.12);
  --radius: 22px;
  --nav-h: 72px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
}

.cursor-pointer {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--plum);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ---------- Stage background ---------- */
.stage-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.stage-bg__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(240, 196, 58, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 8%, rgba(229, 107, 168, 0.18), transparent 50%),
    linear-gradient(180deg, #fbf6ff 0%, #f3e8ff 42%, #fff8f2 100%);
}

.stage-bg__glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.stage-bg__glow--a {
  top: 20%;
  left: -8%;
  background: #e8d5f7;
}

.stage-bg__glow--b {
  bottom: 5%;
  right: -10%;
  background: #ffe8b8;
}

.stage-bg__stars span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.45;
  animation: twinkle 3.6s ease-in-out infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}

/* ---------- Nav (gold-frame game banner) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), backdrop-filter 0.25s;
}

.nav.is-scrolled {
  background: rgba(247, 240, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(74, 31, 106, 0.08);
}

.nav__inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: calc(var(--nav-h) - 1.5rem);
  padding: 0.35rem 0.55rem 0.35rem 0.55rem;
  border: 1.5px solid rgba(212, 160, 23, 0.55);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 252, 0.9));
  box-shadow: var(--shadow);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav__brand img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(74, 31, 106, 0.18);
}

.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--plum-deep);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(74, 31, 106, 0.35));
}

.nav__links {
  display: none;
  margin-left: auto;
  gap: 0.35rem;
}

.nav__links a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--plum-mid);
  transition: background 0.2s, color 0.2s;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  background: var(--lilac-soft);
  color: var(--plum-deep);
  outline: none;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.nav__burger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--plum);
  transition: transform 0.2s, opacity 0.2s;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__drawer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0.65rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1.5px solid rgba(212, 160, 23, 0.4);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.nav__drawer[hidden] {
  display: none;
}

.nav__drawer a {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--plum);
}

.nav__drawer a:hover {
  background: var(--lilac-soft);
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }

  .nav__actions {
    margin-left: 0;
  }

  .nav__burger,
  .nav__drawer {
    display: none !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, filter 0.2s;
}

.btn svg,
.btn i {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid rgba(212, 160, 23, 0.55);
  outline-offset: 3px;
}

.btn--gold {
  color: var(--plum-deep);
  background: linear-gradient(180deg, #ffe27a 0%, var(--gold-bright) 45%, var(--gold) 100%);
  border: 1.5px solid var(--gold-edge);
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.35);
}

.btn--gold:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.45);
}

.btn--plum {
  color: #fff;
  background: linear-gradient(180deg, #8b45b0 0%, var(--plum-mid) 55%, var(--plum) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(74, 31, 106, 0.28);
}

.btn--plum:hover {
  filter: brightness(1.06);
}

.btn--lg {
  min-height: 52px;
  padding: 0.8rem 1.45rem;
  font-size: 1rem;
}

/* ---------- Hero ---------- */
.hero {
  padding-bottom: 2.5rem;
}

.hero__plane {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #2a1040, #5a2580);
}

.hero__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 500;
  object-fit: cover;
  object-position: center top;
}

.hero__copy {
  margin-top: -1.25rem;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.75rem 1.35rem 1.5rem;
  border-radius: 28px;
  border: 1.5px solid rgba(212, 160, 23, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 252, 0.94));
  box-shadow: var(--shadow);
}

.hero__brand {
  margin: 0 0 0.5rem;
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(212, 160, 23, 0.55);
  background: linear-gradient(180deg, #4a1f6a, #6b2d8b);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  text-shadow: 0 2px 0 rgba(20, 0, 40, 0.35);
}

.hero__title {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 5vw, 3.1rem);
  line-height: 1.15;
  color: var(--plum-deep);
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  margin: 0 auto 1.35rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.sec-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.sec-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 23, 0.4);
  background: var(--bg-warm);
  color: var(--gold-edge);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sec-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  color: var(--plum-deep);
}

.sec-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Journey star trail (symmetric zigzag) ---------- */
.trail {
  --trail-media: 200px;
  --trail-gap: 3.5rem;
  position: relative;
  max-width: 920px;
  margin-inline: auto;
  padding: 0.5rem 0 1rem;
}

.trail__path {
  display: none;
  position: absolute;
  left: 50%;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 4px;
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 999px;
  background: repeating-linear-gradient(
    180deg,
    var(--gold) 0 8px,
    transparent 8px 18px
  );
  opacity: 0.55;
}

.trail__path path {
  display: none;
}

.trail__stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.trail-stop {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.trail-stop__badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--plum-deep);
  background: linear-gradient(180deg, #ffe27a, var(--gold));
  border: 1.5px solid var(--gold-edge);
  box-shadow: 0 6px 14px rgba(212, 160, 23, 0.35);
}

.trail-stop__media {
  width: min(var(--trail-media), 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(212, 160, 23, 0.35);
  background: #2a1040;
  aspect-ratio: 576 / 1024;
  margin-inline: auto;
}

.trail-stop__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.trail-stop__text h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--plum-deep);
}

.trail-stop__text p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 768px) {
  .trail {
    --trail-media: 220px;
  }

  .trail__path {
    display: block;
  }

  .trail-stop {
    /* Equal columns → mirrored left/right */
    grid-template-columns: 1fr 1fr;
    column-gap: var(--trail-gap);
    row-gap: 0;
    padding: 0.5rem 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .trail-stop__badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  /* Default: image LEFT, text RIGHT */
  .trail-stop__media {
    grid-column: 1;
    grid-row: 1;
    width: var(--trail-media);
    margin: 0;
    justify-self: end;
  }

  .trail-stop__text {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    width: min(100%, 320px);
    padding: 1.1rem 1.25rem;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: left;
  }

  /* Flip: text LEFT, image RIGHT (mirror of default) */
  .trail-stop--flip .trail-stop__media {
    grid-column: 2;
    justify-self: start;
  }

  .trail-stop--flip .trail-stop__text {
    grid-column: 1;
    justify-self: end;
    text-align: right;
  }
}

/* ---------- Merge board features ---------- */
.merge-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.tile {
  position: relative;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(248, 236, 255, 0.9));
  border: 1.5px solid rgba(212, 160, 23, 0.28);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.65);
  box-shadow: 0 20px 40px rgba(74, 31, 106, 0.16), 0 0 0 3px rgba(240, 196, 58, 0.15);
}

.tile__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--plum-mid), var(--plum));
  box-shadow: 0 8px 18px rgba(74, 31, 106, 0.28);
}

.tile__icon svg,
.tile__icon i {
  width: 24px;
  height: 24px;
}

.tile__lvl {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-width: 2.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  color: var(--gold-bright);
  background: var(--plum-deep);
}

.tile h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--plum-deep);
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.tile--wide {
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 196, 58, 0.22), transparent 45%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(248, 236, 255, 0.92));
}

@media (min-width: 700px) {
  .merge-board {
    grid-template-columns: repeat(6, 1fr);
  }

  .tile--wide {
    grid-column: span 6;
  }

  .tile:not(.tile--wide) {
    grid-column: span 3;
  }
}

@media (min-width: 980px) {
  .tile--wide {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .tile:not(.tile--wide) {
    grid-column: span 2;
  }
}

/* ---------- Gallery runway ---------- */
.gallery {
  overflow: hidden;
}

.runway {
  position: relative;
  padding: 1rem 0 2rem;
}

.runway::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 42%;
  height: 70px;
  transform: skewY(-3deg);
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.2), rgba(107, 45, 139, 0.18), transparent);
  pointer-events: none;
}

.runway__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 1rem max(1rem, calc((100vw - 1120px) / 2));
  animation: runway-scroll 42s linear infinite;
}

.runway:hover .runway__track,
.runway:focus-within .runway__track {
  animation-play-state: paused;
}

@keyframes runway-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.phone {
  flex: 0 0 auto;
  width: min(220px, 58vw);
  margin: 0;
  text-align: center;
}

.phone picture,
.phone img {
  width: 100%;
  aspect-ratio: 576 / 1024;
  object-fit: cover;
  border-radius: 28px;
  border: 3px solid rgba(212, 160, 23, 0.55);
  box-shadow: 0 22px 40px rgba(74, 31, 106, 0.22);
  background: #2a1040;
}

.phone--tilt {
  transform: rotate(-3.5deg) translateY(18px);
}

.phone:not(.phone--tilt) {
  transform: rotate(2deg);
}

.phone figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--plum-mid);
  font-size: 0.95rem;
}

/* Duplicate track content via JS; fallback without JS still scrolls once */

/* ---------- Download spotlight ---------- */
.download {
  padding-top: 2rem;
}

.spotlight {
  position: relative;
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 32px;
  border: 1.5px solid rgba(212, 160, 23, 0.45);
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 196, 58, 0.28), transparent 55%),
    linear-gradient(180deg, #fff, #f7eaff);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spotlight__ring {
  position: absolute;
  inset: 10% 18%;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.25);
  box-shadow: inset 0 0 60px rgba(212, 160, 23, 0.12);
  pointer-events: none;
}

.spotlight__icon {
  position: relative;
  margin: 0 auto 1rem;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(74, 31, 106, 0.25);
}

.spotlight h2 {
  position: relative;
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  color: var(--plum-deep);
}

.spotlight > p {
  position: relative;
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  color: var(--muted);
}

.spotlight__cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ---------- Footer ---------- */
.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.footer__inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.footer__brand img {
  border-radius: 12px;
}

.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--plum-deep);
}

.footer__brand p {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-weight: 600;
  color: var(--plum-mid);
}

.footer__links a {
  transition: color 0.2s;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--gold-edge);
  outline: none;
}

.footer__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: center;
  }

  .footer__brand {
    justify-content: flex-start;
  }

  .footer__copy {
    grid-column: 1 / -1;
  }
}

/* ---------- Modal ---------- */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 16, 64, 0.45);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  width: min(420px, 100%);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 24px;
  border: 1.5px solid rgba(212, 160, 23, 0.55);
  background: linear-gradient(180deg, #fff, #faf0ff);
  box-shadow: 0 24px 60px rgba(40, 16, 64, 0.28);
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--plum);
  transition: background 0.2s;
}

.modal__close:hover {
  background: var(--lilac-soft);
}

.modal__panel h2 {
  margin: 0.5rem 0 0.6rem;
  font-family: var(--font-display);
  color: var(--plum-deep);
}

.modal__panel p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

body.modal-open {
  overflow: hidden;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .stage-bg__stars span,
  .runway__track {
    animation: none !important;
  }

  .btn:hover,
  .tile:hover {
    transform: none;
  }
}
