:root{
  --ro-bg:#0e1014;
  --ro-bg2:#12151b;
  --ro-panel: rgba(255,255,255,.04);
  --ro-panel2: rgba(255,255,255,.06);
  --ro-line: rgba(255,255,255,.10);

  --ro-text:#f4f1ea;
  --ro-muted: rgba(244,241,234,.70);

  --ro-gold:#e8c46a;
  --ro-gold2:#b4892f;

  --ro-red:#e01919;
  --ro-red2:#b90f0f;

  --ro-radius: 18px;
  --ro-radius-lg: 26px;

  --ro-shadow: 0 24px 78px rgba(0,0,0,.60);
  --ro-shadow-sm: 0 14px 44px rgba(0,0,0,.45);

  --ro-container: 1240px;

  /* заметно другой характер */
  --ro-font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  --ro-head: ui-serif, "Georgia", "Times New Roman", serif;
}

html,body{ height:100%; }
body{
  font-family: var(--ro-font);
  color: var(--ro-text);
  background:
    radial-gradient(980px 520px at 18% -10%, rgba(232,196,106,.14), transparent 62%),
    radial-gradient(980px 560px at 82% 12%, rgba(224,25,25,.10), transparent 62%),
    linear-gradient(180deg, var(--ro-bg) 0%, var(--ro-bg2) 100%);
}

/* subtle “Greek key” vibe (very light) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  opacity: .08;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 18px,
      rgba(255,255,255,.08) 18px 19px,
      transparent 19px 36px
    ),
    repeating-linear-gradient(0deg,
      transparent 0 18px,
      rgba(255,255,255,.05) 18px 19px,
      transparent 19px 36px
    );
  mix-blend-mode: overlay;
}

/* container */
.container{ width: min(var(--ro-container), calc(100% - 40px)); margin-inline:auto; }

/* laurel corners (plants) */
.ro-corners{
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index: 0;
  opacity: .9;
}
.ro-corners::before,
.ro-corners::after{
  content:"";
  position:absolute;
  width: 260px;
  height: 260px;
  background-repeat:no-repeat;
  background-size: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.40));
}
.ro-corners::before{
  top:-18px; left:-18px;
  background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'>\
<defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'>\
<stop offset='0' stop-color='%23e8c46a'/><stop offset='1' stop-color='%23b4892f'/>\
</linearGradient></defs>\
<path d='M32 190c10-62 70-138 154-158-12 62-72 138-154 158Z' fill='url(%23g)' opacity='.88'/>\
<g fill='rgba(255,255,255,.14)'>\
<path d='M58 160c8-12 18-20 30-24-8 14-18 22-30 24Z'/>\
<path d='M78 138c10-14 22-24 36-30-10 16-22 26-36 30Z'/>\
<path d='M104 116c12-14 26-26 42-34-12 18-26 28-42 34Z'/>\
</g>\
</svg>");
}
.ro-corners::after{
  bottom:-22px; right:-22px;
  transform: scaleX(-1);
  background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'>\
<defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'>\
<stop offset='0' stop-color='%23e8c46a'/><stop offset='1' stop-color='%23b4892f'/>\
</linearGradient></defs>\
<path d='M32 190c10-62 70-138 154-158-12 62-72 138-154 158Z' fill='url(%23g)' opacity='.88'/>\
<g fill='rgba(255,255,255,.14)'>\
<path d='M58 160c8-12 18-20 30-24-8 14-18 22-30 24Z'/>\
<path d='M78 138c10-14 22-24 36-30-10 16-22 26-36 30Z'/>\
<path d='M104 116c12-14 26-26 42-34-12 18-26 28-42 34Z'/>\
</g>\
</svg>");
}
@media (max-width:560px){
  .ro-corners::before,.ro-corners::after{ width: 170px; height:170px; opacity:.65; }
}

/* ---------- header ---------- */
.ro-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(15,17,21,.76);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.ro-header__row{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.ro-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 190px;
}
.custom-logo-link{ display:flex; align-items:center; text-decoration:none; }
.custom-logo{ max-height: 34px; width:auto; height:auto; }

.ro-logo{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.ro-logo__mark{
  width: 30px; height: 30px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.30), transparent 55%),
    linear-gradient(135deg, rgba(232,196,106,.95), rgba(180,137,47,.92));
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
}
.ro-logo__txt{
  font-family: var(--ro-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: 12px;
  line-height: 1.0;
}
.ro-logo__txt b{ display:block; letter-spacing:.14em; }

.ro-nav{ display:flex; align-items:center; }
.ro-nav__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 12px;
  align-items:center;
}
.ro-nav__list a{
  display:inline-flex;
  align-items:center;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  color: rgba(244,241,234,.86);
}
.ro-nav__list a:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(232,196,106,.16);
}

.ro-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  justify-content:flex-end;
  min-width: 260px;
}

.ro-flag{
  width: 22px;
  height: 16px;
  border-radius: 4px;
  overflow:hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}

.ro-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 36px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor:pointer;
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.ro-btn:active{ transform: translateY(1px); }

.ro-btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
  color: rgba(244,241,234,.92);
}
.ro-btn--ghost:hover{ border-color: rgba(232,196,106,.18); box-shadow: 0 18px 44px rgba(0,0,0,.35); }

.ro-btn--cta{
  color: #fff;
  background: linear-gradient(180deg, var(--ro-red) 0%, var(--ro-red2) 100%);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 22px 60px rgba(224,25,25,.18);
}
.ro-btn--cta:hover{ box-shadow: 0 28px 76px rgba(224,25,25,.22); }

.ro-icon-btn{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* burger + drawer */
.ro-burger{
  display:none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.ro-drawer{
  position: fixed;
  inset: 0;
  z-index: 80;
  display:none;
}
.ro-drawer.is-open{ display:block; }
.ro-drawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}
.ro-drawer__panel{
  position:absolute;
  top:0; left:0;
  width: min(340px, 88vw);
  height: 100%;
  background: rgba(15,17,21,.94);
  backdrop-filter: blur(14px);
  border-right: 1px solid rgba(255,255,255,.10);
  padding: 14px;
  box-shadow: 0 24px 78px rgba(0,0,0,.60);
  transform: translateX(-102%);
  transition: transform .22s ease;
}
.ro-drawer.is-open .ro-drawer__panel{ transform: translateX(0); }

.ro-drawer__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.ro-drawer__close{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(244,241,234,.92);
  cursor:pointer;
}

.ro-drawer__links{
  display:grid;
  gap: 10px;
}
.ro-drawer__links a{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  text-decoration:none;
  font-weight: 900;
  color: rgba(244,241,234,.92);
}
.ro-drawer__links a span{ font-size: 18px; }

@media (max-width: 980px){
  .ro-nav{ display:none; }
  .ro-burger{ display:inline-flex; }
}

/* ---------- home ---------- */
.ro-home{
  position: relative;
  z-index: 1; /* above corners */
  padding: 16px 0 34px;
}

/* ---------- hero slider ---------- */
.ro-hero{
  border-radius: var(--ro-radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--ro-shadow);
  overflow:hidden;
}

.ro-carousel{
  position: relative;
  overflow:hidden;
}

.ro-slides{
  display:flex;
  transition: transform .35s ease;
  will-change: transform;
}
.ro-slide{
  min-width: 100%;
  padding: 18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
  align-items:center;

  /* Sparta-ish arena mood */
  background:
    radial-gradient(900px 420px at 24% 22%, rgba(232,196,106,.18), transparent 62%),
    radial-gradient(900px 520px at 88% 20%, rgba(224,25,25,.12), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.ro-slide__kicker{
  font-family: var(--ro-head);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244,241,234,.78);
  margin-bottom: 8px;
}
.ro-slide__title{
  margin:0 0 12px;
  font-family: var(--ro-head);
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 56px);
  line-height: 1.02;
}
.ro-slide__title b{ color: rgba(232,196,106,.95); }

.ro-slide__text{
  margin:0 0 16px;
  color: rgba(244,241,234,.78);
  line-height: 1.7;
  max-width: 60ch;
}

.ro-hero__ctaRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
.ro-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(244,241,234,.78);
  font-weight: 900;
  font-size: 12px;
}

/* art block: spartan emoji silhouette (fallback) */
.ro-slide__art{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  min-height: 240px;
}
.ro-artCard{
  width: min(420px, 100%);
  height: 260px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(240px 160px at 30% 30%, rgba(255,255,255,.18), transparent 62%),
    radial-gradient(260px 180px at 70% 40%, rgba(232,196,106,.18), transparent 72%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 22px 70px rgba(0,0,0,.52);
  position: relative;
  overflow:hidden;
}
.ro-artCard::after{
  content:"🛡️⚔️🏛️";
  position:absolute;
  right: 12px;
  bottom: 12px;
  font-size: 30px;
  opacity:.88;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
}

/* dots + arrows */
.ro-dots{
  position:absolute;
  left: 18px;
  bottom: 14px;
  display:flex;
  gap: 8px;
  z-index: 3;
}
.ro-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  box-shadow: 0 0 0 6px rgba(255,255,255,.06);
}
.ro-dot.is-active{
  background: rgba(232,196,106,.95);
  box-shadow: 0 0 0 6px rgba(232,196,106,.12);
}

.ro-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  cursor:pointer;
  display:grid;
  place-items:center;
  color: rgba(244,241,234,.92);
}
.ro-arrow--prev{ left: 10px; }
.ro-arrow--next{ right: 10px; }

@media (max-width: 980px){
  .ro-slide{ grid-template-columns: 1fr; }
  .ro-slide__art{ justify-content:flex-start; }
  .ro-artCard{ height: 210px; }
}

/* ---------- slots block (ONE) ---------- */
.ro-sec{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.ro-sec__title{
  margin:0;
  font-family: var(--ro-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
}
.ro-sec__link{
  color: rgba(244,241,234,.70);
  font-weight: 900;
  font-size: 12px;
  text-decoration:none;
}
.ro-sec__link:hover{ text-decoration: underline; text-underline-offset: 3px; }

.ro-slider{
  margin-top: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--ro-shadow-sm);
  padding: 12px;
  position: relative;
  overflow:hidden;
}
.ro-track{
  display:flex;
  gap: 12px;
  overflow-x:auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,196,106,.30) transparent;
}
.ro-track::-webkit-scrollbar{ height: 7px; }
.ro-track::-webkit-scrollbar-thumb{ background: rgba(232,196,106,.18); border-radius: 999px; }
.ro-track::-webkit-scrollbar-track{ background: transparent; }

/* slot card hover PLAY */
.ro-game{
  min-width: 210px;
  max-width: 210px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 16px 44px rgba(0,0,0,.44);
  position: relative;
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
}
.ro-game:hover{
  transform: translateY(-4px);
  border-color: rgba(232,196,106,.20);
  box-shadow: 0 26px 70px rgba(0,0,0,.60);
  filter: saturate(1.06);
}
.ro-game__media{
  display:block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(232,196,106,.12), rgba(255,255,255,.03));
  position: relative;
}
.ro-game__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.03);
  transition: transform .26s ease, filter .26s ease;
}
.ro-game:hover .ro-game__media img{
  transform: scale(1.10);
  filter: saturate(1.12) contrast(1.05);
}
.ro-game__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(420px 220px at 50% 0%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
  opacity: 0;
  transition: opacity .2s ease;
}
.ro-game:hover .ro-game__overlay{ opacity: 1; }

.ro-play{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 36px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, var(--ro-red) 0%, var(--ro-red2) 100%);
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.ro-game:hover .ro-play{ transform: translateY(0); opacity: 1; }

.ro-game__meta{ padding: 10px 10px 12px; }
.ro-game__title{
  margin:0;
  font-weight: 950;
  font-size: 13px;
  line-height: 1.25;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
  min-height: calc(1.25em * 2);
}
.ro-game__sub{
  color: rgba(244,241,234,.62);
  font-size: 12px;
  margin-top: 6px;
}

/* ---------- FAQ ---------- */
.ro-faq{ margin-top: 16px; }
.ro-faq__title{
  margin: 0 0 10px;
  font-family: var(--ro-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
}
.ro-faq__list{ display:grid; gap: 10px; }
.ro-faq details{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
  overflow:hidden;
}
.ro-faq summary{
  cursor:pointer;
  padding: 12px 14px;
  font-weight: 950;
  list-style:none;
  position: relative;
}
.ro-faq summary::-webkit-details-marker{ display:none; }
.ro-faq summary::after{
  content:"+";
  position:absolute;
  right: 14px;
  top: 10px;
  width: 28px; height: 28px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(232,196,106,.12);
}
.ro-faq details[open] summary::after{ content:"–"; }
.ro-faq__a{
  padding: 0 14px 14px;
  color: rgba(244,241,234,.74);
  line-height: 1.7;
  font-size: 13px;
}

/* ---------- SEO block ---------- */
.ro-seo{ margin-top: 16px; }
.ro-seo__box{
  border-radius: var(--ro-radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(760px 260px at 12% 0%, rgba(232,196,106,.10), transparent 60%),
    rgba(255,255,255,.02);
  box-shadow: var(--ro-shadow-sm);
  padding: 16px;
}
.ro-seo__box :where(h1,h2){ margin: 6px 0 10px; font-size: 22px; }
.ro-seo__box :where(h3){ margin: 16px 0 8px; font-size: 16px; }
.ro-seo__box :where(p){ margin: 0 0 12px; color: rgba(244,241,234,.78); line-height: 1.75; }
.ro-seo__box :where(ul,ol){ margin: 0 0 12px 18px; color: rgba(244,241,234,.78); line-height: 1.75; }
.ro-seo__box :where(a){ color: rgba(232,196,106,.95); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- chat widget ---------- */
.ro-chat{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
}
.ro-chat__btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(15,17,21,.82);
  backdrop-filter: blur(12px);
  color: rgba(244,241,234,.92);
  font-weight: 950;
  cursor:pointer;
  box-shadow: 0 18px 44px rgba(0,0,0,.36);
}
.ro-chat__btn i{ font-style: normal; font-size: 18px; }
.ro-chat__panel{
  width: min(320px, 86vw);
  margin-top: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(15,17,21,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.50);
  padding: 12px;
  display:none;
}
.ro-chat.is-open .ro-chat__panel{ display:block; }
.ro-chat__title{ font-weight: 950; margin-bottom: 6px; }
.ro-chat__text{ color: rgba(244,241,234,.75); font-size: 13px; line-height: 1.6; }
@media (max-width: 560px){ .ro-chat__btn span{ display:none; } }

/* ---------- footer + payments ---------- */
.ro-footer{
  margin-top: 18px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.ro-footer__row{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.ro-footer__brand{
  font-family: var(--ro-head);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 900;
}
.ro-footer__muted{
  margin-top: 8px;
  color: rgba(244,241,234,.62);
  font-size: 12px;
  line-height: 1.65;
  max-width: 54ch;
}
.ro-footer__links{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ro-footer__link{
  display:inline-flex;
  align-items:center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  color: rgba(244,241,234,.78);
}
.ro-footer__link:hover{ border-color: rgba(232,196,106,.22); color: rgba(244,241,234,.92); }

.ro-payments{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
.ro-pay{
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: rgba(244,241,234,.78);
  font-weight: 900;
  font-size: 12px;
}
.ro-pay svg{ width: 26px; height: 16px; opacity:.95; }

/* lite page */
.ro-lite{ padding: 16px 0 34px; position: relative; z-index:1; }
.ro-bc{ font-size: 12px; color: rgba(244,241,234,.66); }
.ro-bc a{ color: rgba(232,196,106,.92); text-decoration:none; }
.ro-bc a:hover{ text-decoration: underline; text-underline-offset: 3px; }
.ro-lite__title{ margin: 8px 0 0; font-size: 28px; }

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