:root{
  --bg:#151515;
  --bg-2:#1c1c1c;
  --bg-3:#222;
  --line:rgba(235,197,40,.18);
  --line-2:rgba(255,255,255,.08);
  --primary:#EBC528;
  --primary-2:#f6d54a;
  --primary-shadow:rgba(235,197,40,.35);
  --text:#f5f5f5;
  --muted:#a8a8a8;
  --radius:14px;
  --radius-lg:20px;
  --container:1280px;
  --shadow-lg:0 18px 40px rgba(0,0,0,.45);
  --shadow-btn:0 6px 0 rgba(0,0,0,.35), 0 10px 24px rgba(235,197,40,.18);
}

*,*::before,*::after{box-sizing:border-box}
html,body{
  overflow-x:hidden;
  width:100%;
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  -webkit-text-size-adjust:100%;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
ul,ol{margin:.4em 0 1em;padding-left:1.4em}
ul li,ol li{margin:.25em 0}
p{margin:.4em 0 1em}
h1,h2,h3,h4,h5{margin:.4em 0 .6em;line-height:1.2;letter-spacing:-.01em}
h1{font-size:clamp(1.9rem,4.6vw,3.2rem);font-weight:900}
h2{font-size:clamp(1.5rem,3.2vw,2.2rem);font-weight:900}
h3{font-size:clamp(1.15rem,2.2vw,1.5rem);font-weight:800}
h4{font-size:1.05rem;font-weight:800}
strong{font-weight:800;color:#fff}
em{color:var(--primary-2);font-style:normal}

.skip{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{position:fixed;left:12px;top:12px;width:auto;height:auto;background:var(--primary);color:#000;padding:8px 12px;border-radius:8px;z-index:9999}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

.btn{
  --btn-bg:transparent;
  --btn-fg:#fff;
  --btn-border:var(--primary);
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  min-height:46px;
  padding:12px 22px;
  border-radius:8px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  text-align:center;
  border:2px solid var(--btn-border);
  background:var(--btn-bg);
  color:var(--btn-fg);
  transition:transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
  user-select:none;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(1px)}

.btn--primary{
  --btn-bg:linear-gradient(180deg, var(--primary-2), var(--primary));
  --btn-fg:#0d0d0d;
  --btn-border:var(--primary);
  box-shadow: var(--shadow-btn);
  text-shadow:0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover{box-shadow:0 8px 0 rgba(0,0,0,.35), 0 14px 28px var(--primary-shadow)}
.btn--ghost{
  --btn-bg:transparent;
  --btn-fg:var(--primary);
  --btn-border:var(--primary);
}
.btn--ghost:hover{--btn-bg:rgba(235,197,40,.08)}

.btn--sm{min-height:38px;padding:8px 14px;font-size:.82rem;border-radius:6px}
.btn--lg{min-height:52px;padding:14px 28px;font-size:1.02rem}
.btn--xl{min-height:58px;padding:16px 30px;font-size:1.08rem}

.header{position:sticky;top:0;z-index:100;background:rgba(15,15,15,.96);backdrop-filter:saturate(140%) blur(8px);border-bottom:1px solid var(--line)}
.header__bar{padding:14px 0}
.header__inner{
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  align-items:center;
  gap:18px;
  min-width:0;
}
.brand{display:inline-flex;align-items:center;gap:10px;flex:0 0 auto}
.brand__logo{height:44px;width:auto;max-width:200px;object-fit:contain}
.brand--footer .brand__logo{height:48px}

.nav{display:flex;align-items:center;gap:18px;min-width:0}
.nav--top{justify-content:center;flex-wrap:wrap}
.nav--top a{
  font-size:.9rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#fff;
  padding:6px 4px;position:relative;
}
.nav--top a:hover{color:var(--primary)}
.nav--main{padding:0;justify-content:center;gap:34px;flex-wrap:wrap;overflow-x:auto}
.nav--main a{
  font-size:1rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:#fff;padding:8px 4px;
}
.nav--main a:hover{color:var(--primary)}

.header__main{padding:10px 0;border-top:1px solid var(--line-2);background:rgba(20,20,20,.85)}
.header__main .nav--main{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.header__main .nav--main::-webkit-scrollbar{display:none}

.header__lang{display:flex;align-items:center;gap:8px;color:#ddd;font-weight:700;font-size:.9rem;letter-spacing:.05em;text-transform:uppercase}
.globe{font-size:1.1rem}

.header__actions{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.mascot{display:none}
.mascot__img{height:46px;width:auto}

.burger{display:none;width:42px;height:42px;border:1px solid var(--primary);border-radius:8px;align-items:center;justify-content:center;flex-direction:column;gap:4px}
.burger span{display:block;width:20px;height:2px;background:var(--primary);border-radius:2px}

.mobileMenu{display:none;flex-direction:column;background:#0e0e0e;border-top:1px solid var(--line);padding:10px 0}
.mobileMenu a{padding:14px 20px;border-bottom:1px solid var(--line-2);font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:#fff}
.mobileMenu a:hover{color:var(--primary)}
.mobileMenu.is-open{display:flex}

.hero{position:relative;padding:0 0 40px;background:radial-gradient(1200px 400px at 50% -10%, rgba(235,197,40,.12), transparent 60%), var(--bg)}
.hero__media{display:block;width:100%;max-height:360px;overflow:hidden;border-bottom:1px solid var(--line)}
.hero__media img{width:100%;height:100%;max-height:360px;object-fit:cover}
.hero__inner{padding:36px 20px 0;text-align:center}
.hero__eyebrow{color:var(--primary);font-weight:800;text-transform:uppercase;letter-spacing:.18em;margin:0 0 10px}
.hero__title{margin:0 auto 22px;max-width:920px}
.hero__bonus{
  display:inline-block;
  background:linear-gradient(180deg, #fff5c2, var(--primary));
  -webkit-background-clip:text;background-clip:text;color:transparent;
  font-weight:900;line-height:1.05;
  text-shadow:0 0 30px rgba(235,197,40,.15);
}
.hero__cta{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;margin:6px 0 20px}
.hero__terms{color:var(--muted);font-size:.88rem;max-width:680px;margin:0 auto}
.hero__terms a{color:var(--primary);border-bottom:1px solid rgba(235,197,40,.4)}

.sectionNav{position:sticky;top:64px;z-index:50;background:rgba(20,20,20,.92);backdrop-filter:blur(8px);border-bottom:1px solid var(--line-2)}
.sectionNav__inner{display:flex;gap:10px;overflow-x:auto;-webkit-overflow-scrolling:touch;padding:10px 20px;scrollbar-width:none}
.sectionNav__inner::-webkit-scrollbar{display:none}
.pill{
  flex:0 0 auto;
  padding:8px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:.85rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#ddd;
}
.pill--active,.pill:hover{background:var(--primary);color:#0d0d0d;border-color:var(--primary)}

section{padding:54px 0;border-top:1px solid var(--line-2)}
.games--alt{background:linear-gradient(180deg, #161616, #131313)}
.live{background:radial-gradient(800px 300px at 100% 0, rgba(235,197,40,.08), transparent 60%), #131313}
.promos{background:#141414}
.providers{background:#121212}
.about{background:#141414}
.faq{background:#121212}

.sectionHead{margin:0 0 26px;text-align:center}
.sectionHead h2{margin:0 0 6px}
.sectionHead p{color:var(--muted);max-width:720px;margin:0 auto}

.filterRow{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin:0 0 24px}
.chip{
  padding:8px 16px;border-radius:999px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;font-size:.8rem;
  border:1px solid var(--line);color:#ddd;background:#1a1a1a;
}
.chip--active,.chip:hover{background:var(--primary);color:#0d0d0d;border-color:var(--primary)}

.jackpot{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:14px;
  background:linear-gradient(180deg, #1d1d1d, #161616);
  border:1px solid var(--line);
  padding:18px 22px;border-radius:var(--radius-lg);margin:0 0 24px;
  box-shadow:var(--shadow-lg);
}
.jackpot__label{color:var(--muted);font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:.18em;margin:0 0 4px}
.jackpot__amount{font-size:clamp(1.6rem,4vw,2.6rem);font-weight:900;color:var(--primary);letter-spacing:.02em;font-variant-numeric:tabular-nums}

.grid{display:grid;gap:18px;min-width:0}
.grid--games{grid-template-columns:repeat(6, minmax(0,1fr))}
.grid--live{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid--promos{grid-template-columns:repeat(4, minmax(0,1fr))}
.grid--trust{grid-template-columns:repeat(4, minmax(0,1fr))}

.card{
  position:relative;
  display:flex;flex-direction:column;
  background:#1b1b1b;border:1px solid var(--line-2);border-radius:var(--radius);
  overflow:hidden;
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.card:hover{transform:translateY(-3px);border-color:var(--primary);box-shadow:0 18px 30px rgba(0,0,0,.35)}
.mediaCard{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:#0e0e0e;
  border-bottom:1px solid var(--line-2);
}
.mediaCard img{width:100%;height:100%;object-fit:cover}
.mediaCard--icon{aspect-ratio:auto;height:64px;width:64px;border-radius:50%;border:1px solid var(--primary);background:#0e0e0e;padding:8px;display:flex;align-items:center;justify-content:center}
.mediaCard--icon img{object-fit:contain}
.card__body{display:flex;flex-direction:column;gap:4px;padding:12px 12px 14px;min-width:0}
.card__body strong{font-size:.95rem;line-height:1.2;overflow-wrap:anywhere}
.card__body span{color:var(--muted);font-size:.78rem}
.card__cta{display:flex;gap:6px;margin-top:8px;flex-wrap:wrap}
.card__cta .btn{flex:1 1 auto;min-width:0}

.badge{
  position:absolute;top:10px;left:10px;z-index:2;
  background:#222;color:#fff;padding:4px 8px;border-radius:6px;font-size:.7rem;font-weight:900;letter-spacing:.08em;
  border:1px solid var(--line);
}
.badge--hot{background:linear-gradient(180deg,#ff5d5d,#c12727);border-color:#ff8d8d;color:#fff}

.liveCard{
  display:flex;flex-direction:column;
  background:#1b1b1b;border:1px solid var(--line-2);border-radius:var(--radius);overflow:hidden;
  transition:transform .15s ease, border-color .15s ease;
}
.liveCard:hover{transform:translateY(-3px);border-color:var(--primary)}
.liveCard .mediaCard{aspect-ratio:16/10}
.liveCard__body{display:flex;flex-direction:column;gap:8px;padding:14px 14px 16px}
.liveCard__body strong{font-size:1.05rem}
.liveCard__meta{list-style:none;padding:0;margin:4px 0 6px;display:flex;flex-direction:column;gap:4px;color:var(--muted);font-size:.85rem}
.liveCard__meta strong{color:#fff;font-weight:800}

.centerCta{display:flex;justify-content:center;margin-top:26px}

.promoCard{
  display:flex;flex-direction:column;
  background:linear-gradient(180deg,#1d1d1d,#171717);
  border:1px solid var(--line-2);border-radius:var(--radius-lg);overflow:hidden;
  transition:transform .15s ease, border-color .15s ease;
}
.promoCard:hover{transform:translateY(-3px);border-color:var(--primary)}
.promoCard .mediaCard{aspect-ratio:16/9}
.promoCard__body{padding:18px 18px 20px;display:flex;flex-direction:column;gap:8px}
.promoCard__tag{
  display:inline-block;align-self:flex-start;
  background:rgba(235,197,40,.14);color:var(--primary);
  padding:4px 10px;border-radius:999px;font-size:.72rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase;
}
.promoCard h3{margin:.2em 0 .2em}
.promoCard p{color:var(--muted);font-size:.92rem}
.promoCard .btn{align-self:flex-start;margin-top:6px}
.promoCard--lead{
  grid-column:span 2;
  border-color:rgba(235,197,40,.45);
  background:linear-gradient(180deg,#221d0e,#191407);
}
.promoCard--lead h3{color:var(--primary-2)}

.vipTeaser{
  display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center;
  margin-top:26px;padding:24px;
  border:1px solid var(--line);border-radius:var(--radius-lg);
  background:linear-gradient(180deg,#1c1c1c,#161616);
}

.providerStrip{
  display:flex;gap:18px;flex-wrap:wrap;justify-content:center;align-items:center;
  padding:18px;border:1px solid var(--line-2);border-radius:var(--radius-lg);background:#161616;
  margin-bottom:30px;
}
.providerLogo{
  flex:0 0 auto;
  width:120px;height:60px;
  display:inline-flex;align-items:center;justify-content:center;
  background:#101010;border:1px solid var(--line-2);border-radius:10px;
  padding:8px;
  transition:border-color .15s ease, transform .15s ease;
}
.providerLogo:hover{border-color:var(--primary);transform:translateY(-2px)}
.providerLogo img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;filter:grayscale(.2) brightness(1.05)}

.seo{
  background:#161616;border:1px solid var(--line-2);border-radius:var(--radius-lg);
  padding:24px;
}
.seo__media{display:block;width:100%;max-height:280px;overflow:hidden;border-radius:var(--radius);margin:0 0 18px}
.seo__media img{width:100%;height:100%;max-height:280px;object-fit:cover}
.seo h3{color:var(--primary-2);margin-top:1.4em}
.seo h3:first-of-type{margin-top:0}

.aboutLead{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center;margin-bottom:30px}
.aboutLead__media{display:block;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line-2);max-height:380px}
.aboutLead__media img{width:100%;height:100%;max-height:380px;object-fit:cover}
.aboutLead__body p{color:#dcdcdc}

.trust{
  display:flex;flex-direction:column;gap:8px;
  background:#1b1b1b;border:1px solid var(--line-2);border-radius:var(--radius-lg);
  padding:20px;text-align:center;align-items:center;
}
.trust h4{margin:.2em 0 .1em;color:var(--primary-2)}
.trust p{color:var(--muted);font-size:.92rem}

.stats{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;
  margin:30px 0;padding:22px;border:1px solid var(--line);border-radius:var(--radius-lg);
  background:linear-gradient(180deg,#1d1d1d,#151515);
}
.stat{display:flex;flex-direction:column;align-items:center;text-align:center;min-width:0}
.stat strong{font-size:clamp(1.4rem,3vw,2rem);color:var(--primary)}
.stat span{color:var(--muted);font-size:.82rem;text-transform:uppercase;letter-spacing:.08em}

.accordion{display:flex;flex-direction:column;gap:10px}
.acc{
  background:#1a1a1a;border:1px solid var(--line-2);border-radius:var(--radius);
  overflow:hidden;
}
.acc[open]{border-color:var(--primary)}
.acc summary{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:16px 20px;cursor:pointer;font-weight:800;list-style:none;
}
.acc summary::-webkit-details-marker{display:none}
.acc summary span{flex:1 1 auto;min-width:0}
.acc summary i{
  flex:0 0 auto;width:22px;height:22px;border:2px solid var(--primary);border-radius:50%;
  position:relative;transition:transform .2s ease;
}
.acc summary i::before,.acc summary i::after{
  content:"";position:absolute;background:var(--primary);
}
.acc summary i::before{left:4px;right:4px;top:9px;height:2px}
.acc summary i::after{left:9px;top:4px;bottom:4px;width:2px;transition:transform .2s ease}
.acc[open] summary i::after{transform:scaleY(0)}
.acc__body{padding:0 20px 18px;color:#ddd}
.acc__body p{color:#ddd}
.acc__body h4{color:var(--primary-2);margin-top:.8em}

.footer{background:#0e0e0e;border-top:1px solid var(--line);padding:40px 0 24px;margin-top:40px}
.footer__top{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:14px;padding-bottom:20px;border-bottom:1px solid var(--line-2)}
.footer__tag{color:var(--primary-2);font-weight:800;letter-spacing:.02em;margin:0}

.footer__cols{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:24px;padding:24px 20px}
.footer__col{display:flex;flex-direction:column;gap:8px;min-width:0}
.footer__col h5{margin:0 0 6px;color:var(--primary);font-size:.95rem;text-transform:uppercase;letter-spacing:.08em}
.footer__col a{color:#bbb;font-size:.92rem;line-height:1.4}
.footer__col a:hover{color:var(--primary)}

.footer__pay{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;padding:18px 20px;border-top:1px solid var(--line-2);border-bottom:1px solid var(--line-2)}
.payBadge{
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 14px;background:#1a1a1a;border:1px solid var(--line-2);border-radius:8px;
  color:#ddd;font-weight:800;font-size:.82rem;letter-spacing:.04em;
}

.footer__resp{display:flex;flex-wrap:wrap;align-items:center;gap:14px;padding:18px 20px;color:var(--muted);font-size:.88rem}
.ageBadge{
  width:42px;height:42px;border-radius:50%;border:2px solid #fff;color:#fff;
  display:inline-flex;align-items:center;justify-content:center;font-weight:900;flex:0 0 auto;
}

.footer__bottom{display:flex;justify-content:center;padding:14px 20px;color:var(--muted);font-size:.85rem}

.catfish{
  position:fixed;left:50%;transform:translateX(-50%);
  bottom:calc(12px + env(safe-area-inset-bottom));
  width:min(960px, calc(100% - 16px));
  background:linear-gradient(180deg,#1f1f1f,#161616);
  border:1px solid var(--primary);border-radius:14px;
  box-shadow:0 14px 40px rgba(0,0,0,.55);
  z-index:200;
}
.catfish[hidden]{display:none}
.catfish__inner{display:flex;align-items:center;gap:12px;padding:12px 14px}
.catfish__text{
  flex:1 1 auto;min-width:0;
  color:#fff;font-weight:800;font-size:.95rem;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.catfish__close{
  flex:0 0 auto;width:32px;height:32px;border-radius:50%;border:1px solid var(--line);
  display:inline-flex;align-items:center;justify-content:center;color:#fff;font-size:1.4rem;line-height:1;
}
.catfish__close:hover{border-color:var(--primary);color:var(--primary)}

.exit{position:fixed;inset:0;z-index:300;display:flex;align-items:center;justify-content:center;padding:16px}
.exit[hidden]{display:none}
.exit__overlay{position:absolute;inset:0;background:rgba(0,0,0,.7);backdrop-filter:blur(4px)}
.exit__box{
  position:relative;z-index:1;
  width:min(480px,100%);
  background:linear-gradient(180deg,#1c1c1c,#141414);
  border:1px solid var(--primary);border-radius:18px;
  padding:24px;text-align:center;
  box-shadow:0 30px 60px rgba(0,0,0,.6);
}
.exit__close{position:absolute;top:10px;right:12px;width:34px;height:34px;border-radius:50%;border:1px solid var(--line);color:#fff;font-size:1.4rem;line-height:1;display:inline-flex;align-items:center;justify-content:center}
.exit__close:hover{border-color:var(--primary);color:var(--primary)}
.exit__media{display:block;border-radius:12px;overflow:hidden;margin:0 0 14px;max-height:200px}
.exit__media img{width:100%;height:100%;max-height:200px;object-fit:cover}
.exit__box h3{color:var(--primary-2);margin:0 0 6px}
.exit__box .btn{margin-top:10px}

@media (max-width:1100px){
  .grid--games{grid-template-columns:repeat(4,minmax(0,1fr))}
  .grid--live{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid--promos{grid-template-columns:repeat(2,minmax(0,1fr))}
  .promoCard--lead{grid-column:span 2}
  .grid--trust{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer__cols{grid-template-columns:repeat(3,minmax(0,1fr))}
  .aboutLead{grid-template-columns:1fr}
  .aboutLead__media{order:2}
}

@media (max-width:900px){
  .header__inner{grid-template-columns:auto 1fr auto}
  .nav--top{display:none}
  .header__lang{display:none}
  .burger{display:flex}
  .header__main{display:none}
  .mascot{display:none}
  .vipTeaser{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:680px){
  .container{padding:0 16px}
  section{padding:42px 0}
  .grid--games{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
  .grid--live{grid-template-columns:1fr}
  .grid--promos{grid-template-columns:1fr}
  .promoCard--lead{grid-column:span 1}
  .grid--trust{grid-template-columns:1fr}
  .footer__cols{grid-template-columns:1fr 1fr;gap:18px;padding:20px 0}
  .hero__cta .btn{flex:1 1 100%;width:100%}
  .hero__cta{flex-direction:column;align-items:stretch}
  .jackpot{flex-direction:column;align-items:flex-start;text-align:left}
  .jackpot .btn{width:100%}
  .header__actions .btn{padding:10px 14px;font-size:.78rem;min-height:42px}
  .brand__logo{height:36px}
  .header__bar{padding:10px 0}
  .sectionNav{top:60px}
  .stats{grid-template-columns:1fr 1fr;gap:10px;padding:14px}
  .acc summary{padding:14px 16px}
  .acc__body{padding:0 16px 14px}
  .footer__top{flex-direction:column;align-items:flex-start;text-align:left}
  .catfish__inner{padding:10px 12px;gap:8px}
  .catfish__text{font-size:.85rem;white-space:normal;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
  .catfish .btn{padding:8px 12px;font-size:.78rem}
}

@media (max-width:380px){
  .header__actions .btn{padding:8px 10px;font-size:.72rem;min-height:38px}
  .grid--games{gap:10px}
}

table{width:100%;table-layout:fixed;border-collapse:collapse}
table td,table th{overflow-wrap:anywhere;word-break:break-word;hyphens:auto}

@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
}
