/* ===========================================================
   Cyoncord — design tokens
   Palette: deep space navy, procyon cyan, violet accent, warm star-white
   Type: Space Grotesk (display), Inter (body), JetBrains Mono (data/handles)
=========================================================== */
:root {
  --bg-void: #0a0c17;
  --bg-deep: #10132a;
  --bg-panel: #151934;
  --bg-panel-2: #1a1f42;
  --bg-elevated: #1f2550;
  --border-soft: #2a3062;
  --border-faint: #202650;

  --star-white: #f4f2ff;
  --text-primary: #e7e6f7;
  --text-secondary: #9a9fc4;
  --text-muted: #6a7099;

  --procyon: #7dd3fc;
  --procyon-bright: #9fe3ff;
  --violet: #a78bfa;
  --violet-soft: #8f7ff0;
  --danger: #f87171;
  --danger-soft: #ef4444;
  --warn: #fbbf24;
  --success: #4ade80;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-glow: 0 0 24px rgba(125, 211, 252, 0.25);
  --shadow-card: 0 12px 40px rgba(3, 5, 16, 0.55);

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.hidden { display: none !important; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select {
  font-family: inherit;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--procyon);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.15);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; font-weight: 500; }
label .hint { color: var(--text-muted); font-weight: 400; }
h1, h2, h3 { font-family: var(--font-display); color: var(--star-white); margin: 0; }
h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-secondary); margin: 20px 0 10px; }
a { color: var(--procyon); }

#starfield {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
  border: none; border-radius: var(--radius-sm);
  padding: 10px 16px; font-weight: 600; font-size: 14px;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--procyon), var(--violet-soft));
  color: #0a0c17;
  box-shadow: 0 4px 18px rgba(125, 211, 252, 0.25);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(125, 211, 252, 0.4); transform: translateY(-1px); }
.btn-secondary { background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border-soft); }
.btn-secondary:hover { background: #262c58; }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-soft); }
.btn-ghost:hover { color: var(--text-primary); border-color: var(--procyon); }
.btn-danger { background: rgba(248, 113, 113, 0.12); color: var(--danger); border: 1px solid rgba(248, 113, 113, 0.35); }
.btn-danger:hover { background: rgba(248, 113, 113, 0.22); }
.icon-btn {
  background: transparent; border: none; color: var(--text-secondary);
  width: 32px; height: 32px; border-radius: var(--radius-sm); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.icon-btn:hover { background: var(--bg-elevated); color: var(--procyon); }

/* ---------- Orbs (server / user icons) ---------- */
.orb {
  --orb-color: var(--procyon);
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--orb-color), #0d1230 78%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 rgba(0,0,0,0), inset 0 0 12px rgba(0,0,0,0.35);
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.orb-core { width: 40%; height: 40%; border-radius: 50%; background: rgba(255,255,255,0.5); filter: blur(3px); }
.orb-sm { width: 36px; height: 36px; }
.orb-lg { width: 84px; height: 84px; margin: 0 auto 16px; }
.orb-btn {
  background: none; border: none; padding: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.orb-btn .orb { border-radius: 26%; transition: border-radius .25s ease, box-shadow .25s ease, transform .2s ease; }
.orb-btn:hover .orb, .orb-btn.active .orb { border-radius: 30%; box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.orb-btn.active::before {
  content: ""; position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 24px; border-radius: var(--radius-full); background: var(--star-white);
}
.avatar { border-radius: 50%; object-fit: cover; background: var(--bg-elevated); }
.avatar-sm { width: 32px; height: 32px; }
.avatar-md { width: 40px; height: 40px; }
.avatar-lg { width: 72px; height: 72px; }

/* ===========================================================
   Auth screen
=========================================================== */
.auth-screen {
  position: fixed; inset: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 50% 20%, rgba(125,211,252,0.08), transparent 60%);
}
.auth-card {
  width: 380px; max-width: 90vw; background: var(--bg-panel);
  border: 1px solid var(--border-faint); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-card); text-align: center;
}
.auth-brand h1 { font-size: 28px; margin-bottom: 4px; letter-spacing: -0.02em; }
.auth-tagline { color: var(--text-muted); font-size: 13px; margin: 0 0 24px; }
.auth-tabs { display: flex; background: var(--bg-elevated); border-radius: var(--radius-full); padding: 4px; margin-bottom: 20px; }
.auth-tab { flex: 1; background: none; border: none; padding: 8px; border-radius: var(--radius-full); color: var(--text-secondary); font-weight: 600; font-size: 13px; transition: all .2s; }
.auth-tab.active { background: linear-gradient(135deg, var(--procyon), var(--violet-soft)); color: #0a0c17; }
.auth-form { text-align: left; }
.auth-form label { text-align: left; }
.form-error { color: var(--danger); font-size: 12.5px; min-height: 16px; margin: -4px 0 10px; }
.form-success { color: var(--success); font-size: 12.5px; min-height: 16px; }
.banned-card { border-color: rgba(248,113,113,0.4); }
.banned-reason { color: var(--text-secondary); margin: 8px 0 24px; }

/* ===========================================================
   App shell
=========================================================== */
.app { position: relative; z-index: 1; height: 100vh; display: flex; flex-direction: column; }
.app-body { flex: 1; display: flex; min-height: 0; }

.announcement-banner {
  background: linear-gradient(90deg, rgba(167,139,250,0.18), rgba(125,211,252,0.18));
  border-bottom: 1px solid var(--border-faint);
  padding: 10px 20px; font-size: 13.5px; color: var(--star-white);
  display: flex; align-items: center; gap: 10px;
}
.announcement-banner::before { content: "📣"; }

.server-rail {
  width: 76px; background: var(--bg-void); display: flex; flex-direction: column;
  align-items: center; padding: 14px 0; gap: 12px; border-right: 1px solid var(--border-faint);
  overflow-y: auto;
}
.rail-divider { width: 28px; height: 1px; background: var(--border-soft); margin: 2px 0; }
.server-list { display: flex; flex-direction: column; gap: 10px; }
.add-server-btn .orb { background: var(--bg-elevated); color: var(--text-secondary); font-size: 20px; }
.add-server-btn { font-size: 20px; color: var(--text-secondary); }

.sidebar {
  width: 260px; background: var(--bg-deep); display: flex; flex-direction: column;
  border-right: 1px solid var(--border-faint);
}
.sidebar-header {
  padding: 18px 16px 12px; font-family: var(--font-display); font-weight: 600;
  color: var(--star-white); font-size: 15px; border-bottom: 1px solid var(--border-faint);
}
.sidebar-scroll { flex: 1; overflow-y: auto; padding: 10px; }
.user-bar {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: var(--bg-panel); border-top: 1px solid var(--border-faint);
}
.user-bar-info { flex: 1; min-width: 0; }
.user-bar-name { font-size: 13.5px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-bar-handle { font-size: 11.5px; color: var(--text-muted); font-family: var(--font-mono); }

.channel-item, .dm-item, .friend-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--radius-sm);
  color: var(--text-secondary); font-size: 14px; margin-bottom: 2px; position: relative;
  transition: background .15s, color .15s;
}
.channel-item:hover, .dm-item:hover, .friend-item:hover { background: var(--bg-panel-2); color: var(--text-primary); }
.channel-item.active, .dm-item.active { background: var(--bg-elevated); color: var(--star-white); }
.channel-item .hash { opacity: .6; }
.section-label { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); padding: 12px 10px 6px; font-weight: 700; }

.main-panel { flex: 1; display: flex; flex-direction: column; min-width: 0; background: var(--bg-panel); }
.empty-state { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--text-muted); }

.chat-view, .voice-view { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.chat-header {
  display: flex; align-items: center; gap: 8px; padding: 14px 18px;
  border-bottom: 1px solid var(--border-faint); font-weight: 600; color: var(--star-white);
}
.chat-header-topic { color: var(--text-muted); font-weight: 400; font-size: 13px; margin-left: 8px; }
.chat-header-actions { margin-left: auto; display: flex; gap: 4px; }

.messages-scroll { flex: 1; overflow-y: auto; padding: 12px 18px; }
.messages-list { display: flex; flex-direction: column; gap: 2px; }

.message-row { display: flex; gap: 12px; padding: 6px 8px; border-radius: var(--radius-sm); position: relative; }
.message-row:hover { background: rgba(255,255,255,0.02); }
.message-row:hover .message-actions { opacity: 1; }
.message-row.flagged { border-left: 2px solid var(--warn); background: rgba(251, 191, 36, 0.04); }
.message-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.message-body { flex: 1; min-width: 0; }
.message-meta { display: flex; align-items: baseline; gap: 8px; }
.message-author { font-weight: 600; color: var(--star-white); font-size: 14.5px; }
.message-time { font-size: 11px; color: var(--text-muted); }
.message-content { color: var(--text-primary); font-size: 14.5px; line-height: 1.5; word-wrap: break-word; white-space: pre-wrap; }
.message-edited { color: var(--text-muted); font-size: 11px; }
.message-reply-ref { font-size: 12.5px; color: var(--text-muted); margin-bottom: 2px; padding-left: 12px; border-left: 2px solid var(--border-soft); }
.message-actions {
  position: absolute; top: -14px; right: 8px; opacity: 0; transition: opacity .15s;
  display: flex; background: var(--bg-elevated); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); overflow: hidden;
}
.message-actions button { padding: 6px 8px; background: none; border: none; color: var(--text-secondary); font-size: 13px; }
.message-actions button:hover { color: var(--procyon); background: rgba(125,211,252,0.08); }

.reply-bar { display: flex; align-items: center; justify-content: space-between; padding: 8px 18px; background: var(--bg-elevated); font-size: 13px; color: var(--text-secondary); }
.reply-bar button { background: none; border: none; color: var(--text-muted); font-size: 14px; }

.composer { display: flex; gap: 10px; padding: 14px 18px 18px; }
.composer input { flex: 1; padding: 12px 16px; border-radius: var(--radius-md); background: var(--bg-elevated); }
.composer-send { border-radius: var(--radius-md); }

.voice-grid { flex: 1; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; padding: 24px; align-content: start; }
.voice-tile { background: var(--bg-elevated); border-radius: var(--radius-md); padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; border: 1px solid var(--border-faint); }
.voice-tile.speaking { border-color: var(--procyon); box-shadow: var(--shadow-glow); }
.voice-tile-name { font-size: 13px; color: var(--text-secondary); }
.voice-controls { display: flex; justify-content: center; gap: 12px; padding: 20px; border-top: 1px solid var(--border-faint); }

.member-list { width: 220px; background: var(--bg-deep); border-left: 1px solid var(--border-faint); overflow-y: auto; padding: 14px 10px; }
.member-list.collapsed { display: none; }
.member-list-header { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); padding: 4px 6px 10px; font-weight: 700; }
.member-row { display: flex; align-items: center; gap: 10px; padding: 6px; border-radius: var(--radius-sm); cursor: pointer; }
.member-row:hover { background: var(--bg-panel-2); }
.member-row-name { font-size: 13.5px; color: var(--text-primary); }
.member-role-badge { font-size: 10px; padding: 1px 6px; border-radius: var(--radius-full); border: 1px solid currentColor; margin-left: 6px; }

.badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: .04em; }
.badge-owner { background: rgba(167,139,250,0.18); color: var(--violet); }
.badge-admin { background: rgba(125,211,252,0.18); color: var(--procyon); }
.badge-banned { background: rgba(248,113,113,0.18); color: var(--danger); }
.badge-active { background: rgba(248,113,113,0.25); color: var(--danger); }
.badge-inactive { background: rgba(154,159,196,0.15); color: var(--text-muted); }
.badge-flagged { background: rgba(251,191,36,0.18); color: var(--warn); }

/* ===========================================================
   Modals
=========================================================== */
.modal-backdrop { position: fixed; inset: 0; background: rgba(4,5,14,0.65); backdrop-filter: blur(3px); z-index: 20; }
.modal { position: fixed; inset: 0; z-index: 21; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal-card {
  background: var(--bg-panel); border: 1px solid var(--border-faint); border-radius: var(--radius-lg);
  width: 440px; max-width: 100%; max-height: 86vh; overflow-y: auto; box-shadow: var(--shadow-card);
}
.modal-card.wide { width: 620px; }
.modal-card.xwide { width: 900px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border-faint); }
.modal-body { padding: 20px 22px; }
.modal-tabs { display: flex; gap: 4px; padding: 12px 22px 0; border-bottom: 1px solid var(--border-faint); overflow-x: auto; }
.modal-tab { background: none; border: none; color: var(--text-secondary); padding: 10px 14px; font-size: 13px; font-weight: 600; border-bottom: 2px solid transparent; white-space: nowrap; }
.modal-tab.active { color: var(--procyon); border-color: var(--procyon); }
.settings-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.divider-or { text-align: center; color: var(--text-muted); font-size: 12px; margin: 16px 0; position: relative; }
.divider-or::before, .divider-or::after { content: ""; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border-soft); }
.divider-or::before { left: 0; } .divider-or::after { right: 0; }

.invite-code-display { font-family: var(--font-mono); font-size: 20px; letter-spacing: .1em; background: var(--bg-elevated); border-radius: var(--radius-sm); padding: 14px; text-align: center; color: var(--procyon); }

.profile-modal-body { text-align: center; }
.profile-name { font-family: var(--font-display); font-size: 18px; color: var(--star-white); margin-top: 10px; }
.profile-handle { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-muted); margin-bottom: 16px; }
.profile-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

.admin-panel-body { min-height: 320px; }
.list-row { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius-sm); border: 1px solid var(--border-faint); margin-bottom: 8px; background: var(--bg-panel-2); }
.list-row-main { flex: 1; min-width: 0; }
.list-row-title { font-weight: 600; font-size: 13.5px; color: var(--text-primary); }
.list-row-sub { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }
.list-row-actions { display: flex; gap: 6px; flex-shrink: 0; }

.profile-detail-card { background: var(--bg-panel-2); border: 1px solid var(--border-faint); border-radius: var(--radius-md); padding: 16px; margin-top: 14px; }
.profile-detail-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 14px 0; }
.stat-box { background: var(--bg-elevated); border-radius: var(--radius-sm); padding: 10px; text-align: center; }
.stat-box .num { font-family: var(--font-display); font-size: 20px; color: var(--procyon); }
.stat-box .label { font-size: 10.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.punish-actions { display: flex; gap: 8px; margin: 14px 0; flex-wrap: wrap; }
.punish-actions textarea, .punish-actions input { flex: 1; min-width: 180px; }
.mini-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.mini-table th { text-align: left; color: var(--text-muted); font-weight: 600; padding: 6px 8px; border-bottom: 1px solid var(--border-faint); text-transform: uppercase; font-size: 10.5px; }
.mini-table td { padding: 8px; border-bottom: 1px solid var(--border-faint); color: var(--text-secondary); vertical-align: top; }

textarea { resize: vertical; width: 100%; }

/* ---------- Toasts ---------- */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 40; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--bg-elevated); border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 13.5px; color: var(--text-primary); box-shadow: var(--shadow-card);
  min-width: 220px;
}
.toast.error { border-color: rgba(248,113,113,0.5); color: var(--danger); }
.toast.success { border-color: rgba(74,222,128,0.4); color: var(--success); }

/* ---------- Context menu ---------- */
.context-menu {
  position: fixed; z-index: 50; min-width: 190px;
  background: var(--bg-elevated); border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); padding: 6px; overflow: hidden;
}
.context-menu-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px;
  font-size: 13.5px; color: var(--text-primary); cursor: pointer; white-space: nowrap;
}
.context-menu-item:hover { background: rgba(125,211,252,0.12); color: var(--procyon); }
.context-menu-item.danger { color: var(--danger); }
.context-menu-item.danger:hover { background: rgba(248,113,113,0.12); }
.context-menu-divider { height: 1px; background: var(--border-soft); margin: 6px 2px; }
.context-menu-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); padding: 6px 10px 2px; }

/* ---------- Categories ---------- */
.category-header {
  display: flex; align-items: center; gap: 6px; padding: 10px 8px 4px; cursor: pointer;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted);
  user-select: none;
}
.category-header:hover { color: var(--text-secondary); }
.category-header .chevron { transition: transform .15s ease; display: inline-block; font-size: 9px; }
.category-header.collapsed .chevron { transform: rotate(-90deg); }
.category-add-btn { margin-left: auto; opacity: 0; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.category-header:hover .category-add-btn { opacity: 1; }
.category-add-btn:hover { background: var(--bg-panel-2); color: var(--procyon); }
.category-channels.collapsed { display: none; }
.sidebar-empty-space { flex: 1; min-height: 40px; }

/* ---------- Channel type picker ---------- */
.channel-type-btn { flex: 1; }
.channel-type-btn.active { background: linear-gradient(135deg, var(--procyon), var(--violet-soft)); color: #0a0c17; border-color: transparent; }

/* ---------- Permission rows ---------- */
.perm-group-title { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); font-weight: 700; margin: 18px 0 8px; }
.perm-row { display: flex; align-items: center; gap: 12px; padding: 9px 4px; border-bottom: 1px solid var(--border-faint); }
.perm-row-info { flex: 1; min-width: 0; }
.perm-row-label { font-size: 13.5px; color: var(--text-primary); font-weight: 500; }
.perm-row-desc { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.perm-row-unenforced { font-size: 10px; color: var(--warn); margin-left: 6px; font-weight: 600; }
.perm-toggle { flex-shrink: 0; }
.perm-toggle input { width: 36px; height: 20px; accent-color: var(--procyon); cursor: pointer; }

.tristate-group { display: flex; border-radius: var(--radius-full); overflow: hidden; border: 1px solid var(--border-soft); flex-shrink: 0; }
.tristate-btn { width: 30px; height: 26px; background: var(--bg-panel-2); border: none; color: var(--text-muted); font-size: 12px; display: flex; align-items: center; justify-content: center; }
.tristate-btn.deny.active { background: rgba(248,113,113,0.85); color: #1a0a0a; }
.tristate-btn.neutral.active { background: var(--bg-elevated); color: var(--text-secondary); }
.tristate-btn.allow.active { background: rgba(74,222,128,0.85); color: #06210f; }
.tristate-btn + .tristate-btn { border-left: 1px solid var(--border-soft); }
.tristate-btn:hover { filter: brightness(1.1); }

.role-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--radius-full);
  background: var(--bg-panel-2); border: 1px solid var(--border-faint); font-size: 12.5px; cursor: pointer; margin: 3px;
}
.role-pill.active { border-color: var(--procyon); background: rgba(125,211,252,0.1); }
.role-color-dot { width: 8px; height: 8px; border-radius: 50%; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--border-soft); border-radius: 4px; }
::-webkit-scrollbar-track { background: transparent; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .member-list { position: fixed; right: 0; top: 0; bottom: 0; z-index: 15; }
  .sidebar { position: fixed; left: 76px; top: 0; bottom: 0; z-index: 15; transform: translateX(-110%); transition: transform .25s ease; }
  .sidebar.mobile-open { transform: translateX(0); }
}

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