@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Bowlby+One+SC&display=swap");


:root {
  --ink: #0f0a08;
  --panel: #17100d;
  --panel-2: #211714;
  --cream: #fff0c6;
  --muted: #c9b894;
  --red: #ef4935;
  --gold: #f6c33d;
  --green: #45ce67;
  --blue: #27aee3;
  --line: rgba(255, 240, 198, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(239, 73, 53, 0.08), transparent 28rem),
    radial-gradient(circle at 85% 40%, rgba(39, 174, 227, 0.06), transparent 30rem),
    var(--ink);
  color: var(--cream);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 108px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 4.5vw;
  background: linear-gradient(to bottom, rgba(10, 6, 5, 0.98), rgba(10, 6, 5, 0.84));
  border-bottom: 1px solid rgba(255, 240, 198, 0.14);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--blue), var(--red));
  box-shadow: 0 0 11px rgba(246, 195, 61, 0.45);
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  transition: filter 180ms ease, transform 180ms ease;
}

.brand:hover img {
  filter: drop-shadow(3px 0 var(--red)) drop-shadow(-3px 0 var(--blue));
  transform: translateY(-2px);
}

nav {
  display: flex;
  gap: clamp(20px, 3.2vw, 52px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav a {
  position: relative;
  padding: 12px 0;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

nav .social-icon {
  display: inline-grid;
  width: 34px;
  place-items: center;
  font-size: 22px;
}

nav .social-icon:hover {
  color: var(--gold);
  transform: scale(1.12);
}

.mobile-menu {
  display: none !important;
}

.location-chip {
  min-width: max-content;
  padding: 12px 22px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  box-shadow:
    0 0 0 2px var(--red),
    inset 0 0 14px rgba(246, 195, 61, 0.08);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 1000px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  background-image: url("/assets/hero-arcade.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroSettle 1.2s ease-out forwards;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 7, 5, 0.98) 0%, rgba(12, 7, 5, 0.91) 31%, rgba(12, 7, 5, 0.48) 57%, rgba(12, 7, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 7, 5, 0.86) 0%, transparent 33%, rgba(12, 7, 5, 0.26) 100%);
}

.hero-content {
  width: min(780px, 56vw);
  margin: 110px 0 10px 4.5vw;
  padding-top: 44px;
}

.hero-eyebrow {
  margin-left: 42px;
}

.hero-sign {
  position: relative;
  max-width: 660px;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #100907;
  box-shadow:
    0 0 0 1px rgba(255, 240, 198, 0.12),
    0 22px 70px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(239, 73, 53, 0.12);
}

.hero-sign img {
  width: 100%;
  height: auto;
  transform: scale(1.015);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 10px 64px;
  font-size: 24px;
  font-weight: 700;
}

.fact-red {
  color: var(--red);
}

.fact-blue {
  color: var(--blue);
}

.price-line,
.place-line {
  margin: 8px 0 8px 64px;
  font-size: 24px;
  font-weight: 700;
}

.price-line {
  color: var(--gold);
}

.place-line {
  color: var(--green);
}

.rainbow-button,
.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 62px;
  padding: 0 34px;
  border-radius: 14px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.rainbow-button {
  margin: 22px 0 0 64px;
  border: 2px solid var(--gold);
  background: rgba(16, 10, 8, 0.76);
  box-shadow:
    0 0 0 2px var(--red),
    0 0 0 5px var(--blue),
    inset 0 0 20px rgba(246, 195, 61, 0.08);
}

.rainbow-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 2px var(--red),
    0 0 0 5px var(--blue),
    0 0 24px rgba(246, 195, 61, 0.28);
}

.rainbow-button span {
  transition: transform 180ms ease;
}

.rainbow-button:hover span {
  transform: translateX(6px);
}

.stats {
  position: relative;
  z-index: 2;
  width: min(1380px, 91vw);
  margin: -72px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat {
  min-height: 156px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  border: 1px solid currentColor;
  border-radius: 26px;
  background: rgba(16, 10, 8, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
}

.stat-red {
  color: var(--red);
}

.stat-blue {
  color: var(--blue);
}

.stat-green {
  color: var(--green);
}

.stat-number {
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.stat h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat div p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section {
  width: min(1320px, 89vw);
  margin: 0 auto;
  padding: 132px 0;
}

.section h2,
.contact-strip h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.section p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.6;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.visit-intro > p {
  max-width: 700px;
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.solid-button {
  min-height: 58px;
  background: var(--red);
  color: #160c09;
}

.solid-button:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.text-link {
  color: var(--cream);
  font-size: 20px;
  font-weight: 800;
  border-bottom: 2px solid var(--blue);
}

.hours-card {
  overflow: hidden;
  border: 1px solid rgba(246, 195, 61, 0.55);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(33, 23, 20, 0.96), rgba(16, 10, 8, 0.98));
  box-shadow: 18px 18px 0 rgba(239, 73, 53, 0.08);
}

.hours-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.open-light {
  color: var(--green);
  font-family: monospace;
  font-size: 14px;
  text-shadow: 0 0 10px rgba(69, 206, 103, 0.7);
}

.hours-list {
  padding: 16px 28px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 240, 198, 0.12);
}

.hours-list .closed {
  color: var(--red);
}

.hours-card > p {
  margin: 0;
  padding: 16px 28px 24px;
  color: #9d8e72;
  font-size: 15px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading > p {
  margin: 0;
}

.collection-section {
  border-top: 1px solid var(--line);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.collection-card {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(to top, rgba(12, 7, 5, 0.98) 0 38%, rgba(12, 7, 5, 0.12) 78%),
    var(--card-image);
  background-position: center;
  background-size: cover;
}

.cabinet-card {
  --card-image:
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(39, 174, 227, 0.34) 60px 64px, transparent 66px 114px, rgba(239, 73, 53, 0.26) 116px 120px),
    linear-gradient(145deg, #2b1713, #0b1722);
}

.pinball-card {
  --card-image:
    radial-gradient(circle at 62% 20%, rgba(246, 195, 61, 0.72) 0 2px, transparent 4px),
    radial-gradient(circle at 22% 35%, rgba(39, 174, 227, 0.72) 0 2px, transparent 4px),
    radial-gradient(circle at 80% 50%, rgba(239, 73, 53, 0.72) 0 2px, transparent 4px),
    linear-gradient(155deg, #34170e, #08131b);
}

.care-card {
  --card-image:
    linear-gradient(115deg, transparent 0 48%, rgba(69, 206, 103, 0.24) 50% 52%, transparent 54%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px),
    linear-gradient(155deg, #16281e, #0f0a08);
}

.collection-card > span {
  position: absolute;
  top: 26px;
  left: 28px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-card h3,
.merch-card h3 {
  margin: 0;
  color: var(--cream);
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.collection-card p {
  margin-bottom: 0;
  font-size: 18px;
}

.event-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.event-copy > p:not(.section-kicker) {
  max-width: 640px;
}

.event-copy .solid-button {
  margin-top: 22px;
}

.scoreboard {
  border: 3px solid #503a30;
  border-radius: 10px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px),
    #130c09;
  box-shadow:
    0 0 0 10px #211714,
    0 0 0 12px var(--red),
    0 0 0 15px var(--gold),
    0 0 0 18px var(--blue);
}

.scoreboard-top,
.scoreboard-foot {
  display: flex;
  justify-content: space-between;
  padding: 18px 24px;
  color: var(--muted);
  font-family: monospace;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scoreboard-main {
  display: grid;
  gap: 10px;
  padding: 50px 24px;
  border-block: 1px solid var(--line);
  color: var(--red);
  font-family: monospace;
  font-size: clamp(30px, 4vw, 58px);
  text-align: center;
  text-shadow: 0 0 14px rgba(239, 73, 53, 0.45);
}

.scoreboard-main strong:last-child {
  color: var(--gold);
}

.party-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.party-art {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border: 1px solid rgba(69, 206, 103, 0.45);
  border-radius: 999px 999px 24px 24px;
  background:
    repeating-radial-gradient(circle at 50% 100%, transparent 0 28px, rgba(69, 206, 103, 0.15) 30px 32px),
    linear-gradient(150deg, rgba(39, 174, 227, 0.16), rgba(239, 73, 53, 0.14));
}

.party-art img {
  width: 82%;
  opacity: 0.88;
}

.party-copy > p:not(.section-kicker) {
  max-width: 680px;
}

.rainbow-button.compact {
  margin: 18px 0 0;
}

.merch-section {
  border-top: 1px solid var(--line);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.merch-card {
  padding: 14px 14px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(33, 23, 20, 0.68);
  transition: transform 180ms ease, border-color 180ms ease;
}

.merch-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.merch-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle, rgba(255, 240, 198, 0.08), transparent 55%),
    #0e0907;
}

.merch-image img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.merch-card > p {
  margin: 22px 10px 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.merch-card h3 {
  margin-inline: 10px;
  font-size: 22px;
}

.merch-link {
  display: inline-block;
  margin-top: 36px;
}

.about-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: center;
}

.about-copy > p:not(.section-kicker) {
  margin-bottom: 18px;
}

.about-badge {
  width: 100%;
  border-radius: 42px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.4));
}

.about-details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-details article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(33, 23, 20, 0.9), rgba(15, 10, 8, 0.96));
}

.about-details article:nth-child(1) {
  border-top-color: var(--red);
}

.about-details article:nth-child(2) {
  border-top-color: var(--gold);
}

.about-details article:nth-child(3) {
  border-top-color: var(--blue);
}

.about-details span {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-details h3 {
  margin: 18px 0 0;
  color: var(--cream);
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.12;
}

.about-details p {
  margin-bottom: 0;
  font-size: 18px;
}

.about-section blockquote {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 0 28px 30px;
  border-left: 6px solid var(--red);
  color: var(--cream);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.45;
}

.about-section cite {
  display: block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section cite a:hover {
  color: var(--gold);
}

.contact-strip {
  width: min(1440px, 94vw);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 72px 5vw;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(15, 10, 8, 0.92), rgba(15, 10, 8, 0.76)),
    linear-gradient(120deg, var(--red), var(--gold), var(--green), var(--blue));
  box-shadow: inset 0 0 0 5px rgba(15, 10, 8, 0.76);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--cream);
  font-size: 21px;
  font-weight: 600;
}

.contact-links a:hover {
  color: var(--gold);
}

footer {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 34px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  font-weight: 800;
}

.footer-brand img {
  width: 48px;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

@keyframes heroSettle {
  to {
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 80px 1fr;
    height: 92px;
  }

  nav {
    justify-content: flex-end;
    gap: 20px;
  }

  .location-chip {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    width: 76vw;
  }

  .stats,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats {
    margin-top: -34px;
  }

  .stat {
    min-height: 120px;
  }

  .visit-grid,
  .event-section,
  .party-section,
  .about-section,
  .section-heading,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .about-details {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .collection-card {
    min-height: 360px;
  }

  .party-art {
    min-height: 400px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  footer > div {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: absolute;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    height: 78px;
    padding-inline: 5vw;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block !important;
    justify-self: end;
  }

  .mobile-menu summary {
    min-width: 84px;
    padding: 10px 16px;
    border: 1px solid var(--gold);
    border-radius: 10px;
    color: var(--cream);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary::after {
    margin-left: 8px;
    color: var(--gold);
    content: "▾";
  }

  .mobile-menu[open] summary::after {
    content: "▴";
  }

  .mobile-menu > div {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: min(260px, 88vw);
    display: grid;
    z-index: 20;
    overflow: hidden;
    border: 1px solid rgba(246, 195, 61, 0.6);
    border-radius: 14px;
    background: rgba(15, 10, 8, 0.98);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  }

  .mobile-menu a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--cream);
    font-size: 17px;
    font-weight: 700;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .merch-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 104px 0 76px;
  }

  .hero-image {
    background-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(12, 7, 5, 0.98) 0%, rgba(12, 7, 5, 0.85) 58%, rgba(12, 7, 5, 0.2) 100%),
      linear-gradient(90deg, rgba(12, 7, 5, 0.72), transparent);
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 0 5vw;
  }

  .hero-eyebrow {
    margin: 0 0 14px 10px;
  }

  .hero-sign {
    border-radius: 22px;
  }

  .hero-facts,
  .price-line,
  .place-line,
  .rainbow-button {
    margin-left: 36px;
  }

  .hero-facts,
  .price-line,
  .place-line {
    font-size: 17px;
  }

  .rainbow-button {
    min-height: 54px;
    gap: 22px;
    padding-inline: 24px;
    font-size: 18px;
  }

  .stats {
    width: 90vw;
    margin-top: -26px;
  }

  .stat {
    padding: 22px;
  }

  .stat-number {
    font-size: 38px;
  }

  .section {
    width: 90vw;
    padding: 90px 0;
  }

  .section h2,
  .contact-strip h2 {
    font-size: 40px;
  }

  .section p {
    font-size: 18px;
  }

  .visit-grid,
  .event-section,
  .party-section,
  .about-section {
    gap: 52px;
  }

  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .scoreboard {
    margin: 18px;
  }

  .scoreboard-main {
    font-size: 28px;
  }

  .party-art {
    min-height: 340px;
  }

  .contact-strip {
    width: 90vw;
    gap: 36px;
    padding: 48px 28px;
  }

  .contact-links {
    font-size: 17px;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
