:root {
  --bg: #070707;
  --graphite: #111113;
  --graphite-2: #1b1b1d;
  --line: rgba(245, 238, 225, 0.16);
  --text: #f5eee1;
  --muted: #b8b0a2;
  --dim: #7c756d;
  --yellow: #f2c230;
  --yellow-2: #ffda62;
  --rust: #a34524;
  --red: #d6482f;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --font: "Arial", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--yellow);
  color: #12100a;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.58));
  border-bottom: 1px solid rgba(245, 238, 225, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(245, 238, 225, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a,
.footer-links a,
.header-phone {
  transition: color 0.18s ease, opacity 0.18s ease;
}

.site-nav a:hover,
.footer-links a:hover,
.header-phone:hover {
  color: var(--yellow);
}

.header-phone {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(245, 238, 225, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 194, 48, 0.75);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--yellow);
  color: #110f0a;
  border-color: var(--yellow);
}

.button-primary:hover {
  background: var(--yellow-2);
}

.button-ghost {
  background: rgba(7, 7, 7, 0.52);
}

.button-small {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: clamp(24px, 4vw, 56px);
  padding: 130px clamp(20px, 5vw, 72px) 52px;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.45) 50%, rgba(7, 7, 7, 0.8) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.18) 55%, rgba(7, 7, 7, 0.8) 100%);
}

.hero-content,
.next-show {
  position: relative;
  z-index: 1;
}

.hero-kicker,
.eyebrow {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 8px 0 8px;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.82;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.hero-lead {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 3.2vw, 3.8rem);
  line-height: 0.98;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.fact-strip li {
  padding: 8px 10px;
  border: 1px solid rgba(245, 238, 225, 0.16);
  background: rgba(7, 7, 7, 0.46);
  color: rgba(245, 238, 225, 0.82);
  border-radius: var(--radius);
  font-weight: 800;
}

.next-show {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(242, 194, 48, 0.38);
  background: rgba(13, 13, 14, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.next-show h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.empty-show p,
.show-card p,
.next-show p {
  color: var(--muted);
}

.show-meta {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.show-meta span {
  color: var(--dim);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.show-meta strong {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
}

.section {
  padding: clamp(72px, 9vw, 138px) 0;
  position: relative;
}

.section-tight {
  padding: 30px 0;
}

.intro-band {
  border-block: 1px solid var(--line);
  background: #0d0d0e;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: center;
}

.intro-copy {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  font-weight: 900;
}

.rating-chip {
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid rgba(242, 194, 48, 0.4);
  border-radius: var(--radius);
  background: #151512;
}

.rating-chip strong {
  color: var(--yellow);
  font-size: 3rem;
  line-height: 1;
}

.rating-chip span {
  color: var(--muted);
  font-weight: 800;
}

.section-head {
  margin-bottom: 36px;
}

.section-head h2 {
  max-width: 900px;
  margin: 6px 0 0;
  font-size: clamp(2.3rem, 6vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  gap: 30px;
  align-items: end;
}

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

.about-section,
.cast-section,
.press-section {
  background: var(--graphite);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.about-photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
  align-items: end;
}

.about-photo-stack img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-photo-stack img:first-child {
  aspect-ratio: 1;
}

.about-photo-stack img:last-child {
  aspect-ratio: 0.7;
  transform: translateY(42px);
}

.about-cards {
  display: grid;
  gap: 12px;
}

.text-card,
.show-card,
.press-card,
.story-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.text-card {
  padding: clamp(18px, 2vw, 26px);
}

.text-card h3,
.show-card h3,
.press-card h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.text-card p,
.press-card p,
.story-card p {
  margin: 0;
  color: var(--muted);
}

.shows-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(163, 69, 36, 0.2), transparent 36%),
    #090909;
}

.shows-list {
  display: grid;
  gap: 14px;
}

.show-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 20px;
}

.show-date {
  display: grid;
  justify-items: start;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.show-date strong {
  font-size: 3rem;
  line-height: 0.9;
}

.empty-show {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(242, 194, 48, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(242, 194, 48, 0.1), rgba(255, 255, 255, 0.03)),
    var(--graphite);
}

.empty-show h3 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.history-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 44vw);
  gap: 16px;
  overflow-x: auto;
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 10px;
  scroll-snap-type: x mandatory;
}

.history-card {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #141414;
  scroll-snap-align: start;
}

.history-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.68;
  transform: scale(1.02);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.history-card:hover img {
  opacity: 0.82;
  transform: scale(1.06);
}

.history-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.15) 62%);
}

.history-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.history-copy span {
  color: var(--yellow);
  font-weight: 900;
}

.history-copy h3 {
  margin: 8px 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 0.98;
}

.history-copy p {
  margin: 0;
  color: var(--muted);
}

.featured-cast {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cast-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #151515;
}

.cast-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 0.28s ease;
}

.cast-card:hover img {
  transform: scale(1.05);
}

.cast-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.9), transparent 60%);
}

.cast-info {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 18px;
}

.cast-info h3 {
  margin: 0 0 4px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.cast-info p {
  margin: 0;
  color: var(--yellow);
  font-weight: 900;
}

.ensemble {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.ensemble-card {
  min-height: 210px;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #141414;
}

.ensemble-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.ensemble-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.15));
}

.ensemble-card h3,
.ensemble-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.ensemble-card h3 {
  font-size: 1rem;
  line-height: 1.05;
}

.ensemble-card p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.25;
}

.gallery-section {
  background: #080808;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  width: min(1500px, calc(100% - 24px));
  margin: 0 auto;
}

.gallery-button {
  min-height: 250px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
}

.gallery-button:nth-child(1),
.gallery-button:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-button:nth-child(2),
.gallery-button:nth-child(5),
.gallery-button:nth-child(8) {
  grid-column: span 2;
}

.gallery-button:nth-child(3),
.gallery-button:nth-child(4),
.gallery-button:nth-child(7),
.gallery-button:nth-child(9) {
  grid-column: span 1;
}

.gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.gallery-button:hover img {
  transform: scale(1.06);
  opacity: 0.88;
}

.video-section {
  background: var(--graphite-2);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.video-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  text-align: left;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.28s ease;
}

.video-card:hover img {
  transform: scale(1.04);
}

.video-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.96), transparent);
}

.video-copy span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.video-copy h3 {
  margin: 8px 0;
  font-size: clamp(1.7rem, 3vw, 3.3rem);
  line-height: 0.96;
}

.video-copy p {
  margin: 0;
  color: var(--muted);
}

.stories-section {
  background:
    linear-gradient(180deg, rgba(163, 69, 36, 0.12), transparent 42%),
    #0b0b0b;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.story-card {
  padding: 18px;
}

.story-card summary {
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.08;
}

.story-card summary::marker {
  color: var(--yellow);
}

.story-card p {
  margin-top: 12px;
}

.press-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.press-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.press-card time {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.press-card a {
  margin-top: auto;
  color: var(--yellow);
  font-weight: 900;
}

.subscribe-section {
  background: #080808;
}

.subscribe-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(242, 194, 48, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(242, 194, 48, 0.12), rgba(163, 69, 36, 0.14)),
    var(--graphite);
}

.subscribe-panel h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.subscribe-panel p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.lead-form input[type="text"] {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 7, 7, 0.5);
  color: var(--text);
}

.lead-form input[aria-invalid="true"] {
  border-color: var(--red);
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--yellow);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0 86px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 30px;
  align-items: start;
}

.site-footer p,
.site-footer address {
  color: var(--muted);
  font-style: normal;
}

.site-footer address,
.footer-links {
  display: grid;
  gap: 8px;
}

.media-dialog {
  width: min(1100px, calc(100% - 28px));
  max-width: none;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050505;
  color: var(--text);
  box-shadow: var(--shadow);
}

.media-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.86);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-body img,
.dialog-body iframe {
  width: 100%;
  display: block;
  border: 0;
}

.dialog-body img {
  max-height: 86vh;
  object-fit: contain;
  background: #050505;
}

.dialog-body iframe {
  aspect-ratio: 16 / 9;
}

.mobile-buy-bar {
  display: none;
}

@media (max-width: 1180px) {
  .featured-cast {
    grid-template-columns: repeat(2, 1fr);
  }

  .ensemble,
  .press-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-button,
  .gallery-button:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-phone,
  .site-header > .button {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 7, 7, 0.96);
  }

  .site-header.nav-open .site-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(245, 238, 225, 0.08);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(5.2rem, 31vw, 10rem);
  }

  .next-show {
    align-self: auto;
  }

  .intro-grid,
  .split-head,
  .about-layout,
  .subscribe-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-stack img:last-child {
    transform: none;
  }

  .show-card {
    grid-template-columns: 1fr;
  }

  .history-track {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .history-card {
    min-height: 500px;
  }

  .video-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .mobile-buy-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(242, 194, 48, 0.45);
    border-radius: var(--radius);
    background: rgba(7, 7, 7, 0.98);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
  }

  .mobile-buy-bar p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .mobile-buy-bar strong {
    display: block;
    color: var(--text);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-inline: 14px;
    padding-bottom: 112px;
  }

  .hero-lead {
    font-size: clamp(1.7rem, 10vw, 3rem);
  }

  .fact-strip li {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .section-head h2 {
    font-size: clamp(2.2rem, 15vw, 4rem);
  }

  .intro-grid {
    gap: 16px;
  }

  .about-photo-stack,
  .featured-cast,
  .ensemble,
  .press-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .ensemble-card {
    min-height: 280px;
  }

  .gallery-button {
    min-height: 300px;
  }

  .button {
    width: 100%;
  }

  .mobile-buy-bar .button {
    width: auto;
    min-height: 46px;
    padding-inline: 14px;
    font-size: 0.74rem;
  }
}

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