/* ===== TOKENS & RESET ===== */
:root {
  --gold: #E8B400;
  --gold-dark: #c99a00;
  --gold-light: #f5cc33;
  --navy: #0d0f2b;
  --navy-mid: #141636;
  --navy-light: #1e2147;
  --navy-card: #1a1d3e;
  --white: #ffffff;
  --off-white: #f0f2f8;
  --text: #e2e4f0;
  --text-muted: #9499c4;
  --green-ok: #27c97a;
  --yellow-warn: #f5c842;
  --red-err: #e04040;
  --border: rgba(255,255,255,0.08);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.2s ease;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

ul {
  list-style: none;
}

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #f5cc33 50%, var(--gold-dark) 100%);
  color: #0d0f2b;
  box-shadow: 0 4px 16px rgba(232,180,0,0.35);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #ffe066 50%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,180,0,0.5);
}

.btn--gold:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--xl {
  padding: 18px 44px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

/* ===== TOP BANNER ===== */
.top-banner {
  background: linear-gradient(90deg, #1a0050 0%, #2a0070 40%, #1a0050 100%);
  border-bottom: 2px solid var(--gold);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-banner__text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}

.top-banner__badge {
  background: var(--gold);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.top-banner__text strong {
  color: var(--white);
  font-size: 0.92rem;
}

.top-banner__sub {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(13, 15, 43, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 60px;
  z-index: 99;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__svg {
  width: 160px;
  height: 44px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.site-nav a:hover {
  color: var(--white);
  background: var(--navy-light);
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 0;
}

.section--dark {
  background: var(--navy-mid);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  margin: 36px 0 14px;
  line-height: 1.3;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 720px;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 64px;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,180,0,0.08) 0%, transparent 60%), var(--navy);
  border-bottom: 1px solid var(--border);
}

.hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag {
  background: rgba(232,180,0,0.12);
  border: 1px solid rgba(232,180,0,0.3);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero__sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 4px;
}

.star {
  width: 22px;
  height: 22px;
  display: inline-block;
  position: relative;
}

.star--full::before {
  content: '★';
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.star--half::before {
  content: '½';
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.rating-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.rating-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__disclaimer {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.hero__quickfacts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.qf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  min-width: 120px;
  flex: 1;
}

.qf__icon {
  font-size: 1.4rem;
}

.qf__val {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}

.qf__key {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== INTRO ===== */
.intro-section {
  background: var(--navy-mid);
}

.prose-block {
  max-width: 800px;
}

.prose-block--wide {
  max-width: 100%;
}

.prose-block p,
.prose-block--wide p {
  margin-bottom: 20px;
  font-size: 1.02rem;
  color: var(--text);
}

.prose-block p:last-child,
.prose-block--wide p:last-child {
  margin-bottom: 0;
}

/* ===== BONUS HIGHLIGHT CARD ===== */
.bonus-highlight-card {
  background: linear-gradient(135deg, #1c1f4a 0%, #2a1060 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 32px;
  padding: 36px;
  margin: 32px 0 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(232,180,0,0.15);
}

.bonus-highlight-card__left {
  flex: 1;
  min-width: 240px;
}

.bhc__label {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.bhc__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.bhc__sub {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.bhc__terms {
  list-style: none;
  padding: 0;
}

.bhc__terms li {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.bhc__terms li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.bonus-highlight-card__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.bhc__disclaimer {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-align: center;
  max-width: 200px;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  gap: 20px;
  margin: 28px 0;
}

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

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ===== PROMO CARDS ===== */
.promo-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.promo-card:hover {
  border-color: rgba(232,180,0,0.3);
  transform: translateY(-2px);
}

.promo-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.promo-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--white);
}

.promo-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== GAME CATEGORY CARDS ===== */
.game-cat-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.game-cat-card:hover {
  border-color: rgba(232,180,0,0.4);
  transform: translateY(-3px);
}

.gcc__icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.gcc__name {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.gcc__count {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

/* ===== PROVIDERS ===== */
.software-providers {
  margin-top: 40px;
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.provider-badge {
  background: var(--navy-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  transition: border-color var(--transition), color var(--transition);
}

.provider-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== MID BANNER ===== */
.mid-banner {
  background: linear-gradient(90deg, #1a0a40 0%, #2e1060 50%, #1a0a40 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 28px 20px;
}

.mid-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mid-banner__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mid-banner__text strong {
  font-size: 1.1rem;
  color: var(--white);
}

.mid-banner__text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== TABLE ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: var(--navy-card);
}

.data-table thead {
  background: rgba(232,180,0,0.1);
}

.data-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(232,180,0,0.2);
  white-space: nowrap;
}

.data-table td {
  padding: 13px 18px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

/* ===== INFO BOXES ===== */
.info-box {
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.92rem;
}

.info-box--tip {
  background: rgba(39,201,122,0.08);
  border-left: 4px solid var(--green-ok);
  color: var(--text);
}

.info-box--warning {
  background: rgba(224,64,64,0.08);
  border-left: 4px solid var(--red-err);
  color: var(--text);
}

.info-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

/* ===== TRUST CARDS ===== */
.trust-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition);
}

.trust-card:hover {
  border-color: rgba(232,180,0,0.3);
}

.trust-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.trust-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--white);
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TWO-COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.two-col--balanced {
  grid-template-columns: 1fr 1fr;
}

.two-col__text p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: var(--text);
}

/* ===== MOBILE COMPAT BOX ===== */
.mobile-compat-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.mobile-compat-box h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  color: var(--white);
}

.compat-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.compat-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.compat-icon--ok {
  background: var(--green-ok);
  color: #fff;
}

.compat-icon--warn {
  background: var(--yellow-warn);
  color: #000;
}

/* ===== SUPPORT CARDS ===== */
.support-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.support-card:hover {
  border-color: rgba(232,180,0,0.3);
  transform: translateY(-2px);
}

.support-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.support-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--white);
}

.support-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PROS / CONS ===== */
.pros-block,
.cons-block {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.pros-block {
  border-top: 3px solid var(--green-ok);
}

.cons-block {
  border-top: 3px solid var(--red-err);
}

.pros-block__title {
  color: var(--green-ok) !important;
  margin: 0 0 18px !important;
  font-size: 1.05rem !important;
}

.cons-block__title {
  color: var(--red-err) !important;
  margin: 0 0 18px !important;
  font-size: 1.05rem !important;
}

.verdict-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.verdict-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.verdict-list--pro li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-ok);
  font-weight: 700;
}

.verdict-list--con li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--red-err);
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item--open {
  border-color: rgba(232,180,0,0.4);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-arrow {
  color: var(--gold);
  font-size: 0.75rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item--open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.faq-item--open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.cta-final-section {
  background: radial-gradient(ellipse at center, rgba(232,180,0,0.07) 0%, transparent 70%), var(--navy);
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-final__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-final__text p {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 10px;
}

.cta-final__legal {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #09091e;
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-brand .footer-logo {
  width: 160px;
  height: 44px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links h4,
.footer-responsible h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links ul li a:hover {
  color: var(--gold);
}

.rg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.rg-badge {
  background: var(--navy-card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
}

.rg-badge--text {
  font-weight: 400;
  color: var(--text-muted);
}

.footer-responsible p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 0;
  }

  .top-banner {
    position: relative;
  }

  .top-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .top-banner__text {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .site-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero__quickfacts {
    gap: 12px;
  }

  .qf {
    min-width: 90px;
    padding: 12px 14px;
  }

  .cards-grid--3 {
    grid-template-columns: 1fr;
  }

  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-highlight-card {
    flex-direction: column;
    padding: 24px;
  }

  .bonus-highlight-card__right {
    width: 100%;
  }

  .bonus-highlight-card__right .btn {
    width: 100%;
  }

  .two-col--balanced {
    grid-template-columns: 1fr;
  }

  .mid-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .mid-banner__inner .btn {
    width: 100%;
    max-width: 320px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .section {
    padding: 48px 0;
  }

  .cta-final-section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .cards-grid--4 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn--xl {
    padding: 16px 28px;
    font-size: 1rem;
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .qf {
    flex: 1 1 42%;
  }

  .header-cta {
    display: none;
  }
}

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