:root {
  --jo-green: #123b32;
  --jo-green-2: #1d5a49;
  --jo-green-3: #2b765e;
  --jo-red: #b72036;
  --jo-red-dark: #811b2a;
  --gold: #d4ae68;
  --gold-soft: #efe0bd;
  --ivory: #fbf8f0;
  --sand: #e8dcc5;
  --ink: #17352f;
  --muted: #6c7a75;
  --line: rgba(32, 82, 67, .16);
  --shadow: 0 20px 55px rgba(15, 47, 39, .13);
  --danger: #a51f35;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-width: 100%;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: var(--ivory);
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* شاشة المصلين */
.screen-page {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 8%, rgba(212, 174, 104, .26), transparent 28%),
    linear-gradient(145deg, #0c3028, #081d1a);
}

.phone-screen {
  position: relative;
  width: min(100vw, calc(100dvh * 9 / 16));
  height: min(100dvh, calc(100vw * 16 / 9));
  aspect-ratio: 9 / 16;
  overflow: hidden;
  isolation: isolate;
  background: #f8f3e8;
  box-shadow: 0 0 80px rgba(0, 0, 0, .4);
}

.bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.country-ribbon {
  position: absolute;
  top: 3.1%;
  right: 9%;
  left: 9%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fffaf0;
  font-size: clamp(13px, 3.35vw, 22px);
  font-weight: 800;
  letter-spacing: .2px;
}

.seven-star {
  color: var(--gold);
  font-size: 1.05em;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .25));
}

.date-zone {
  position: absolute;
  top: 8.4%;
  right: 10%;
  left: 10%;
  text-align: center;
}

.day-name {
  color: var(--jo-red-dark);
  font-size: clamp(28px, 7.4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 1px #fff;
}

.date-line {
  color: var(--jo-green);
  font-size: clamp(15px, 4.2vw, 27px);
  line-height: 1.55;
  font-weight: 750;
}

.clock-zone {
  position: absolute;
  top: 19.9%;
  right: 5%;
  left: 5%;
  display: flex;
  direction: ltr;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
}

.clock {
  color: var(--jo-green);
  font-size: clamp(42px, 12.2vw, 76px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 0 #fff, 0 8px 20px rgba(23, 64, 52, .14);
}

.ampm {
  color: var(--jo-red);
  font-size: clamp(14px, 3.8vw, 24px);
  font-weight: 900;
  padding-bottom: 7px;
}

.table-panel {
  position: absolute;
  top: 30.1%;
  right: 7.4%;
  left: 7.4%;
  height: 36.6%;
  padding: 2.2% 2.5% 1.9%;
  border: 1px solid rgba(212, 174, 104, .48);
  border-radius: 24px;
  background: rgba(255, 253, 247, .73);
  box-shadow: 0 14px 35px rgba(30, 65, 54, .1), inset 0 1px rgba(255, 255, 255, .85);
  backdrop-filter: blur(5px);
}

.column-head {
  height: 9%;
  display: grid;
  direction: ltr;
  grid-template-columns: 1fr 1.04fr 1fr;
  align-items: center;
  color: var(--jo-green);
  font-size: clamp(14px, 3.8vw, 24px);
  font-weight: 900;
  text-align: center;
}

.prayer-table {
  width: 100%;
  height: 87%;
  margin-top: 2%;
  direction: ltr;
  border-collapse: separate;
  border-spacing: 0 .45vh;
  table-layout: fixed;
}

.prayer-table td {
  height: 15.4%;
  padding: 0 3px;
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid rgba(36, 94, 75, .08);
  border-bottom: 1px solid rgba(36, 94, 75, .08);
  background: rgba(255, 255, 255, .48);
}

.prayer-table tr td:first-child { border-radius: 12px 0 0 12px; }
.prayer-table tr td:last-child { border-radius: 0 12px 12px 0; }

.prayer-table tr.next td {
  background: linear-gradient(90deg, rgba(239, 224, 189, .8), rgba(255, 250, 238, .94));
  border-color: rgba(212, 174, 104, .45);
}

.prayer-table tr.current td {
  background: linear-gradient(90deg, rgba(18, 59, 50, .94), rgba(29, 90, 73, .94));
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 6px 14px rgba(18, 59, 50, .2);
}

.t-iqamah, .t-athan {
  direction: ltr;
  color: #3e6258;
  font-size: clamp(18px, 5.2vw, 32px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.5px;
}

.t-name {
  direction: rtl;
  color: #8e5f29;
  font-size: clamp(19px, 5.4vw, 34px);
  font-weight: 900;
  white-space: nowrap;
}

tr.next .t-name, tr.next .t-iqamah, tr.next .t-athan { color: var(--jo-green); }
tr.current .t-name, tr.current .t-iqamah, tr.current .t-athan { color: #fff; }

.center-panel, .azkar-panel {
  position: absolute;
  top: 31%;
  right: 8%;
  left: 8%;
  height: 34.6%;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(212, 174, 104, .56);
  background: rgba(255, 253, 247, .82);
  backdrop-filter: blur(6px);
}

.state-symbol {
  color: var(--gold);
  font-size: clamp(45px, 13vw, 78px);
  line-height: 1;
}

.center-panel h2, .azkar-panel h2 {
  margin: 8px 0 0;
  color: var(--jo-green);
  font-size: clamp(37px, 11vw, 67px);
  font-weight: 900;
}

.center-panel p {
  margin: 14px 0 0;
  color: var(--jo-red-dark);
  font-size: clamp(18px, 5vw, 31px);
  font-weight: 800;
}

.azkar-panel h2 { font-size: clamp(28px, 8vw, 49px); }
.azkar-panel p {
  max-width: 88%;
  margin: 18px 0 0;
  color: #365e53;
  font-size: clamp(20px, 5.6vw, 35px);
  line-height: 1.65;
  font-weight: 750;
}

.bottom-box {
  position: absolute;
  top: 69.3%;
  right: 11.5%;
  left: 11.5%;
  height: 8%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  padding: 8px 16px;
  text-align: center;
  border: 1px solid rgba(212, 174, 104, .56);
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(255, 252, 244, .94), rgba(239, 224, 189, .88));
  box-shadow: 0 10px 25px rgba(38, 67, 58, .11);
}

.bottom-box p {
  margin: 0;
  color: var(--jo-green);
  font-size: clamp(20px, 5.4vw, 34px);
  font-weight: 900;
}

.bottom-box strong {
  direction: ltr;
  color: var(--jo-red);
  font-size: clamp(25px, 7vw, 44px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.bottom-box.iqamah {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: linear-gradient(140deg, var(--jo-green), var(--jo-green-3));
}

.bottom-box.iqamah p, .bottom-box.iqamah strong { color: #fff; }
.bottom-box.athan { background: linear-gradient(145deg, #fff9ec, #f1d8a7); }
.bottom-box.prayer { background: linear-gradient(145deg, #f2d7dc, #fff7f8); border-color: rgba(183, 32, 54, .35); }
.bottom-box.sunrise { background: linear-gradient(145deg, #fff6d8, #f1d8a6); }
.bottom-box.warning { background: #fff0ee; border-color: rgba(183, 32, 54, .35); }

.footer-zone {
  position: absolute;
  top: 80.1%;
  right: 10%;
  left: 10%;
  text-align: center;
}

.mosque-name-bar {
  position: relative;
  padding: 12px 14px;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(90deg, var(--jo-green), #1f624e);
  box-shadow: 0 12px 28px rgba(14, 55, 44, .18);
}

.mosque-name-bar::before, .mosque-name-bar::after {
  content: "✦";
  position: absolute;
  top: 50%;
  color: var(--gold);
  transform: translateY(-50%);
  font-size: .9em;
}

.mosque-name-bar::before { right: 14px; }
.mosque-name-bar::after { left: 14px; }

#mosqueName {
  padding: 0 25px;
  font-size: clamp(24px, 6.8vw, 42px);
  line-height: 1.15;
  font-weight: 900;
}

.mosque-place {
  margin-top: 7px;
  color: var(--jo-red-dark);
  font-size: clamp(13px, 3.7vw, 23px);
  font-weight: 800;
}

.source-link {
  display: inline-block;
  margin-top: 5px;
  color: #4d675f;
  font-size: clamp(10px, 2.8vw, 17px);
  text-decoration: none;
}

.support-label {
  position: absolute;
  top: 92.8%;
  left: 5.4%;
  display: grid;
  text-align: left;
  direction: rtl;
  color: rgba(255, 255, 255, .93);
  font-size: clamp(9px, 2.4vw, 15px);
  font-weight: 750;
}

.support-phone { direction: ltr; font-weight: 900; }

.connection-state {
  position: absolute;
  right: 28%;
  left: 28%;
  bottom: 2.25%;
  padding: 5px 9px;
  color: rgba(255, 255, 255, .91);
  text-align: center;
  font-size: clamp(8px, 2.15vw, 14px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(5, 36, 30, .52);
  backdrop-filter: blur(4px);
}

.connection-state[data-state="offline"],
.connection-state[data-state="stale"] { background: rgba(128, 78, 15, .7); }
.connection-state[data-state="error"] { background: rgba(139, 25, 42, .78); }

.install-btn {
  position: absolute;
  z-index: 5;
  top: 2.3%;
  left: 4%;
  padding: 7px 10px;
  color: #fff;
  font-size: clamp(9px, 2.4vw, 14px);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(183, 32, 54, .9);
  cursor: pointer;
}

/* لوحات الإدارة */
.admin-page, .system-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 0, rgba(212, 174, 104, .24), transparent 28%),
    radial-gradient(circle at 10% 20%, rgba(18, 59, 50, .09), transparent 25%),
    #f4efe4;
}

.admin-shell {
  width: min(100%, 860px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px 18px 110px;
}

.system-shell { width: min(100%, 1100px); }

.admin-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 26px 28px;
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f332b, #1d5a49 70%, #28705a);
  box-shadow: var(--shadow);
}

.admin-head::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  left: -70px;
  top: -120px;
  border: 28px solid rgba(212, 174, 104, .12);
  border-radius: 50%;
}

.admin-head > * { position: relative; z-index: 1; }
.admin-head h1 { margin: 4px 0 6px; font-size: clamp(25px, 5vw, 42px); line-height: 1.2; }
.admin-head p { margin: 0; color: rgba(255, 255, 255, .75); line-height: 1.7; }

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3px;
}

.header-link {
  flex: 0 0 auto;
  padding: 10px 15px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 13px;
  background: rgba(255, 255, 255, .09);
}

.admin-card {
  margin-bottom: 16px;
  padding: 24px;
  border: 1px solid rgba(41, 88, 74, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 35px rgba(24, 64, 52, .07);
  backdrop-filter: blur(8px);
}

.admin-card h2 { margin: 3px 0 16px; font-size: clamp(21px, 4vw, 30px); }
.admin-card label {
  display: grid;
  gap: 8px;
  margin: 13px 0;
  color: #274d42;
  font-size: 14px;
  font-weight: 800;
}

.admin-card input, .admin-card select, .admin-card textarea, .mosque-tools input, .mosque-tools select {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  color: var(--ink);
  border: 1px solid rgba(38, 87, 72, .19);
  border-radius: 13px;
  outline: none;
  background: #fbfaf6;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.admin-card input:focus, .admin-card select:focus, .admin-card textarea:focus,
.mosque-tools input:focus, .mosque-tools select:focus {
  border-color: var(--jo-green-3);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(43, 118, 94, .11);
}

.muted {
  color: var(--muted);
  line-height: 1.75;
  font-size: 13px;
}

.hint {
  min-height: 20px;
  margin: 11px 0 0;
  color: var(--jo-green-2);
  font-weight: 800;
}

.hint.error, #saveMsg.error { color: var(--danger); }

.login-card { max-width: 600px; margin-right: auto; margin-left: auto; }
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  color: #fff;
  font-size: 28px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--jo-red), var(--jo-red-dark));
}

.card-head, .section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card-head h2, .section-title-row h2 { margin-top: 4px; }
.source-strip {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  padding: 12px 14px;
  color: #285347;
  border: 1px solid rgba(43, 118, 94, .16);
  border-radius: 14px;
  background: rgba(231, 241, 235, .74);
  line-height: 1.5;
}

.source-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2ca66f;
  box-shadow: 0 0 0 5px rgba(44, 166, 111, .12);
}

.date-chip, .security-badge {
  padding: 7px 10px;
  color: var(--jo-red-dark);
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(183, 32, 54, .14);
  border-radius: 999px;
  background: rgba(183, 32, 54, .06);
}

.times-editor {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.time-item {
  display: grid;
  grid-template-columns: .8fr 1.15fr 1.25fr;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(37, 84, 70, .13);
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, #f8f5ed);
}

.time-prayer { display: flex; align-items: center; gap: 8px; font-size: 18px; }
.prayer-mark { color: var(--gold); font-size: 12px; }
.time-item label { margin: 0; }
.time-item input { min-height: 42px; }
.athan-readonly input { direction: ltr; color: #47645c; background: #f0eee8; }
.athan-readonly small, .delay-input small { color: var(--muted); font-size: 11px; }
.athan-readonly b { display: block; margin-top: 5px; color: var(--jo-green); font-size: 20px; }
.delay-input > span { display: flex; align-items: center; gap: 7px; }
.delay-input input { width: 90px; text-align: center; }
.delay-input em { color: var(--muted); font-size: 12px; font-style: normal; }
.computed-iqamah {
  grid-column: 2 / 4;
  color: var(--jo-red-dark);
  font-size: 12px;
  font-weight: 800;
}
.sunrise-item .computed-iqamah { grid-column: auto; }

.sticky-actions {
  position: sticky;
  z-index: 10;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 13px;
  border: 1px solid rgba(40, 88, 73, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(23, 60, 49, .18);
  backdrop-filter: blur(12px);
}

.primary-btn, .ghost-btn, .danger-btn, .danger-mini {
  min-height: 44px;
  padding: 10px 16px;
  font-weight: 900;
  border-radius: 12px;
  cursor: pointer;
}

.primary-btn {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--jo-green), var(--jo-green-3));
  box-shadow: 0 8px 18px rgba(18, 59, 50, .18);
}

.ghost-btn {
  color: var(--jo-green);
  border: 1px solid rgba(30, 84, 68, .2);
  background: #fff;
}

.danger-btn, .danger-mini {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--jo-red), var(--jo-red-dark));
}

.danger-mini { min-height: 38px; padding: 8px 12px; font-size: 12px; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 17px; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}
.wide-field { grid-column: 1 / -1; }

.jo-flag-mark {
  position: relative;
  width: 54px;
  height: 34px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(#161616 0 33.33%, #fff 33.33% 66.66%, #137047 66.66%);
  box-shadow: 0 4px 11px rgba(0, 0, 0, .12);
}
.jo-flag-mark::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--jo-red);
}
.jo-flag-mark::after {
  content: "✦";
  position: absolute;
  left: 8px;
  top: 8px;
  color: #fff;
  font-size: 10px;
}

.result-box {
  margin-top: 14px;
  padding: 15px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(43, 118, 94, .18);
  border-radius: 15px;
  background: #f2f7f3;
}
.result-grid { display: grid; gap: 7px; margin-top: 12px; }
.result-grid span { color: var(--muted); font-size: 12px; }
.result-grid a { color: #175e4b; }
.code-big {
  display: inline-block;
  color: var(--jo-red-dark);
  font-size: 23px;
  letter-spacing: 1px;
}

.mosque-tools {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 10px;
  margin: 14px 0;
}

.mosques-stats { display: flex; flex-wrap: wrap; gap: 9px; margin: 12px 0; }
.stat-pill {
  min-width: 115px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 13px;
  background: #edf4ef;
}
.stat-pill strong { color: var(--jo-green); font-size: 20px; }
.stat-pill span { color: var(--muted); font-size: 12px; }

.mosques-list { display: grid; gap: 12px; }
.mosque-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(34, 82, 68, .13);
  border-radius: 19px;
  background: linear-gradient(145deg, #fff, #f8f4eb);
}
.mosque-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  border-radius: 17px 17px 8px 8px;
  background: linear-gradient(145deg, var(--jo-green), var(--jo-green-3));
  box-shadow: inset 0 0 0 2px rgba(212, 174, 104, .35);
}
.mosque-card-top { display: flex; justify-content: space-between; gap: 10px; }
.mosque-card h3 { margin: 0 0 4px; }
.mosque-card p { margin: 0 0 4px; color: var(--muted); font-size: 13px; }
.mosque-card small { color: #708079; }
.mosque-badge {
  align-self: start;
  padding: 5px 8px;
  color: #207555;
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  background: #e5f3eb;
}
.mosque-card-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(239, 224, 189, .45);
}
.mosque-card-code span { color: var(--muted); font-size: 12px; }
.mosque-card-code strong { color: var(--jo-red-dark); letter-spacing: .8px; }
.mosque-card-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.mosque-card-actions .ghost-btn { min-height: 38px; padding: 8px 11px; font-size: 12px; }
.empty-mosques, .loading-card { padding: 28px; text-align: center; color: var(--muted); }

.regions-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.region-card {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid rgba(38, 85, 71, .12);
  border-radius: 14px;
  background: #faf8f2;
}
.region-card strong { color: var(--jo-green); }
.region-card span { color: var(--muted); font-size: 11px; line-height: 1.55; }

@media (max-width: 720px) {
  .admin-shell { padding: 12px 10px 90px; }
  .admin-head { align-items: flex-start; padding: 21px 18px; border-radius: 21px; }
  .admin-head p { display: none; }
  .header-link { padding: 8px 10px; font-size: 12px; }
  .admin-card { padding: 18px 15px; border-radius: 18px; }
  .form-grid, .mosque-tools { grid-template-columns: 1fr; }
  .wide-field { grid-column: auto; }
  .time-item { grid-template-columns: .7fr 1fr 1.1fr; gap: 7px; padding: 12px 10px; }
  .time-prayer { font-size: 15px; }
  .computed-iqamah { grid-column: 1 / -1; }
  .sunrise-item .computed-iqamah { grid-column: 1 / -1; }
  .regions-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mosque-card { grid-template-columns: 43px 1fr; padding: 13px; gap: 10px; }
  .mosque-avatar { width: 43px; height: 43px; font-size: 15px; border-radius: 13px; }
  .mosque-card-code { align-items: flex-start; flex-direction: column; }
  .sticky-actions { bottom: 6px; }
}

@media (max-width: 420px) {
  .time-item { grid-template-columns: 1fr 1fr; }
  .time-prayer { grid-column: 1 / -1; }
  .regions-list { grid-template-columns: 1fr; }
  .card-head, .section-title-row { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
