/* ===========================================================
   LA TURRETA FINAL · stylesheet
   Estética punk/fanzine, mobile-first, responsive
   =========================================================== */

:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --paper: #f3ead3;       /* fondo papel viejo */
  --ink: #111;
  --red: #e6261f;         /* rojo punk */
  --red-dark: #b51b15;
  --yellow: #ffd400;      /* amarillo señal */
  --green: #1f8a44;       /* verde activista */
  --muted: #8a8a8a;
  --line: #1f1f1f;

  --shadow-hard: 6px 6px 0 #000;
  --shadow-hard-red: 6px 6px 0 var(--red);

  --maxw: 1200px;
  --pad-x: clamp(16px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Special Elite', 'Courier New', monospace;
  line-height: 1.55;
  overflow-x: hidden;
  /* Textura de papel viejo */
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ====== TAPE DECORATIVA ====== */
.tape {
  height: 22px;
  background:
    repeating-linear-gradient(
      45deg,
      var(--yellow) 0 14px,
      #000 14px 28px
    );
  width: 100%;
}
.tape-bottom {
  margin-top: 0;
}

/* ====== TOPBAR ====== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px var(--pad-x);
  border-bottom: 3px solid var(--red);
  flex-wrap: wrap;
}

.brand {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-line {
  font-family: 'Bungee', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--yellow);
}
.brand-title {
  font-family: 'Anton', 'Helvetica Neue', sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 400;
}

.nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transition: right 0.18s ease;
}
.nav a:hover::after {
  right: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #000;
  padding: 4px 8px;
  border: 2px solid #000;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
}
.lang-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0 4px;
  color: #888;
}
.lang-btn.is-active {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.lang-sep {
  color: #666;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  background: var(--bg);
  color: #fff;
  padding: clamp(40px, 7vw, 80px) 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(230, 38, 31, 0.35), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(255, 212, 0, 0.18), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(31, 138, 68, 0.18), transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(40px, 6vw, 80px);
}

.kicker {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  letter-spacing: 3px;
  font-size: 12px;
  background: var(--yellow);
  color: #000;
  padding: 6px 12px;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
  margin-bottom: 18px;
}
.kicker.dark {
  background: var(--red);
  color: #fff;
}

.hero-title {
  font-family: 'Anton', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 11vw, 140px);
  line-height: 0.85;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.ht-1 {
  display: block;
  color: #fff;
  transform: rotate(-2deg);
}
.ht-2 {
  display: block;
  color: var(--red);
  transform: translateX(8%) rotate(1.5deg);
  text-shadow: 4px 4px 0 #000;
}
.ht-3 {
  display: block;
  color: var(--yellow);
  font-family: 'Rubik Mono One', sans-serif;
  font-size: 0.7em;
  letter-spacing: 2px;
  transform: translateX(2%) rotate(-1deg);
}

.hero-sub {
  max-width: 540px;
  font-size: clamp(15px, 1.5vw, 18px);
  margin: 0 0 28px;
  color: #ddd;
}

.hero-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  max-width: 540px;
}
.hero-meta li {
  background: #1b1b1b;
  border: 2px solid #2a2a2a;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
}
.hero-meta li:nth-child(odd) {
  border-left: 4px solid var(--red);
}
.hero-meta li:nth-child(even) {
  border-left: 4px solid var(--yellow);
}
.meta-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta strong {
  font-family: 'Anton', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 1px;
  color: #fff;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid #000;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  font-size: 15px;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-ghost:hover {
  background: #fff;
  color: #000;
}

/* HERO POSTER */
.hero-poster {
  margin: 0;
  position: relative;
  text-align: center;
}
.hero-poster a {
  display: inline-block;
  background: #fff;
  padding: 14px 14px 26px;
  transform: rotate(2deg);
  box-shadow: 12px 12px 0 var(--red), 12px 12px 0 1px #000;
  transition: transform 0.25s ease;
  max-width: 100%;
}
.hero-poster a:hover {
  transform: rotate(0deg) scale(1.01);
}
.hero-poster img {
  max-width: 380px;
  width: 100%;
  height: auto;
}
.hero-poster figcaption {
  margin-top: 16px;
  color: #aaa;
  font-size: 12px;
  letter-spacing: 1px;
}

/* MARQUEE */
.marquee {
  position: relative;
  z-index: 1;
  background: var(--yellow);
  color: #000;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  overflow: hidden;
  font-family: 'Anton', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: clamp(14px, 1.6vw, 18px);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee-track span {
  padding: 14px 0;
  white-space: nowrap;
  padding-right: 40px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ====== INFO ====== */
.info {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--paper);
}
.section-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 6px;
  background: var(--red);
  margin-top: 6px;
  transform: skewX(-12deg);
}
.section-title.light {
  color: #fff;
}
.section-title.light::after {
  background: var(--yellow);
}
.section-lead {
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 720px;
  margin: 0 0 36px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.info-card {
  background: #fff;
  border: 3px solid #000;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-hard);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.info-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #000;
}
.info-card:nth-child(1) { transform: rotate(-0.8deg); }
.info-card:nth-child(2) { transform: rotate(0.6deg); }
.info-card:nth-child(3) { transform: rotate(-0.4deg); }
.info-card:hover { transform: rotate(0deg) translate(-3px, -3px); }
.card-num {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 50px;
  height: 50px;
  background: var(--red);
  color: #fff;
  border: 3px solid #000;
  display: grid;
  place-items: center;
  font-family: 'Bungee', sans-serif;
  font-size: 18px;
  transform: rotate(8deg);
}
.info-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ====== LINEUP ====== */
.lineup {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #1a1a1a;
  color: #fff;
  position: relative;
}
.lineup .section-title {
  color: #fff;
}
.lineup .section-title::after {
  background: var(--yellow);
}
.lineup .section-lead {
  color: #ccc;
}

.headliner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 28px;
  padding: 28px;
  background: var(--red);
  border: 4px solid #000;
  box-shadow: 10px 10px 0 var(--yellow), 10px 10px 0 1px #000;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  transform: rotate(-0.6deg);
}
.headliner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--band-img);
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: contrast(1.1) saturate(0.8);
}
.headliner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(230, 38, 31, 0.65) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.headliner-flag {
  width: 90px;
  height: 90px;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-family: 'Bungee', sans-serif;
  font-size: 36px;
  border: 4px solid #000;
  transform: rotate(6deg);
}
.headliner-tag {
  font-family: 'Anton', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffd400;
  font-size: 13px;
  margin: 0 0 6px;
}
.headliner-name {
  font-family: 'Anton', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 84px);
  margin: 0 0 8px;
  letter-spacing: 2px;
  line-height: 0.9;
}
.headliner-desc {
  margin: 0;
  max-width: 640px;
  font-size: clamp(14px, 1.4vw, 17px);
}

.bands {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #2a2a2a;
  border: 2px solid #444;
  padding: 28px 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: center;
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
/* Imagen de fondo opcional via --band-img */
.band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--band-img);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  transition: transform 0.5s ease, filter 0.3s ease;
}
/* Overlay oscuro para que el texto sea legible */
.band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.78) 100%
  );
  transition: background 0.2s ease;
}
.band-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 2px 2px 0 #000;
}
.band:hover {
  border-color: var(--yellow);
  transform: rotate(-1deg) scale(1.03);
  box-shadow: 6px 6px 0 var(--red);
}
.band:hover::before {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.1);
}
.band:hover::after {
  background: linear-gradient(
    180deg,
    rgba(230, 38, 31, 0.35) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
.band .socials a {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}

/* Iconos de redes */
.socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid currentColor;
  color: inherit;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.socials a svg {
  width: 18px;
  height: 18px;
  display: block;
}
.socials a:hover,
.socials a:focus-visible {
  background: var(--red);
  color: #fff;
  border-color: #000;
  transform: translateY(-2px) rotate(-4deg);
  outline: none;
}
.band:hover .socials a {
  border-color: #000;
}
.band:hover .socials a:hover {
  background: #000;
  color: var(--yellow);
}

/* Variante para el headliner (sobre fondo rojo) */
.socials-light {
  margin-top: 18px;
  justify-content: flex-start;
}
.socials-light a {
  border-color: #fff;
  color: #fff;
}
.socials-light a:hover,
.socials-light a:focus-visible {
  background: #fff;
  color: var(--red);
  border-color: #000;
}

/* ====== FESTIVAL ====== */
.festival {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
  color: #fff;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}
.festival-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.festival-text {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #ddd;
  margin: 0 0 16px;
  max-width: 640px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat {
  background: #fff;
  color: #000;
  padding: 22px 16px;
  text-align: center;
  border: 3px solid #000;
  box-shadow: 5px 5px 0 var(--red);
}
.stat:nth-child(2) { transform: rotate(1.5deg); box-shadow: 5px 5px 0 var(--yellow); }
.stat:nth-child(3) { transform: rotate(-1.5deg); box-shadow: 5px 5px 0 var(--green); }
.stat:nth-child(4) { transform: rotate(0.8deg); }
.stat-num {
  display: block;
  font-family: 'Bungee', sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  color: #555;
}

/* Organizadores */
.organizers {
  margin-top: 28px;
}
.organizers-label {
  font-family: 'Anton', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--yellow);
  margin: 0 0 10px;
}
.organizers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.org-tag {
  display: inline-block;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  padding: 8px 14px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  box-shadow: 4px 4px 0 var(--red);
}
.org-tag:nth-child(2) {
  box-shadow: 4px 4px 0 var(--yellow);
  transform: rotate(-1.5deg);
}

/* Lista de organizadores en footer */
.orgs {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.org {
  background: #fff;
  color: #000;
  padding: 6px 12px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  border: 2px solid var(--red);
}

/* ====== VENUE ====== */
.venue {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--paper);
}
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 30px;
  align-items: stretch;
}
.venue-info h3 {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.venue-info p {
  font-size: clamp(15px, 1.4vw, 17px);
  margin: 0 0 24px;
  max-width: 480px;
}
.venue-map {
  border: 4px solid #000;
  box-shadow: var(--shadow-hard-red);
  background: #000;
  min-height: 320px;
  overflow: hidden;
}
.venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* ====== FOOTER ====== */
.footer {
  background: #000;
  color: #fff;
  padding: 50px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.footer-brand {
  font-family: 'Anton', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 6px;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-sub,
.footer-cols {
  margin: 0 0 12px;
  color: #ccc;
  font-size: 14px;
  max-width: 460px;
}
.footer-small {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-poster {
    order: -1;
    margin-bottom: 20px;
  }
  .hero-poster a {
    transform: rotate(0deg);
    box-shadow: 8px 8px 0 var(--red), 8px 8px 0 1px #000;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-card,
  .info-card:nth-child(1),
  .info-card:nth-child(2),
  .info-card:nth-child(3) {
    transform: none;
  }
  .festival-grid,
  .venue-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .headliner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .headliner-flag {
    transform: rotate(0);
  }
  .nav {
    width: 100%;
    order: 3;
    margin-left: 0;
    justify-content: flex-start;
    gap: 14px;
  }
  .lang-switch {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }
  .btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  .nav a {
    font-size: 13px;
  }
}

/* ====== MODAL DEL CARTEL ====== */
.cartel-modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 720px);
  max-height: 92vh;
  overflow: visible;
  margin: auto;
}
.cartel-modal:not([open]) {
  display: none;
}
.cartel-modal[open] {
  animation: cartel-pop 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.cartel-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cartel-modal[open]::backdrop {
  animation: cartel-fade 0.22s ease forwards;
}
.cartel-modal img {
  display: block;
  width: 100%;
  max-height: 92vh;
  height: auto;
  object-fit: contain;
  border: 4px solid #000;
  box-shadow: 12px 12px 0 var(--red), 12px 12px 0 1px #000;
  background: #fff;
}
.cartel-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid #000;
  background: var(--yellow);
  color: #000;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  padding: 0;
  box-shadow: 3px 3px 0 #000;
}
.cartel-modal-close:hover,
.cartel-modal-close:focus-visible {
  background: var(--red);
  color: #fff;
  transform: rotate(90deg);
  outline: none;
}
@keyframes cartel-pop {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes cartel-fade {
  from { background: rgba(0, 0, 0, 0); }
  to   { background: rgba(0, 0, 0, 0.85); }
}
@media (max-width: 480px) {
  .cartel-modal-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

/* Reducir animaciones */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
