/* ═══════════════════════════════════════════════════════════════════
   IPTV FULL GUIDE — v7 · Apple Clean
   ───────────────────────────────────────────────────────────────────
   نظيف · ناعم · أبيض · مساحات واسعة · زوايا مستديرة
   لون واحد accent · صفر زخارف · حس آبل
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --f-body:  'Tajawal', -apple-system, 'SF Pro Text', system-ui, sans-serif;
  --f-mono:  'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --fs-xs:   0.6875rem;
  --fs-sm:   0.8125rem;
  --fs-base: 0.9375rem;
  --fs-md:   1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.3125rem;
  --fs-2xl:  1.625rem;
  --fs-3xl:  clamp(1.875rem, 1.6rem + 1.35vw, 2.5rem);
  --fs-4xl:  clamp(2.5rem, 2rem + 2.5vw, 3.75rem);

  --w-regular: 400;
  --w-medium:  500;
  --w-bold:    700;

  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem;

  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 20px; --r-2xl: 24px; --r-full: 9999px;

  --container: 680px;

  --t-fast: 180ms ease; --t-base: 260ms ease;

  --white:     #FFFFFF;
  --bg:        #F5F5F7;
  --surface:   #FFFFFF;
  --surface-2: #F5F5F7;
  --surface-3: #ECECEE;

  --text:      #1D1D1F;
  --text-2:    #424245;
  --text-soft:  #6E6E73;
  --text-mute:  #86868B;
  --text-faint: #AEAEB2;

  --border:    #D2D2D7;
  --border-soft:#E8E8ED;

  --accent:    #0071E3;
  --accent-hover:#0077ED;
  --accent-bg: #E8F2FD;
  --accent-text:#0055AA;

  --success:   #34C759;
  --warning:   #FF9500;
  --danger:    #FF3B30;
  --whatsapp:  #25D366;
}

[data-server="aroma"] {
  --accent:    #E3002B;
  --accent-hover:#F01030;
  --accent-bg: #FDE8EC;
  --accent-text:#AA0020;
}


/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-md);
  font-weight: var(--w-regular);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.mono { font-family: var(--f-mono); direction: ltr; unicode-bidi: embed; }
.sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
@media (min-width: 480px) { .container { padding-inline: var(--s-6); } }


/* ── Topbar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 247, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid var(--border);
  padding-top: env(safe-area-inset-top);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 52px;
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.topbar__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: var(--r-sm);
}

.topbar__name {
  font-weight: var(--w-bold);
  font-size: var(--fs-base);
  color: var(--text);
}

.topbar__wa {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px var(--s-3);
  background: var(--text);
  color: #fff;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--w-medium);
  transition: background var(--t-fast);
}
.topbar__wa:hover { background: var(--accent); }
.topbar__wa svg { width: 14px; height: 14px; }


/* ── Hero ── */
.hero {
  padding: var(--s-10) 0 var(--s-8);
}
@media (min-width: 768px) { .hero { padding: var(--s-16) 0 var(--s-12); } }

.hero__server {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  font-weight: var(--w-medium);
  color: var(--text-soft);
  margin-bottom: var(--s-3);
}

.hero__server-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__title {
  font-size: var(--fs-4xl);
  font-weight: var(--w-bold);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-3);
  color: var(--text);
}

.hero__title em {
  color: var(--accent);
  font-style: normal;
}

.hero__lede {
  font-size: var(--fs-lg);
  color: var(--text-soft);
  line-height: 1.45;
  margin: 0;
  max-width: 480px;
}


/* ── Creds card ── */
.creds {
  margin-top: var(--s-8);
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

.creds__head {
  padding: var(--s-5) var(--s-6);
  border-bottom: 0.5px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.creds__head-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--accent-bg);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.creds__head-icon svg { width: 18px; height: 18px; }

.creds__head-text {
  flex: 1;
  min-width: 0;
}

.creds__head-title {
  font-size: var(--fs-lg);
  font-weight: var(--w-bold);
  margin: 0;
  line-height: 1.3;
  color: var(--text);
}

.creds__head-sub {
  font-size: var(--fs-xs);
  color: var(--text-mute);
  margin: 0;
}

.creds__body { padding: var(--s-4) var(--s-6) var(--s-5); }

.creds__row { padding-block: var(--s-4); }
.creds__row + .creds__row { border-top: 0.5px solid var(--border-soft); }

.creds__label {
  font-size: var(--fs-xs);
  font-weight: var(--w-medium);
  color: var(--text-mute);
  margin-bottom: var(--s-2);
  display: block;
}

.creds__field {
  display: flex;
  align-items: stretch;
  gap: var(--s-2);
}

.creds__value {
  flex: 1;
  min-width: 0;
  padding: 10px var(--s-4);
  font-family: var(--f-mono);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--surface-2);
  border: 0.5px solid var(--border-soft);
  border-radius: var(--r-md);
  word-break: break-all;
  overflow-wrap: anywhere;
  direction: ltr;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.creds__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--s-4);
  background: var(--accent);
  color: #fff;
  font-weight: var(--w-bold);
  font-size: var(--fs-sm);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 56px;
  min-height: 44px;
}
.creds__copy:hover { background: var(--accent-hover); }
.creds__copy:active { transform: scale(0.97); }

.creds__copy.is-copied { background: var(--success); }
.creds__copy.is-copied .c-default { display: none; }
.creds__copy:not(.is-copied) .c-done { display: none; }

/* Alt hosts */
.creds__alt {
  border-top: 0.5px solid var(--border-soft);
}

.creds__alt-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-6);
  font-size: var(--fs-sm);
  font-weight: var(--w-medium);
  color: var(--accent);
  text-align: start;
  transition: background var(--t-fast);
}
.creds__alt-toggle:hover { background: var(--surface-2); }
.creds__alt-toggle svg { width: 16px; height: 16px; transition: transform var(--t-base); flex-shrink: 0; }
.creds__alt[aria-expanded="true"] .creds__alt-toggle svg { transform: rotate(180deg); }

.creds__alt-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-base); }
.creds__alt[aria-expanded="true"] .creds__alt-content { grid-template-rows: 1fr; }
.creds__alt-content > div { overflow: hidden; }

.creds__alt-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: 0 var(--s-6) var(--s-5);
}

.creds__alt-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: var(--surface-2);
  border-radius: var(--r-md);
}

.creds__alt-num {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 50%;
  font-size: var(--fs-xs);
  font-weight: var(--w-bold);
  flex-shrink: 0;
}

.creds__alt-value {
  flex: 1;
  min-width: 0;
  font-family: var(--f-mono);
  font-size: var(--fs-sm);
  color: var(--text-2);
  direction: ltr;
  word-break: break-all;
}

.creds__alt-copy {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  color: var(--accent);
  transition: background var(--t-fast);
  flex-shrink: 0;
}
.creds__alt-copy:hover { background: var(--accent-bg); }
.creds__alt-copy svg { width: 14px; height: 14px; }

.creds__alt-note {
  margin: 0;
  padding: var(--s-3) var(--s-4);
  background: var(--surface-2);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.6;
}
.creds__alt-note a { color: var(--accent); font-weight: var(--w-bold); }


/* ── Section ── */
.section { padding-block: var(--s-10); }
@media (min-width: 768px) { .section { padding-block: var(--s-16); } }

.section__head { margin-bottom: var(--s-8); }

.section__step {
  font-size: var(--fs-sm);
  font-weight: var(--w-medium);
  color: var(--accent);
  margin-bottom: var(--s-2);
}

.section__title {
  font-size: var(--fs-3xl);
  font-weight: var(--w-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-3);
}

.section__desc {
  font-size: var(--fs-base);
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  max-width: 480px;
}


/* ── Platforms ── */
.platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
@media (min-width: 768px) { .platforms { grid-template-columns: repeat(4, 1fr); } }

.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-3);
  padding: var(--s-5) var(--s-3);
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-xl);
  color: var(--text);
  transition: all var(--t-base);
}

.platform:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.platform:active { transform: translateY(0); }

.platform.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.platform__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border-radius: var(--r-md);
  transition: background var(--t-base);
}
.platform.is-active .platform__icon { background: rgba(255,255,255,0.2); color: #fff; }
.platform__icon svg { width: 24px; height: 24px; }

.platform__name {
  font-size: var(--fs-base);
  font-weight: var(--w-bold);
  margin: 0;
  line-height: 1.2;
}

.platform__sub {
  font-size: var(--fs-xs);
  color: var(--text-mute);
  margin: 0;
  line-height: 1.4;
}
.platform.is-active .platform__sub { color: rgba(255,255,255,0.75); }


/* ── Empty state ── */
.empty {
  text-align: center;
  padding: var(--s-12) var(--s-5);
  background: var(--surface);
  border: 0.5px dashed var(--border);
  border-radius: var(--r-xl);
}
.empty__icon { font-size: 32px; margin-bottom: var(--s-3); color: var(--text-faint); }
.empty__title { font-size: var(--fs-lg); font-weight: var(--w-bold); margin: 0 0 var(--s-2); }
.empty__text { font-size: var(--fs-sm); color: var(--text-mute); margin: 0; }


/* ── Apps ── */
.apps { display: flex; flex-direction: column; gap: var(--s-6); }

.app {
  display: none;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

.app.is-visible {
  display: block;
  animation: fadeUp 350ms ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.app__header {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  border-bottom: 0.5px solid var(--border-soft);
}

.app__logo {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  padding: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.app__info { flex: 1; min-width: 0; }

.app__name {
  font-size: var(--fs-xl);
  font-weight: var(--w-bold);
  margin: 0 0 var(--s-1);
  line-height: 1.2;
}

.app__tags { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-2); }

.app__tag {
  font-size: var(--fs-xs);
  font-weight: var(--w-medium);
  padding: 2px var(--s-3);
  border-radius: var(--r-full);
  background: var(--surface-2);
  color: var(--text-soft);
}
.app__tag--rec { background: var(--accent-bg); color: var(--accent-text); }

.app__body { padding: var(--s-5) var(--s-6); }


/* ── Downloads ── */
.downloads { margin-bottom: var(--s-6); }

.downloads__label {
  font-size: var(--fs-sm);
  font-weight: var(--w-medium);
  color: var(--text-mute);
  margin: 0 0 var(--s-3);
}

.downloads__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
@media (min-width: 480px) { .downloads__list { flex-direction: row; flex-wrap: wrap; } }

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 10px var(--s-4);
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: var(--r-md);
  font-weight: var(--w-medium);
  font-size: var(--fs-sm);
  transition: all var(--t-fast);
  min-height: 48px;
}
.dl-btn:hover { border-color: var(--accent); color: var(--accent); }
.dl-btn svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.dl-btn__sub { font-size: var(--fs-xs); color: var(--text-mute); margin-top: 1px; }

.downloads__note {
  padding: var(--s-4);
  background: var(--surface-2);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}
.downloads__note strong { color: var(--text); font-weight: var(--w-bold); }


/* ── Trust card ── */
.trust {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-4);
  background: var(--accent-bg);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
}
.trust__icon { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.trust__icon svg { width: 20px; height: 20px; }
.trust__body { flex: 1; min-width: 0; }
.trust__title { font-size: var(--fs-sm); font-weight: var(--w-bold); color: var(--accent-text); margin: 0 0 2px; }
.trust__text { font-size: var(--fs-sm); color: var(--text-soft); margin: 0; line-height: 1.5; }
.trust__text strong { color: var(--text); }


/* ── Steps ── */
.steps { list-style: none; padding: 0; margin: 0; }

.step {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-5) 0;
}
.step + .step { border-top: 0.5px solid var(--border-soft); }

.step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 50%;
  font-size: var(--fs-sm);
  font-weight: var(--w-bold);
}

.step__content { flex: 1; min-width: 0; padding-top: 4px; }

.step__text {
  margin: 0;
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
}

.step__text strong {
  font-weight: var(--w-bold);
  color: var(--accent);
}

.step__text code {
  font-family: var(--f-mono);
  font-size: 0.9em;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  direction: ltr;
  unicode-bidi: embed;
}

.step__text a {
  color: var(--accent);
  font-weight: var(--w-medium);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Step inline creds */
.step__creds {
  margin-top: var(--s-3);
  background: var(--surface-2);
  border: 0.5px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}

.step__cred {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
}
.step__cred + .step__cred { border-top: 0.5px solid var(--border-soft); }

.step__cred-info { flex: 1; min-width: 0; }
.step__cred-label { font-size: var(--fs-xs); color: var(--text-mute); margin-bottom: 1px; }
.step__cred-value { font-family: var(--f-mono); font-size: var(--fs-sm); color: var(--text); word-break: break-all; direction: ltr; }

.step__cred-copy {
  flex-shrink: 0;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: var(--w-bold);
  transition: all var(--t-fast);
}
.step__cred-copy:hover { background: var(--accent-hover); }
.step__cred-copy.is-copied { background: var(--success); }
.step__cred-copy.is-copied .c-default { display: none; }
.step__cred-copy:not(.is-copied) .c-done { display: none; }


/* ── Note/Alert ── */
.note {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  margin-top: var(--s-3);
  background: #FFF8E1;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--text-2);
  line-height: 1.6;
}
.note--danger { background: #FFEBEE; }
.note__icon { flex-shrink: 0; font-size: var(--fs-lg); line-height: 1.2; }
.note__body { flex: 1; min-width: 0; }
.note__body strong { color: var(--danger); font-weight: var(--w-bold); }
.note--warning strong { color: #E65100; }

[data-server="aroma"] .note--danger strong { color: var(--accent); }


/* ── Toast ── */
.toast {
  position: fixed;
  bottom: max(var(--s-6), env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px var(--s-5);
  background: var(--text);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--w-medium);
  border-radius: var(--r-full);
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }
.toast svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }


/* ── Footer ── */
.site-footer {
  margin-top: var(--s-20);
  padding: var(--s-8) 0;
  padding-bottom: max(var(--s-8), env(safe-area-inset-bottom));
  border-top: 0.5px solid var(--border);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.site-footer__text { font-size: var(--fs-xs); color: var(--text-mute); margin: 0; }

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px var(--s-4);
  background: var(--text);
  color: #fff;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--w-medium);
  transition: background var(--t-fast);
}
.site-footer__link:hover { background: var(--accent); }
.site-footer__link svg { width: 14px; height: 14px; }


/* ── Landing ── */
.landing {
  padding: var(--s-10) 0;
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .landing { padding: var(--s-20) 0; } }

.landing__title {
  font-size: var(--fs-4xl);
  font-weight: var(--w-bold);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-4);
}
.landing__title em { color: var(--accent); font-style: normal; }

.landing__lede {
  font-size: var(--fs-lg);
  color: var(--text-soft);
  margin: 0 0 var(--s-10);
  max-width: 480px;
  line-height: 1.45;
}

.landing__choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 540px) { .landing__choices { grid-template-columns: 1fr 1fr; } }

.choice {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-6);
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-2xl);
  transition: all var(--t-base);
}
.choice:hover { border-color: var(--accent); transform: translateY(-3px); }

.choice__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--r-md);
  background: var(--surface-2);
  padding: 4px;
}

.choice__name { font-size: var(--fs-2xl); font-weight: var(--w-bold); margin: 0; }
.choice__desc { font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.6; margin: 0; flex: 1; }

.choice__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px var(--s-5);
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-md);
  font-weight: var(--w-bold);
  font-size: var(--fs-sm);
  transition: background var(--t-fast);
  align-self: flex-start;
}
.choice__cta:hover { background: var(--accent-hover); }
.choice__cta svg { width: 16px; height: 16px; }

.landing__foot {
  margin-top: var(--s-10);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-mute);
}
.landing__foot a { color: var(--accent); font-weight: var(--w-medium); }


/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
