:root {
  color-scheme: dark;
  --bg: #080d20;
  --bg-deep: #050816;
  --glass: rgba(21, 29, 58, 0.64);
  --glass-strong: rgba(26, 34, 68, 0.84);
  --glass-border: rgba(255, 255, 255, 0.11);
  --text: #f8f9ff;
  --muted: #aeb9d9;
  --muted-2: #7f8cad;
  --purple: #8d63ff;
  --purple-2: #b184ff;
  --cyan: #2de2e6;
  --cyan-2: #52f0d7;
  --blue: #6f9bff;
  --pink: #ff7bc7;
  --danger: #ff6685;
  --success: #47d9b1;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { min-width: 320px; width: 100%; background: var(--bg-deep); }

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(92, 70, 200, 0.26), transparent 34rem),
    radial-gradient(circle at 90% 30%, rgba(22, 199, 210, 0.16), transparent 32rem),
    linear-gradient(145deg, #070b1a 0%, #0b1029 48%, #071326 100%);
}

button, input, select { font: inherit; }
button, select { cursor: pointer; }
button:disabled { cursor: wait; opacity: 0.58; }

button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(45, 226, 230, 0.65);
  outline-offset: 3px;
}

.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;
}

.stars,
.stars::before,
.stars::after {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(152, 183, 255, 0.45) 0 1px, transparent 1.5px);
  background-position: 20px 30px, 70px 90px;
  background-size: 120px 140px, 170px 190px;
  opacity: 0.24;
}

.stars::before { transform: rotate(18deg) scale(1.2); opacity: 0.23; }
.stars::after { transform: rotate(-11deg) scale(1.4); opacity: 0.14; }

.ambient {
  position: fixed;
  z-index: -2;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: 0.2;
}

.ambient-one { top: -16rem; right: -8rem; background: var(--purple); }
.ambient-two { bottom: -18rem; left: -8rem; background: var(--cyan); }

.page-shell {
  width: min(1480px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 64px;
}

.glass {
  border: 1px solid var(--glass-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)), var(--glass);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  backdrop-filter: blur(22px) saturate(120%);
}

.login-view {
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
}

.login-card {
  width: 100%;
  max-width: 460px;
  padding: 46px;
  border-radius: 34px;
  text-align: center;
}

.quantum-mark {
  position: relative;
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(177, 132, 255, 0.22), rgba(45, 226, 230, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 40px rgba(106, 74, 219, 0.3);
}

.quantum-mark::before,
.quantum-mark::after,
.quantum-mark span {
  position: absolute;
  display: block;
  border-radius: 50%;
  content: "";
}

.quantum-mark::before {
  width: 42px;
  height: 42px;
  background: radial-gradient(circle at 38% 30%, #505278 0, #18162d 40%, #060714 76%);
  box-shadow: 0 0 24px rgba(45, 226, 230, 0.55);
}

.quantum-mark::after {
  width: 58px;
  height: 18px;
  border: 1px solid rgba(78, 228, 240, 0.76);
  transform: rotate(-18deg);
}

.quantum-mark span {
  width: 6px;
  height: 6px;
  right: 13px;
  top: 18px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.quantum-mark-small {
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 18px;
}

.quantum-mark-small::before { width: 29px; height: 29px; }
.quantum-mark-small::after { width: 39px; height: 12px; }
.quantum-mark-small span { width: 4px; height: 4px; right: 8px; top: 12px; }

.eyebrow {
  margin: 0 0 4px;
  color: var(--cyan);
  font: 700 0.72rem/1.2 "Quicksand", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: "Quicksand", sans-serif; }

.login-card h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 7vw, 2.7rem);
  letter-spacing: -0.045em;
}

.login-copy {
  max-width: 33rem;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.login-form {
  display: grid;
  gap: 14px;
  text-align: left;
}

.login-form .field {
  margin: 0;
}

.login-form .button {
  margin-top: 8px;
}

.privacy-note {
  margin: 18px 0 0;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: var(--text);
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-wide { width: 100%; }
.button-wide svg { fill: currentColor; stroke: none; }

.button-primary {
  background: linear-gradient(135deg, var(--purple), #6f66ff 52%, #4d9de8);
  box-shadow: 0 10px 28px rgba(112, 82, 237, 0.27), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button-primary:hover { box-shadow: 0 13px 34px rgba(112, 82, 237, 0.42); }

.button-app {
  background: linear-gradient(135deg, #1cbf9b, #2de2e6 58%, #5de5c6);
  box-shadow: 0 10px 28px rgba(45, 226, 198, 0.2), inset 0 1px rgba(255, 255, 255, 0.24);
}

.button-app:hover { box-shadow: 0 13px 34px rgba(45, 226, 198, 0.34); }

.button-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.button-ghost:hover { border-color: rgba(45, 226, 230, 0.28); background: rgba(255, 255, 255, 0.085); }

.dashboard-view { display: block; }
.dashboard-view[hidden], .login-view[hidden] { display: none; }

.topbar {
  min-height: 82px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
}

.brand-block, .account-block, .heading-actions, .filter-row, .modal-actions {
  display: flex;
  align-items: center;
}

.brand-block { gap: 14px; }
.brand-block h1 { margin: 0; font-size: 1.4rem; }

.account-block { gap: 14px; }
.account-copy { display: grid; text-align: right; }
.account-copy strong { font-size: 0.95rem; }
.account-copy span { color: var(--muted); font-size: 0.78rem; }

.icon-button {
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  transition: background 160ms ease, transform 160ms ease;
}

.icon-button:hover { background: rgba(255, 255, 255, 0.11); transform: translateY(-1px); }
.icon-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.dashboard-heading {
  padding: 48px 6px 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-heading h2 { margin-bottom: 6px; font-size: clamp(1.75rem, 4vw, 2.55rem); letter-spacing: -0.035em; }
.dashboard-heading > div > p:last-child { margin: 0; color: var(--muted); }
.heading-actions { gap: 10px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.stat-card {
  min-height: 116px;
  padding: 21px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 22px;
}

.stat-total { background: linear-gradient(145deg, rgba(141, 99, 255, 0.24), rgba(45, 226, 230, 0.07)), var(--glass); }

.stat-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: var(--purple-2);
  background: rgba(141, 99, 255, 0.13);
}

.stat-icon.today { color: #b9c6e9; background: rgba(185, 198, 233, 0.1); }
.stat-icon.seven { color: var(--success); background: rgba(71, 217, 177, 0.1); }
.stat-icon.thirty { color: var(--blue); background: rgba(111, 155, 255, 0.1); }
.stat-icon.active { color: var(--cyan); background: rgba(45, 226, 230, 0.1); }
.stat-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.stat-card div:last-child { min-width: 0; display: grid; gap: 4px; }
.stat-card span { color: var(--muted); font-size: 0.79rem; white-space: nowrap; }
.stat-card strong { font-size: clamp(1.6rem, 3vw, 2rem); letter-spacing: -0.04em; }

.content-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(290px, 0.8fr);
  gap: 15px;
}

.chart-card, .platform-card, .affiliates-card { border-radius: 25px; }
.chart-card, .platform-card { min-height: 375px; padding: 26px; }

.card-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.card-heading h3 { margin: 0; font-size: 1.28rem; }
.metric-pill { padding: 7px 11px; border-radius: 999px; color: var(--cyan); background: rgba(45, 226, 230, 0.09); font-size: 0.76rem; }

.chart-wrap { min-height: 265px; display: grid; align-items: end; overflow: hidden; }
.daily-chart { width: 100%; min-width: 520px; overflow: visible; }
.daily-chart .grid-line { stroke: rgba(255,255,255,.08); stroke-width: 1; }
.daily-chart .area { fill: url(#chartGradient); }
.daily-chart .line { fill: none; stroke: var(--cyan); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 7px rgba(45,226,230,.55)); }
.daily-chart .point { fill: #0d1732; stroke: var(--cyan); stroke-width: 3; }
.daily-chart .axis-label { fill: var(--muted-2); font: 12px "Outfit", sans-serif; }
.chart-empty { min-height: 250px; display: grid; place-items: center; color: var(--muted); }
.chart-empty[hidden] { display: none; }

.donut-layout { min-height: 290px; display: grid; place-items: center; align-content: center; gap: 28px; }

.donut {
  --ios-size: 0deg;
  --android-size: 0deg;
  --desktop-size: 0deg;
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--purple-2) 0 var(--ios-size), var(--cyan-2) var(--ios-size) var(--android-size), var(--blue) var(--android-size) var(--desktop-size), var(--pink) var(--desktop-size) 360deg);
  box-shadow: 0 0 42px rgba(121, 94, 255, 0.18);
}

.donut::before {
  grid-area: 1/1;
  width: 104px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #10172f;
  box-shadow: inset 0 0 22px rgba(0,0,0,.22);
  content: "";
}

.donut span { z-index: 1; font-size: 1.65rem; font-weight: 700; }

.legend { width: 100%; max-width: 270px; margin: 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.legend li { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; color: var(--muted); }
.legend li strong { color: var(--text); font-size: 0.85rem; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; }
.ios-dot { background: var(--purple-2); }
.android-dot { background: var(--cyan-2); }
.desktop-dot { background: var(--blue); }
.other-dot { background: var(--pink); }

.affiliates-card { margin-top: 15px; padding: 26px; }
.affiliates-heading { align-items: end; }
.table-scope { max-width: 520px; margin: 7px 0 0; color: var(--muted-2); font-size: .78rem; line-height: 1.45; }
.filter-row { justify-content: flex-end; gap: 9px; flex-wrap: wrap; }

.search-box, .select-box {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.search-box { min-width: 220px; padding: 0 12px; }
.search-box svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.search-box input, .select-box select { min-width: 0; border: 0; outline: 0; color: var(--text); background: transparent; }
.search-box input { width: 100%; }
.search-box input::placeholder { color: var(--muted-2); }
.select-box { position: relative; padding: 0 5px 0 10px; }
.select-box select { height: 100%; padding: 0 26px 0 0; color-scheme: dark; }

.loading-state, .empty-state { min-height: 280px; display: grid; place-items: center; align-content: center; gap: 13px; color: var(--muted); text-align: center; }
.loading-state[hidden], .empty-state[hidden] { display: none; }
.spinner { width: 32px; height: 32px; border: 3px solid rgba(255,255,255,.12); border-top-color: var(--cyan); border-radius: 50%; animation: spin 800ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 18px; color: var(--cyan); background: rgba(45,226,230,.1); font-size: 1.8rem; }
.empty-state h4 { margin: 0; font-size: 1.1rem; }
.empty-state p { margin: 0; color: var(--muted-2); }

.table-wrap, .details-table-wrap { margin-top: 22px; overflow-x: auto; }
.table-wrap[hidden] { display: none; }
table { width: 100%; border-collapse: collapse; min-width: 960px; }
th, td { padding: 16px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.07); }
th { color: var(--muted-2); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
td { color: #e9edff; font-size: 0.88rem; }
tbody tr { transition: background 140ms ease; }
tbody tr:hover { background: rgba(255,255,255,.025); }

.affiliate-cell { display: grid; gap: 4px; }
.affiliate-cell strong { font-size: 0.94rem; }
.affiliate-cell code { color: var(--cyan); font: 600 0.78rem "Outfit", sans-serif; }
.link-cell { min-width: 250px; display: flex; align-items: center; gap: 7px; }
.link-cell span { max-width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); }
.mini-button, .more-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  color: var(--muted);
  background: rgba(255,255,255,.05);
}
.mini-button:hover, .more-button:hover { color: var(--cyan); background: rgba(45,226,230,.08); }
.mini-button svg, .more-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.click-count { font-size: 1rem; font-weight: 700; }

.status-toggle { display: inline-flex; align-items: center; gap: 8px; }
.status-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle-track { width: 38px; height: 23px; padding: 3px; border-radius: 99px; background: rgba(255,255,255,.15); transition: background 160ms ease; }
.toggle-track::after { width: 17px; height: 17px; display: block; border-radius: 50%; background: #eef2ff; box-shadow: 0 2px 6px rgba(0,0,0,.3); transition: transform 160ms ease; content: ""; }
.status-toggle input:checked + .toggle-track { background: var(--success); }
.status-toggle input:checked + .toggle-track::after { transform: translateX(15px); }
.status-toggle input:focus-visible + .toggle-track { outline: 3px solid rgba(45,226,230,.55); outline-offset: 3px; }
.status-label { min-width: 42px; color: var(--muted); font-size: .79rem; }

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  top: 24px;
  max-width: min(380px, calc(100% - 48px));
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  color: var(--text);
  background: rgba(16, 23, 47, 0.94);
  box-shadow: 0 16px 40px rgba(0,0,0,.32);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.visible { transform: translateY(0); opacity: 1; }
.toast.error { border-color: rgba(255,102,133,.35); }

.modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 20px;
  border: 0;
  background: transparent;
}
.modal::backdrop { background: rgba(3, 6, 18, 0.72); backdrop-filter: blur(8px); }
.modal[open] { display: grid; place-items: center; }
.modal-card { width: min(540px, 100%); padding: 28px; border-radius: 26px; }
.modal-wide .modal-card { width: min(820px, 100%); }
.modal-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.modal-heading h2 { margin: 0; }
.field { display: grid; gap: 8px; margin-top: 18px; }
.field > span { color: #e9edff; font-size: 0.88rem; font-weight: 600; }
.field em { color: var(--muted-2); font-style: normal; font-weight: 500; }
.field input {
  width: 100%;
  min-height: 51px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  outline: 0;
  color: var(--text);
  background: rgba(255,255,255,.055);
}
.field input:focus { border-color: rgba(45,226,230,.48); }
.field small { color: var(--muted-2); }
.id-field { display: grid; grid-template-columns: auto minmax(80px, 1fr); align-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.055); overflow: hidden; }
.id-field span { padding-left: 14px; color: var(--muted-2); font-size: .85rem; white-space: nowrap; }
.id-field input { border: 0; border-radius: 0; background: transparent; }
.modal-actions { justify-content: flex-end; gap: 10px; margin-top: 28px; }

.app-result h3 { margin: 4px 0 12px; font-size: 1.42rem; }
.app-result > p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.setup-steps { margin: 18px 0; padding-left: 22px; color: var(--muted); line-height: 1.6; }
.setup-steps strong { color: var(--text); }
.created-app-links { display: grid; gap: 9px; max-height: 260px; overflow: auto; }
.created-app-link { padding: 12px 13px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.04); }
.created-app-link > div { min-width: 0; display: grid; gap: 4px; }
.created-app-link strong { font-size: .87rem; }
.created-app-link span { overflow: hidden; color: var(--cyan); font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.created-app-link .mini-button { width: auto; min-width: 62px; padding: 0 10px; font-size: .77rem; }

.details-summary { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.details-metric { padding: 15px; display: grid; gap: 5px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(255,255,255,.04); }
.details-metric span { color: var(--muted); font-size: .76rem; }
.details-metric strong { font-size: 1.25rem; }
.details-table-wrap { max-height: min(420px, 55vh); }
.details-table-wrap table { min-width: 620px; }

@media (max-width: 1120px) {
  .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .content-grid { grid-template-columns: 1fr; }
  .platform-card { min-height: auto; }
  .donut-layout { min-height: 220px; grid-template-columns: auto minmax(180px, 260px); }
  .affiliates-heading { align-items: start; flex-direction: column; }
  .filter-row { width: 100%; justify-content: start; }
}

@media (max-width: 720px) {
  .page-shell { width: 100%; max-width: none; margin: 0; padding: 12px 12px 36px; }
  .dashboard-view { width: 100%; min-width: 0; }
  .topbar { padding: 11px; border-radius: 20px; }
  .account-copy { display: none; }
  .dashboard-heading { padding: 34px 2px 20px; align-items: start; flex-direction: column; }
  .heading-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .heading-actions .button { min-width: 0; padding-inline: 10px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-card { min-height: 106px; padding: 16px; }
  .stat-card:last-child { grid-column: 1 / -1; }
  .stat-icon { width: 40px; height: 40px; }
  .chart-card, .platform-card, .affiliates-card { width: 100%; min-width: 0; padding: 20px; }
  .chart-wrap { overflow-x: auto; }
  .filter-row { display: grid; grid-template-columns: 1fr 1fr; }
  .search-box { min-width: 0; grid-column: 1 / -1; }
  .select-box select { width: 100%; }
  .donut-layout { grid-template-columns: 1fr; }
  .details-summary { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .login-card { padding: 36px 22px; border-radius: 28px; }
  .brand-block .eyebrow { display: none; }
  .brand-block h1 { font-size: 1.18rem; }
  .button { min-height: 47px; padding-inline: 14px; }
  .button svg { width: 18px; }
  .heading-actions .button { font-size: .84rem; }
  .stats-grid { gap: 10px; }
  .stat-card { gap: 10px; }
  .stat-card span { white-space: normal; }
  .stat-card strong { font-size: 1.5rem; }
  .filter-row { grid-template-columns: 1fr; }
  .search-box { grid-column: auto; }
  .id-field { grid-template-columns: 1fr; }
  .id-field span { padding: 11px 14px 0; white-space: normal; }
  .modal { padding: 10px; }
  .modal-card { padding: 22px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
