/* StockVerse design system — CSS variables drive full dark/light theming */
:root, [data-theme="dark"] {
  --bg: #0f0f23;
  --bg-soft: #16172e;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.08);
  --surface-solid: #1b1c36;
  --border: rgba(255, 255, 255, 0.09);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #818cf8;
  --accent-strong: #6366f1;
  --accent-soft: rgba(129, 140, 248, 0.14);
  --green: #34d399;
  --green-soft: rgba(52, 211, 153, 0.13);
  --red: #f87171;
  --red-soft: rgba(248, 113, 113, 0.13);
  --amber: #fbbf24;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  --glow: 0 0 24px rgba(129, 140, 248, 0.25);
  --skel1: rgba(255,255,255,0.05);
  --skel2: rgba(255,255,255,0.12);
}
[data-theme="light"] {
  --bg: #eef0f8;
  --bg-soft: #e6e9f4;
  --surface: rgba(255, 255, 255, 0.75);
  --surface-2: rgba(255, 255, 255, 0.95);
  --surface-solid: #ffffff;
  --border: rgba(30, 41, 59, 0.1);
  --text: #1e293b;
  --muted: #64748b;
  --accent: #6366f1;
  --accent-strong: #4f46e5;
  --accent-soft: rgba(99, 102, 241, 0.1);
  --green: #059669;
  --green-soft: rgba(5, 150, 105, 0.1);
  --red: #dc2626;
  --red-soft: rgba(220, 38, 38, 0.09);
  --amber: #d97706;
  --shadow: 0 8px 30px rgba(30, 41, 59, 0.12);
  --glow: 0 0 24px rgba(99, 102, 241, 0.18);
  --skel1: rgba(30,41,59,0.06);
  --skel2: rgba(30,41,59,0.13);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px; line-height: 1.5;
  min-height: 100dvh;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 500px at 85% -10%, var(--accent-soft), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, var(--accent-soft), transparent 60%);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 15px; }
::selection { background: var(--accent-soft); }

/* ---------- app shell ---------- */
.app-shell { display: flex; min-height: 100dvh; }
.main-col { flex: 1; min-width: 0; display: flex; flex-direction: column; }
main#page {
  flex: 1; width: 100%; max-width: 1180px; margin: 0 auto;
  padding: 16px 16px calc(86px + env(safe-area-inset-bottom));
  animation: pageIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- sidebar (desktop / tablet rail) ---------- */
#sidebar {
  display: none; position: sticky; top: 0; height: 100dvh; overflow-y: auto;
  scrollbar-width: thin; flex-shrink: 0; z-index: 30;
  background: var(--surface); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-right: 1px solid var(--border);
  padding: 18px 12px calc(18px + env(safe-area-inset-bottom));
}
#sidebar .logo { display: flex; align-items: center; gap: 10px; padding: 4px 10px 18px; font-weight: 800; font-size: 19px; letter-spacing: -0.3px; }
#sidebar .logo .mark { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #fff; box-shadow: var(--glow); }
.nav-group { margin-bottom: 14px; }
.nav-group .nav-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); padding: 0 12px 6px; }
.nav-item {
  display: flex; align-items: center; gap: 11px; padding: 8.5px 12px; border-radius: 11px;
  color: var(--muted); font-weight: 500; font-size: 14px; cursor: pointer; position: relative;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.nav-item i { width: 19px; text-align: center; font-size: 15px; }
.nav-item:hover { background: var(--surface-2); color: var(--text); transform: translateX(2px); }
.nav-item.active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.nav-item .badge-dot { position: absolute; right: 12px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; }

/* tablet: icon rail */
@media (min-width: 768px) {
  #sidebar { display: block; width: 76px; }
  #sidebar .logo span, .nav-group .nav-label, #sidebar .nav-item span { display: none; }
  #sidebar .nav-item { justify-content: center; padding: 12px 0; }
  #sidebar .nav-item .badge-dot { right: 8px; top: 4px; }
  main#page { padding-bottom: 32px; }
}
/* laptop/desktop: full sidebar */
@media (min-width: 1100px) {
  #sidebar { width: 232px; }
  #sidebar .logo span, .nav-group .nav-label, #sidebar .nav-item span { display: inline; }
  #sidebar .nav-item { justify-content: flex-start; padding: 8.5px 12px; }
}

/* ---------- top bar ---------- */
#topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 10px;
  padding: calc(10px + env(safe-area-inset-top)) 16px 10px;
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
#topbar .page-title { font-weight: 700; font-size: 17px; margin-right: auto; display: flex; align-items: center; gap: 9px; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); cursor: pointer; position: relative;
  display: grid; place-items: center; font-size: 15px; flex-shrink: 0;
  transition: transform 0.15s ease, background 0.18s ease, box-shadow 0.2s ease;
}
.icon-btn:hover { background: var(--surface-2); transform: translateY(-1px); box-shadow: var(--shadow); }
.icon-btn:active { transform: scale(0.93); }
.icon-btn .badge-dot { position: absolute; top: -4px; right: -4px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px; background: var(--red); color: #fff; font-size: 10.5px; font-weight: 700; display: grid; place-items: center; border: 2px solid var(--bg); }
.market-pill { display: none; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--muted); padding: 7px 12px; border-radius: 99px; border: 1px solid var(--border); background: var(--surface); white-space: nowrap; }
.market-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); }
.market-pill.open .dot { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }
@media (min-width: 640px) { .market-pill { display: inline-flex; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.search-trigger { display: none; align-items: center; gap: 8px; min-width: 220px; padding: 8px 13px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--muted); cursor: pointer; font-size: 13.5px; transition: border-color .2s ease; }
.search-trigger:hover { border-color: var(--accent); }
.search-trigger kbd { margin-left: auto; font-size: 10.5px; padding: 2px 6px; border-radius: 5px; border: 1px solid var(--border); background: var(--surface-2); font-family: inherit; }
@media (min-width: 900px) { .search-trigger { display: flex; } #search-icon-btn { display: none; } }

/* ---------- bottom nav (mobile) ---------- */
#bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: flex-end; justify-content: space-around;
  padding: 6px 8px calc(8px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
}
#bottomnav .bn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--muted); font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 12px;
  transition: color 0.18s ease, transform 0.18s ease; min-width: 56px;
}
#bottomnav .bn-item i { font-size: 18px; transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); }
#bottomnav .bn-item.active { color: var(--accent); }
#bottomnav .bn-item.active i { transform: translateY(-2px) scale(1.12); }
#bottomnav .bn-item:active { transform: scale(0.9); }
#bottomnav .bn-fab {
  width: 52px; height: 52px; border-radius: 50%; border: none; margin-top: -22px; cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #fff; font-size: 20px;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45); display: grid; place-items: center;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}
#bottomnav .bn-fab:active { transform: scale(0.88); }
/* hide bottom nav once the sidebar is shown (placed after the base rule so it wins on source order) */
@media (min-width: 768px) { #bottomnav { display: none; } }

/* ---------- cards & components ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 18px; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card.hoverable:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.card-title { font-weight: 700; font-size: 15.5px; margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.card-title i { color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 600; font-size: 14px; cursor: pointer; user-select: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #fff;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease, opacity .2s;
}
.btn:hover { filter: brightness(1.08); box-shadow: var(--glow); }
.btn:active { transform: scale(0.96); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn.secondary { background: var(--surface-2); color: var(--text); border-color: var(--border); }
.btn.secondary:hover { box-shadow: none; background: var(--surface); }
.btn.ghost { background: transparent; color: var(--accent); border-color: var(--border); }
.btn.danger { background: var(--red-soft); color: var(--red); border-color: transparent; }
.btn.success { background: var(--green-soft); color: var(--green); }
.btn.buy { background: linear-gradient(135deg, #10b981, #059669); }
.btn.sell { background: linear-gradient(135deg, #ef4444, #dc2626); }
.btn.sm { padding: 7px 13px; font-size: 13px; border-radius: 10px; }
.btn.block { width: 100%; }

.input, select.input, textarea.input {
  width: 100%; padding: 11px 14px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface); color: var(--text);
  outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.input::placeholder { color: var(--muted); opacity: 0.7; }
label.field { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
select.input option { background: var(--surface-solid); color: var(--text); }

.chip { display: inline-flex; align-items: center; gap: 5px; padding: 5px 11px; border-radius: 99px; font-size: 12.5px; font-weight: 600; background: var(--surface-2); color: var(--muted); border: 1px solid var(--border); cursor: pointer; transition: all 0.18s ease; white-space: nowrap; }
.chip:hover { color: var(--text); }
.chip.active { background: var(--accent-soft); color: var(--accent); border-color: var(--accent); }
.chip-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }

.pos { color: var(--green); } .neg { color: var(--red); }
.pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 99px; font-size: 12px; font-weight: 700; }
.pill.pos { background: var(--green-soft); } .pill.neg { background: var(--red-soft); }
.pill.neutral { background: var(--surface-2); color: var(--muted); }

.avatar { display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--border); flex-shrink: 0; font-size: 16px; width: 38px; height: 38px; }
.avatar.sm { width: 30px; height: 30px; font-size: 13px; }
.avatar.lg { width: 64px; height: 64px; font-size: 30px; }
.avatar.online::after { content: ''; position: absolute; }
.level-badge { display: inline-flex; align-items: center; gap: 3px; font-size: 10.5px; font-weight: 800; padding: 1.5px 7px; border-radius: 99px; background: var(--accent-soft); color: var(--accent); vertical-align: middle; }

/* ---------- skeleton shimmer ---------- */
.skel { position: relative; overflow: hidden; background: var(--skel1); border-radius: 10px; min-height: 14px; }
.skel::after { content: ''; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, var(--skel2), transparent); animation: shimmer 1.4s infinite; }
@keyframes shimmer { 100% { transform: translateX(100%); } }

/* ---------- empty state ---------- */
.empty-state { text-align: center; padding: 44px 20px; color: var(--muted); animation: pageIn 0.4s ease; }
.empty-state .es-icon { font-size: 42px; margin-bottom: 12px; opacity: 0.85; }
.empty-state .es-title { font-weight: 700; color: var(--text); font-size: 16px; margin-bottom: 6px; }
.empty-state .es-msg { font-size: 13.5px; max-width: 340px; margin: 0 auto 16px; }

/* ---------- toasts ---------- */
#toasts { position: fixed; top: calc(14px + env(safe-area-inset-top)); left: 50%; transform: translateX(-50%); z-index: 1000; display: flex; flex-direction: column; gap: 8px; width: min(420px, calc(100vw - 28px)); pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 14px;
  background: var(--surface-solid); border: 1px solid var(--border); box-shadow: var(--shadow);
  font-size: 14px; font-weight: 500; pointer-events: auto;
  animation: toastIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.out { animation: toastOut 0.3s ease forwards; }
.toast i { flex-shrink: 0; }
.toast.success i { color: var(--green); } .toast.error i { color: var(--red); }
.toast.info i { color: var(--accent); } .toast.xp i { color: var(--amber); }
@keyframes toastIn { from { opacity: 0; transform: translateY(-16px) scale(0.95); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(-10px) scale(0.96); } }

/* ---------- modals & sheets ---------- */
.overlay { position: fixed; inset: 0; z-index: 900; background: rgba(8, 8, 20, 0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: grid; place-items: center; padding: 18px; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } }
.modal { width: min(520px, 100%); max-height: 86dvh; overflow-y: auto; background: var(--surface-solid); border: 1px solid var(--border); border-radius: 20px; padding: 22px; box-shadow: var(--shadow); animation: modalIn 0.32s cubic-bezier(0.34, 1.4, 0.64, 1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: none; } }
.sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; background: var(--surface-solid); border-top: 1px solid var(--border); border-radius: 22px 22px 0 0; padding: 10px 18px calc(20px + env(safe-area-inset-bottom)); box-shadow: 0 -10px 40px rgba(0,0,0,0.4); animation: sheetIn 0.34s cubic-bezier(0.22, 1, 0.36, 1); max-height: 88dvh; overflow-y: auto; }
@keyframes sheetIn { from { transform: translateY(100%); } }
.sheet .grab { width: 42px; height: 4.5px; border-radius: 3px; background: var(--border); margin: 0 auto 14px; }
@media (min-width: 640px) { .sheet { left: 50%; right: auto; transform: translateX(-50%); width: 480px; border-radius: 22px; bottom: 24px; border: 1px solid var(--border); }
  @keyframes sheetIn { from { transform: translate(-50%, 40px); opacity: 0; } to { transform: translateX(-50%); opacity: 1; } } }

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.sv { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.sv th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); padding: 8px 10px; border-bottom: 1px solid var(--border); white-space: nowrap; }
table.sv td { padding: 11px 10px; border-bottom: 1px solid var(--border); white-space: nowrap; }
table.sv tr:last-child td { border-bottom: none; }
table.sv tbody tr { transition: background 0.15s ease; cursor: pointer; }
table.sv tbody tr:hover { background: var(--surface-2); }

/* ---------- misc ---------- */
.grid2 { display: grid; grid-template-columns: 1fr; gap: 14px; }
.grid3 { display: grid; grid-template-columns: 1fr; gap: 14px; }
.grid4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px) { .grid2 { grid-template-columns: repeat(2, 1fr); } .grid3 { grid-template-columns: repeat(2, 1fr); } .grid4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .grid3 { grid-template-columns: repeat(3, 1fr); } }
.stat-value { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 600; }
.divider { height: 1px; background: var(--border); margin: 14px 0; border: none; }
.muted { color: var(--muted); } .small { font-size: 12.5px; } .bold { font-weight: 700; }
.row { display: flex; align-items: center; gap: 10px; }
.spread { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.progress { height: 8px; border-radius: 6px; background: var(--surface-2); overflow: hidden; }
.progress > div { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--accent), var(--accent-strong)); transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.progress.green > div { background: linear-gradient(90deg, #10b981, #059669); }

.fade-in { animation: pageIn 0.35s ease; }
.list-enter { animation: listIn 0.3s ease both; }
@keyframes listIn { from { opacity: 0; transform: translateY(8px); } }
.bounce-in { animation: bounceIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes bounceIn { from { opacity: 0; transform: scale(0.8); } }

/* AI floating button */
#ai-fab { position: fixed; right: 16px; bottom: calc(86px + env(safe-area-inset-bottom)); z-index: 60; width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer; background: linear-gradient(135deg, #a855f7, var(--accent-strong)); color: #fff; font-size: 21px; box-shadow: 0 6px 24px rgba(139, 92, 246, 0.45); display: grid; place-items: center; transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }
#ai-fab:hover { transform: scale(1.08) rotate(8deg); }
#ai-fab:active { transform: scale(0.9); }
@media (min-width: 768px) { #ai-fab { bottom: 24px; } }
#ai-panel { position: fixed; right: 16px; bottom: calc(148px + env(safe-area-inset-bottom)); z-index: 905; width: min(380px, calc(100vw - 32px)); height: min(520px, 70dvh); background: var(--surface-solid); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden; animation: modalIn 0.3s cubic-bezier(0.34, 1.4, 0.64, 1); }
@media (min-width: 768px) { #ai-panel { bottom: 88px; } }

/* chat bubbles */
.bubble { max-width: 78%; padding: 9px 14px; border-radius: 16px; font-size: 14px; word-wrap: break-word; white-space: pre-wrap; animation: listIn 0.25s ease; }
.bubble.mine { background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #fff; border-bottom-right-radius: 5px; margin-left: auto; }
.bubble.theirs { background: var(--surface-2); border-bottom-left-radius: 5px; }

/* typing dots */
.typing-dots span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--muted); margin-right: 3px; animation: typing 1.2s infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.15s; } .typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%, 60%, 100% { transform: none; opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

/* confetti */
.confetti-piece { position: fixed; top: -12px; z-index: 1200; width: 8px; height: 14px; pointer-events: none; animation: confettiFall linear forwards; }
@keyframes confettiFall { to { transform: translateY(105vh) rotate(720deg); opacity: 0.7; } }

/* flashcard flip */
.flip-card { perspective: 1000px; cursor: pointer; }
.flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1); transform-style: preserve-3d; }
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; display: grid; place-items: center; padding: 26px; border-radius: 18px; border: 1px solid var(--border); background: var(--surface-solid); text-align: center; }
.flip-face.back { transform: rotateY(180deg); background: var(--accent-soft); }

/* focus rings for keyboard nav */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* mobile drawer */
#drawer { position: fixed; inset: 0 25% 0 0; max-width: 320px; z-index: 960; background: var(--surface-solid); border-right: 1px solid var(--border); padding: calc(18px + env(safe-area-inset-top)) 14px 18px; overflow-y: auto; animation: drawerIn 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes drawerIn { from { transform: translateX(-100%); } }

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