/* Стили лендинга «Ксюшенька.» — единственный источник стилей.
   Картинки — foto/ относительно корня проекта (и prod/). */
/* ============================================================
     «Ксюшенька.» — направление А: афишная тумба / зин.
     Один тёмный фиолетовый мир, всё покрашено явно.
     Повороты — из набора: -2deg, -1.4deg, -1.2deg, 1.2deg, 1.4deg, 2.2deg.
     ============================================================ */
  :root {
    --ink: #120b1c;          /* стена тумбы, почти чёрный */
    --night: #241533;        /* фон зала */
    --paper: #2c1a44;        /* фиолетовая бумага секций */
    --chalk: #f5eefa;        /* белый «мел» */
    --chalk-dim: #c9b4de;    /* мел, притёртый ладонью */
    --bow: #f0a24c;          /* оранжевый бант */
    --bow-deep: #c97f2c;
    --glow: #c88fe0;         /* розово-сиреневый свет */
    --line: rgba(245, 238, 250, .28);
    --sans: "Golos Text", "Helvetica Neue", Arial, sans-serif;
    /* киноплёночное зерно (графт из направления Б) */
    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)'/%3E%3C/svg%3E");
    /* рваные края плакатов */
    --tear-a: polygon(0 4%, 6% 0, 28% 2%, 47% 0, 68% 2%, 88% 0, 100% 3%, 99% 32%, 100% 58%, 98.4% 79%, 100% 97%, 74% 100%, 52% 98%, 30% 100%, 8% 98%, 0 100%, 1.2% 70%, 0 42%);
    --tear-b: polygon(1% 0, 22% 2%, 41% 0, 63% 2%, 82% 0, 100% 2%, 99% 24%, 100% 49%, 98.4% 74%, 100% 100%, 78% 98%, 55% 100%, 33% 98%, 12% 100%, 0 97%, 1.6% 66%, 0 34%, 1% 12%);
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--night);
    color: var(--chalk);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; }
  p { margin: 0; }
  a { color: inherit; }
  ::selection { background: var(--bow); color: var(--ink); }

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

  .shell {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 48px);
  }

  .sec { position: relative; overflow: hidden; }

  /* ── Кнопки: ризограф — жёсткая офсетная тень ─────────────── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: 700 .95rem/1.15 var(--sans);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink);
    background: var(--bow);
    border: 2px solid var(--ink);
    border-radius: 9px 3px 10px 4px;
    padding: 15px 24px;
    text-decoration: none;
    text-align: center;
    box-shadow: 5px 6px 0 rgba(9, 6, 14, .6);
    transition: translate .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
  }
  .btn:hover {
    translate: 2px 2px;
    box-shadow: 2px 3px 0 rgba(9, 6, 14, .6);
  }
  .btn--ink {
    color: var(--chalk);
    background: var(--ink);
    border-color: var(--ink);
    box-shadow: 5px 6px 0 rgba(9, 6, 14, .3);
  }
  /* реверс на плашках афиши: на белой кнопка вспыхивает бантом, на оранжевой — мелом */
  .slab--chalk .btn--ink:hover { background: var(--bow); color: var(--ink); }
  .slab--bow .btn--ink:hover { background: var(--chalk); color: var(--ink); }
  .btn--ghost {
    color: var(--chalk);
    background: transparent;
    border-color: var(--chalk);
    box-shadow: 4px 5px 0 rgba(9, 6, 14, .35);
  }
  .btn--ghost:hover { box-shadow: 2px 2px 0 rgba(9, 6, 14, .35); }

  /* ── Каракули ─────────────────────────────────────────────── */
  .doodle {
    position: absolute;
    color: var(--chalk);
    opacity: .85;
    pointer-events: none;
  }

  /* ── Бегущие строки ───────────────────────────────────────── */
  .ticker { display: block; overflow: hidden; }
  .ticker--sale {
    background: var(--bow);
    color: var(--ink);
    border-block: 2px solid var(--ink);
  }
  .ticker--sale .tick-row { font-size: 1.02rem; letter-spacing: .1em; padding: 10px 0; }
  .tick-track {
    display: flex;
    width: max-content;
    animation: tick 28s linear infinite;
  }
  .tick-row {
    white-space: nowrap;
    padding: 9px 0;
    font-weight: 700;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-variant-numeric: tabular-nums;
  }
  @keyframes tick { to { transform: translateX(-50%); } }
  /* ── Обложка: компактная, всё по центру ──────────────────── */
  .hero {
    background: #0d0913;
    min-height: clamp(320px, 44vh, 430px);
    display: grid;
    place-items: center;
  }
  .hero-fon {
    position: absolute;
    inset: -4%;
    background: url(foto/hero.jpg) center 20% / cover no-repeat;
    filter: blur(16px) brightness(.72) saturate(1.05);
    transform: scale(1.06);
  }
  .hero-veil {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(46% 60% at 20% 26%, rgba(200, 143, 224, .32), transparent 70%),
      radial-gradient(40% 56% at 82% 74%, rgba(240, 162, 76, .18), transparent 70%),
      radial-gradient(130% 100% at 50% 50%, transparent 38%, rgba(13, 9, 19, .72));
  }
  .grain-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: var(--grain);
    opacity: .08;
    mix-blend-mode: overlay;
  }
  .hero-centr {
    --logo-w: clamp(290px, 47vw, 640px);
    /* буквы в картинке лого занимают 82.9% ширины со сдвигом центра +7.7%
       (слева колпак) — плашка и волна привязаны к буквам, не к картинке */
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
    padding-block: clamp(40px, 7vh, 64px);
  }
  .hero-name { margin: 0; }
  .wordmark {
    display: block;
    width: var(--logo-w);
    height: auto;
    filter: drop-shadow(0 14px 44px rgba(0, 0, 0, .65));
  }
  .hero-squiggle {
    display: block;
    width: 150px;
    height: auto;
    margin: 14px 0 0;
    color: var(--chalk);
    opacity: .8;
  }
  /* каракули вокруг: звёздочки, шарики, сердечки */
  .d-star1 { top: 13%; left: 11%; width: 40px; transform: rotate(-14deg); }
  .d-star2h { bottom: 16%; right: 9%; width: 54px; transform: rotate(16deg); opacity: .65; }
  .d-balloon { top: 18%; right: 15%; width: 58px; transform: rotate(-8deg); opacity: .75; }
  .d-balloon2 { bottom: 12%; left: 16%; width: 44px; transform: rotate(10deg); opacity: .6; }
  .d-heart { top: 54%; left: 5%; width: 34px; transform: rotate(-12deg); opacity: .7; }
  .d-heart2h { top: 28%; right: 4.5%; width: 28px; transform: rotate(14deg); opacity: .6; }

  /* соцкнопки: как во всём парке — ряд на десктопе/планшете, бургер на мобиле */
  .hero-soc {
    position: absolute;
    z-index: 4;
    top: 18px;
    right: max(18px, calc(50% - 620px));
    color: var(--chalk);
  }
  .hero-soc-row { display: flex; gap: 10px; }
  .hero-soc-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--chalk);
    background: rgba(13, 9, 19, .5);
    border: 2px solid var(--chalk);
    border-radius: 10px 4px 12px 5px;
    backdrop-filter: blur(8px);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }
  .hero-soc-row a:hover { background: var(--bow); border-color: var(--ink); color: var(--ink); }
  .hero-soc-row a:hover img { filter: invert(1); }
  .hero-soc-row svg, .hero-soc-row img { width: 24px; height: 24px; display: block; }
  .hero-burger-check { position: absolute; opacity: 0; pointer-events: none; }
  .hero-burger { display: none; }
  .hero-soc-menu { display: none; }

  /* Вход обложки: один оркестрованный момент */
  .drop {
    transform: rotate(var(--r, 0deg));
    animation: settle .6s cubic-bezier(.18, .9, .28, 1.18) var(--d, 0s) both;
  }
  @keyframes settle {
    from { opacity: 0; transform: translateY(-16px) rotate(var(--r, 0deg)) scale(1.05); }
    to   { opacity: 1; transform: translateY(0)     rotate(var(--r, 0deg)) scale(1); }
  }

  /* ── Заголовки секций ─────────────────────────────────────── */
  .sec-head {
    display: flex;
    align-items: baseline;
    gap: 8px 18px;
    flex-wrap: wrap;
  }
  .sec-title {
    margin: 0;
    font-weight: 900;
    font-size: clamp(2.5rem, 5.4vw, 4.3rem);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: .01em;
    text-wrap: balance;
  }
  .stamp16 {
    margin-left: auto;
    align-self: center;
    display: grid;
    place-items: center;
    width: 62px;
    aspect-ratio: 1;
    border: 2.5px solid var(--bow);
    border-radius: 50%;
    color: var(--bow);
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: .02em;
    transform: rotate(8deg);
    background: rgba(13, 9, 19, .35);
  }

  /* ── Афиша ────────────────────────────────────────────────── */
  .afisha {
    background:
      radial-gradient(48% 38% at 84% 6%, rgba(200, 143, 224, .17), transparent 70%),
      radial-gradient(40% 34% at 6% 96%, rgba(240, 162, 76, .1), transparent 70%),
      var(--paper);
    padding-block: clamp(28px, 4vw, 40px) clamp(2px, .5vw, 6px);
  }
  .afisha .d-star2 { top: 7%; right: 26%; width: 108px; opacity: .16; transform: rotate(-14deg); }
  .afisha-grid {
    display: grid;
    grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
    margin-top: clamp(16px, 2.4vw, 26px);
  }

  .paste {
    margin: 0;
    position: relative;
    transform: rotate(var(--r, -2deg));
    filter: drop-shadow(0 26px 38px rgba(0, 0, 0, .5));
  }
  .paste img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .paste::before,
  .paste::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 94px;
    height: 26px;
    top: -11px;
    background: rgba(238, 228, 248, .3);
    border: 1px solid rgba(238, 228, 248, .16);
  }
  .paste::before { left: -24px; transform: rotate(-42deg); }
  .paste::after  { right: -24px; transform: rotate(42deg); }

  .slabs { display: flex; flex-direction: column; }
  /* тень — на обёртке, рваный clip-path — на внутреннем слое,
     иначе clip срезает drop-shadow */
  .slab {
    position: relative;
    transform: rotate(var(--r, 0deg));
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .42));
  }
  .slab-cut {
    position: relative;
    padding: clamp(20px, 2.6vw, 32px) clamp(20px, 3vw, 38px) clamp(22px, 2.8vw, 34px);
    color: var(--ink);
  }
  /* каракули в пустоте под кнопкой: чернила на меле, мел на банте */
  .slab-doodle { position: absolute; pointer-events: none; }
  .slab--chalk .slab-doodle { color: var(--ink); opacity: .75; }
  .slab--bow .slab-doodle { color: var(--chalk); opacity: .9; }
  .sd-balloon { width: 46px; right: 5.5%; bottom: 9%; transform: rotate(9deg); }
  .sd-star { width: 32px; right: 17%; bottom: 30%; transform: rotate(-14deg); }
  .sd-heart { width: 24px; right: 26%; bottom: 11%; transform: rotate(-8deg); }
  .slab--chalk { margin-right: clamp(8px, 2.5vw, 40px); }
  .slab--chalk .slab-cut {
    background: var(--chalk);
    clip-path: var(--tear-a);
  }
  .slab--bow {
    margin-left: clamp(8px, 2.5vw, 40px);
    margin-top: clamp(-24px, -1.6vw, -10px);
  }
  .slab--bow .slab-cut {
    background: var(--bow);
    clip-path: var(--tear-b);
  }
  .slab-in {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
    align-items: end;
  }
  .slab-date {
    grid-column: 1;
    font-weight: 900;
    font-size: clamp(3.2rem, 6.6vw, 5.6rem);
    line-height: .92;
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
  }
  .slab-city {
    grid-row: 2;
    grid-column: 1 / -1;
    margin: 10px 0 0;
    font-weight: 900;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    text-transform: uppercase;
    letter-spacing: .16em;
  }
  .slab-meta {
    grid-row: 3;
    grid-column: 1 / -1;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 8px;
  }
  .slab-addr {
    grid-row: 4;
    grid-column: 1 / -1;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .6;
    margin-top: 3px;
  }
  .slab .btn {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    justify-self: end;
  }
  .slab--bow .btn { box-shadow: 5px 6px 0 rgba(9, 6, 14, .35); }
  .slab--bow .btn:hover { box-shadow: 2px 3px 0 rgba(9, 6, 14, .35); }
  .slab--chalk :focus-visible { outline-color: var(--bow-deep); }
  .slab--bow :focus-visible { outline-color: var(--ink); }

  /* ── Актуальные события: как во всём парке ─────────────────── */
  .afisha-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: clamp(24px, 3vw, 36px);
    padding-block: clamp(16px, 2vw, 22px);
    border-block: 1.5px dashed var(--line);
  }
  .afisha-foot-txt {
    font-weight: 900;
    font-size: clamp(.95rem, 1.4vw, 1.15rem);
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .afisha-foot-soc { display: flex; gap: 12px; flex-wrap: wrap; }
  .soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: var(--chalk);
    background: rgba(13, 9, 19, .35);
    border: 2px solid var(--chalk);
    border-radius: 9px 3px 10px 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }
  .soc-btn:hover { background: var(--bow); color: var(--ink); border-color: var(--ink); }
  .soc-btn:hover img { filter: invert(1); }
  .soc-btn svg, .soc-btn img { width: 20px; height: 20px; display: block; }

  /* ── Подвал: три лого + ссылки ───────────────────────────── */
  .foot {
    /* плавное перетекание из «бумаги» афиши в чернильный низ — без резкого шва;
       радиальные свечения продолжают тинты низа афиши, чтобы не было стыка слева */
    background:
      radial-gradient(42% 150px at 6% 0, rgba(240, 162, 76, .09), transparent 72%),
      linear-gradient(180deg, var(--paper) 0, #21142f 34%, var(--ink) 82%);
    padding-block: 10px 12px;
  }
  .foot-verh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
  }
  .foot-mark { display: block; width: 106px; height: auto; }
  .foot-futura { display: block; height: 22px; width: auto; }
  .stamp16--foot { margin-left: 0; transform: rotate(-6deg); width: 50px; font-size: 1rem; }
  .foot-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 18px;
    margin-top: 10px;
  }
  .foot-links a {
    font-weight: 400;
    font-size: .82rem;
    color: var(--chalk-dim);
    text-decoration: none;
  }
  .foot-links a:hover { color: var(--chalk); }
  .foot-line {
    margin-top: 6px;
    font-size: .78rem;
    color: var(--chalk-dim);
    letter-spacing: .03em;
    text-align: center;
  }

  /* ── Плашка cookie: в палитре сайта, как во всём парке ────── */
  .cookie {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    max-width: 640px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    background: rgba(18, 11, 28, .95);
    border: 2px solid var(--chalk);
    border-radius: 12px 5px 14px 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
  }
  .cookie[hidden] { display: none; }
  .cookie p { font-size: .82rem; line-height: 1.45; color: var(--chalk-dim); }
  .cookie a { color: var(--chalk); text-decoration-color: var(--bow); text-underline-offset: 3px; }
  .cookie a:hover { color: var(--bow); }
  .btn--cookie { flex: none; padding: 10px 24px; }

  /* ── 1024 ─────────────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .afisha-grid { grid-template-columns: minmax(260px, 350px) minmax(0, 1fr); gap: 30px; }
    .hero-soc { right: 14px; }
    .hero-soc-row a { width: 44px; height: 44px; }
  }

  /* ── 860 (планшет / 768) ──────────────────────────────────── */
  @media (max-width: 860px) {
    .hero { min-height: 0; }
    .hero-centr { padding-block: 34px 30px; }
    .sec-title { font-size: clamp(2.8rem, 6.5vw, 4rem); }
    .afisha { padding-top: 18px; }
    .afisha-grid { grid-template-columns: 1fr; margin-top: 44px; }
    .paste { max-width: 480px; margin-inline: auto; }
    .slabs { margin-top: 6px; }
    /* плашки разведены, как на мобиле; кнопка остаётся справа от даты, как на десктопе */
    .afisha .slab { transform: rotate(-.7deg); margin-right: 0; }
    .afisha .slab--bow { transform: rotate(.9deg); margin-left: 0; margin-top: 14px; }
    /* подвал: текст слева в две строки, кнопки справа на уровне текста */
    .afisha-foot { flex-wrap: nowrap; gap: 16px 24px; }
    .afisha-foot-txt { max-width: 345px; }
    .afisha-foot-soc { flex: none; }
  }

  /* ── 640: бургер вместо ряда соцкнопок (по классике парка) ── */
  @media (max-width: 640px) {
    .hero-soc-row { display: none; }
    .hero-burger {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      width: 48px;
      height: 44px;
      cursor: pointer;
      color: var(--chalk);
      background: rgba(13, 9, 19, .55);
      border: 2px solid var(--chalk);
      border-radius: 10px 4px 12px 5px;
    }
    .hero-burger span {
      display: block;
      width: 20px;
      height: 2.5px;
      background: var(--chalk);
      border-radius: 2px;
      transition: transform .25s ease, opacity .2s ease;
    }
    .hero-burger-check:checked ~ .hero-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hero-burger-check:checked ~ .hero-burger span:nth-child(2) { opacity: 0; }
    .hero-burger-check:checked ~ .hero-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
    .hero-burger-check:focus-visible ~ .hero-burger { outline: 3px solid var(--bow); outline-offset: 3px; }
    .hero-soc-menu {
      position: absolute;
      top: 52px;
      right: 0;
      min-width: 212px;
      background: rgba(18, 11, 28, .96);
      border: 2px solid var(--chalk);
      border-radius: 12px 5px 14px 6px;
      padding: 8px;
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
    }
    .hero-burger-check:checked ~ .hero-soc-menu { display: grid; gap: 2px; }
    .hero-soc-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 8px 3px 9px 4px;
    }
    .hero-soc-menu a:hover { background: rgba(240, 162, 76, .15); }
    .hero-soc-menu svg, .hero-soc-menu img { width: 22px; height: 22px; }
    .d-balloon2, .d-heart2h, .d-heart { display: none; }
    .cookie { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
  }

  /* ── 480 (телефон / 390 / 360) ────────────────────────────── */
  @media (max-width: 480px) {
    body { font-size: 15px; }

    /* шапка: высота по контенту, без пустых полей */
    .hero { min-height: 0; }
    .hero-centr { padding-block: 30px 26px; }
    /* пропорции: лого крупнее, стикер компактнее (~80% ширины лого) */
    .hero-centr { --logo-w: min(92vw, 500px); }
    .hero-squiggle { width: 120px; margin-top: 12px; }
    /* каракули: звезда слева-сверху, шарик справа-посередине, звезда слева-снизу */
    .d-star1 { top: 12px; left: 50%; width: 30px; transform: translateX(-50%) rotate(-14deg); }
    .d-balloon { top: auto; bottom: -4px; right: 10px; width: 34px; }
    .d-star2h { display: none; }
    .d-heart { display: block; top: auto; bottom: 30px; left: 14px; width: 24px; opacity: .6; }

    /* афиша: ближе к ленте, но воздух над постером со скотчем больше */
    .afisha { padding-block: 16px 4px; }
    .afisha-grid { margin-top: 36px; }
    .paste { transform: rotate(-1.1deg); filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .45)); }
    .paste::before, .paste::after { width: 70px; top: -9px; }
    .paste::before { left: -8px; }
    .paste::after { right: -8px; }

    /* плашки: на мобиле не наезжают друг на друга */
    .slabs { margin-top: 8px; }
    .slab .btn { grid-row: auto; grid-column: 1 / -1; justify-self: start; width: 100%; margin-top: 16px; }
    .slab-doodle { display: none; }

    .afisha-foot { flex-direction: column; align-items: stretch; text-align: center; }
    .afisha-foot-soc { justify-content: center; }
    .soc-btn { flex: 1 1 40%; justify-content: center; }

    /* футер: три лого одной ровной строкой по центру */
    .foot-verh { gap: 12px; }  /* базовый space-between: лого слева, ФУТУРА по центру, ценз справа */
    .foot-mark { width: 100px; }
    .foot-futura { height: 18px; position: relative; top: 1px; }
    .stamp16--foot { width: 44px; font-size: .92rem; }
  }

  /* ── Движение — только если можно ─────────────────────────── */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation: none !important;
      transition: none !important;
    }
  }
