:root {
  --bg: #0a0d12;
  --bg-2: #11151c;
  --bg-3: #181d27;
  --bg-4: #1f2632;
  --border: #242b38;
  --border-2: #2a313f;
  --fg: #e6edf3;
  --muted: #7d8693;
  --accent: #7c5cff;
  --accent-2: #5b3df5;
  --accent-glow: rgba(124, 92, 255, 0.4);
  --violet: #a78bfa;
  --blue: #60a5fa;
  --emerald: #34d399;
  --amber: #fbbf24;
  --danger: #f87171;
  --ok: #4ade80;
  --warn: #fbbf24;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 6px 30px rgba(0,0,0,0.45);
  --shadow-glow: 0 8px 40px rgba(124, 92, 255, 0.25);
  --topbar-h: 56px;
}
* { box-sizing: border-box; }
[x-cloak] { display: none !important; }
html, body {
  margin: 0; height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  /* avoid iOS rubber-band background-flash */
  overscroll-behavior-y: none;
}

/* BUTTONS */
button { font-family: inherit; font-size: 14px; padding: 9px 16px; border-radius: 8px; border: 1px solid var(--border-2); background: var(--bg-3); color: var(--fg); cursor: pointer; transition: all 0.15s; font-weight: 500; min-height: 38px; }
button:hover { border-color: var(--accent); transform: translateY(-1px); }
button:active { transform: translateY(0); }
button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
button.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none; color: white;
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.35);
}
button.btn-primary:hover { box-shadow: 0 6px 20px rgba(124, 92, 255, 0.5); transform: translateY(-1px); }
button.ghost { background: transparent; border-color: var(--border-2); }
button.ghost:hover { background: var(--bg-3); }
button.ghost.danger { color: var(--danger); border-color: rgba(248, 113, 113, 0.3); }
button.ghost.danger:hover { background: rgba(248, 113, 113, 0.1); border-color: var(--danger); }

/* INPUTS */
input, textarea, select { font-family: inherit; font-size: 14px; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-3); color: var(--fg); width: 100%; transition: border-color 0.15s, box-shadow 0.15s; min-height: 40px; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
input[type="checkbox"] { width: auto; min-height: 0; accent-color: var(--accent); transform: scale(1.1); margin-right: 6px; }
label { display: block; margin: 12px 0; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; }
label input, label textarea, label select { margin-top: 6px; color: var(--fg); text-transform: none; letter-spacing: normal; font-weight: normal; font-size: 14px; }
.search { max-width: 260px; }
.duration-picker { display: flex; gap: 8px; margin-top: 6px; }
.duration-picker input { flex: 1 1 0; min-width: 0; margin: 0; }
.duration-picker select { flex: 1 1 0; min-width: 0; margin: 0; }

.caps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; margin-top: 8px; }
.cap-group { border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; background: var(--bg-3); }
.cap-group legend { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; padding: 0 6px; }
.cap-row { display: flex; align-items: center; gap: 8px; margin: 4px 0; font-size: 13px; text-transform: none; letter-spacing: normal; color: var(--fg); font-weight: normal; }
.cap-row code { font-size: 11px; }

.user-details { max-width: 780px; }
.user-details h4 { margin: 14px 0 10px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.hwid-list, .ent-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.hwid-list li {
  display: flex; flex-direction: column; gap: 10px;
  padding: 10px 12px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px;
}
.hwid-list li > .row { flex-wrap: wrap; }
.hwid-list li code { flex: 1 1 220px; }
.hwid-components {
  margin-top: 4px; padding: 8px 10px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 6px;
  overflow-x: auto;
}
.hwid-components table { width: 100%; border-collapse: collapse; font-size: 12px; }
.hwid-components th { text-align: left; padding: 4px 8px; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--border); }
.hwid-components td { padding: 4px 8px; }
.hwid-components code { font-size: 11px; }
.ent-list li {
  display: flex; align-items: center; gap: 12px; justify-content: space-between; flex-wrap: wrap;
  padding: 10px 12px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px;
}
.ent-info { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; min-width: 0; }
.ent-actions { display: flex; gap: 6px; flex-shrink: 0; }
.ent-actions button { margin: 0; }
.upload-label { display: inline-flex; align-items: center; padding: 9px 16px; cursor: pointer; min-height: 38px; }

code { background: var(--bg-3); padding: 2px 7px; border-radius: 5px; font-size: 12px; font-family: ui-monospace, "JetBrains Mono", "Cascadia Code", "Fira Code", monospace; color: var(--violet); word-break: break-all; }
hr { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.muted { color: var(--muted); font-size: 12px; }
.error { color: var(--danger); font-size: 13px; margin-top: 6px; }
h1, h2, h3, h4 { margin: 0 0 12px 0; font-weight: 600; }
h2 { font-size: 22px; letter-spacing: -0.01em; }
h3 { font-size: 16px; }
h4 { font-size: 13px; }

/* PILLS */
.pill { display: inline-flex; align-items: center; padding: 3px 10px; font-size: 11px; font-weight: 600; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; border: 1px solid transparent; }
.pill-ok      { background: rgba(74,222,128,.12); color: var(--ok); border-color: rgba(74,222,128,.25); }
.pill-warn    { background: rgba(251,191,36,.12); color: var(--warn); border-color: rgba(251,191,36,.3); }
.pill-muted   { background: var(--bg-3); color: var(--muted); border-color: var(--border); }
.pill-violet  { background: rgba(167,139,250,.12); color: var(--violet); border-color: rgba(167,139,250,.3); }

.row { display: flex; align-items: center; flex-wrap: wrap; }
.row.gap > * + * { margin-left: 8px; }
.row.end { justify-content: flex-end; }

/* TOPBAR (mobile only) */
.topbar { display: none; position: sticky; top: 0; z-index: 30; height: var(--topbar-h); padding: 0 12px; background: var(--bg-2); border-bottom: 1px solid var(--border); align-items: center; justify-content: space-between; gap: 12px; }
.topbar .brand { padding: 0; }
.menu-toggle { display: none; padding: 8px; min-width: 40px; min-height: 40px; background: transparent; border: 1px solid var(--border-2); }
.menu-toggle svg { width: 20px; height: 20px; display: block; margin: auto; }
.sidebar-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 39; backdrop-filter: blur(2px); }

/* AUTH */
.auth { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 16px; position: relative; overflow: hidden; }
.auth-bg { position: absolute; inset: 0; background:
  radial-gradient(80% 60% at 20% 20%, rgba(124,92,255,.18) 0%, transparent 60%),
  radial-gradient(60% 50% at 90% 80%, rgba(96,165,250,.14) 0%, transparent 60%); pointer-events: none; }
.auth .card { position: relative; width: 100%; max-width: 380px; padding: 36px; }
.brand-big { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.brand-big h1 { margin: 0; font-size: 22px; }
.logo-dot { width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--blue)); box-shadow: 0 0 12px var(--accent-glow); flex-shrink: 0; }
.auth .subtitle { color: var(--muted); margin: 0 0 28px 0; }
.auth button { width: 100%; padding: 12px; font-size: 15px; }

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* LAYOUT */
.layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.sidebar { background: var(--bg-2); border-right: 1px solid var(--border); padding: 20px 14px; display: flex; flex-direction: column; }
.brand { font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 10px; padding: 6px 8px 18px; }
.sidebar nav { margin-top: 8px; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.sidebar nav a { color: var(--fg); padding: 12px; border-radius: 8px; cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 10px; transition: background 0.12s; min-height: 44px; }
.sidebar nav a svg { width: 16px; height: 16px; opacity: 0.7; flex-shrink: 0; }
.sidebar nav a:hover { background: var(--bg-3); }
.sidebar nav a.active { background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(91,61,245,.1)); color: white; border: 1px solid rgba(124,92,255,.3); padding: 11px; }
.sidebar nav a.active svg { opacity: 1; color: var(--accent); }
.palette-trigger { margin-top: 10px; padding: 9px 12px; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 13px; }
.palette-trigger:hover { border-color: var(--accent); }
.palette-trigger kbd { background: var(--bg-4); border: 1px solid var(--border-2); padding: 2px 6px; border-radius: 4px; font-size: 11px; }
.user { border-top: 1px solid var(--border); padding-top: 14px; margin-top: 14px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.user-name { font-size: 13px; font-weight: 600; }
.user-role { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
.content { padding: 28px 36px; overflow: auto; min-width: 0; }
.page-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.page-head h2 { margin-bottom: 4px; }
.page-head p { margin: 0; }

/* CARDS */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.card.narrow { max-width: 580px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.product-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.app-card { cursor: pointer; position: relative; overflow: hidden; transition: transform .16s, border-color .16s; }
.app-card:hover { border-color: rgba(124,92,255,.4); transform: translateY(-3px); }
.app-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 4px; }
.app-card h3 { margin: 0 0 4px; }
.app-card code { display: block; margin-top: 12px; font-size: 11px; color: var(--muted); }
.app-card-glow { position: absolute; inset: -1px; border-radius: var(--radius); pointer-events: none; opacity: 0; transition: opacity .25s; background: radial-gradient(circle at 50% 0%, rgba(124,92,255,.18), transparent 70%); }
.app-card:hover .app-card-glow { opacity: 1; }

.product-card { display: flex; flex-direction: column; gap: 10px; }
.product-card.archived { opacity: 0.55; }
.product-card.paused { border-color: rgba(251,191,36,.35); }
.product-card.paused::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(251,191,36,.05) 14px 28px);
  pointer-events: none;
  z-index: 0;
}
.product-card { position: relative; overflow: hidden; }
/* Force every direct child above the decorative ::before overlay so clicks
   on buttons / selects always land on the real element. */
.product-card > * { position: relative; z-index: 1; }

/* Same defensive z-index for the apps list cards. */
.app-card > * { position: relative; z-index: 1; }
.app-card-glow { z-index: 0 !important; }

/* Product status row */
.status-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.status-row .status-select { flex: 0 1 160px; min-height: 32px; padding: 4px 8px; font-size: 12px; }
.status-row .status-msg-btn { flex: 1 1 120px; min-height: 32px; padding: 4px 10px; font-size: 12px; text-align: left; }
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; border: 1px solid transparent;
}
.status-pill .status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  box-shadow: 0 0 0 0 currentColor; animation: pulse 2s infinite;
}
.status-undetected  { background: rgba(74,222,128,.12);  color: var(--ok);     border-color: rgba(74,222,128,.3); }
.status-updating    { background: rgba(96,165,250,.12);  color: var(--blue);   border-color: rgba(96,165,250,.3); }
.status-detected    { background: rgba(248,113,113,.14); color: var(--danger); border-color: rgba(248,113,113,.4); }
.status-maintenance { background: var(--bg-3);           color: var(--muted);  border-color: var(--border); }
.status-undetected  .status-dot { background: var(--ok); }
.status-updating    .status-dot { background: var(--blue); }
.status-detected    .status-dot { background: var(--danger); }
.status-maintenance .status-dot { background: var(--muted); animation: none; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  70%  { box-shadow: 0 0 0 6px transparent; opacity: 0.6; }
  100% { box-shadow: 0 0 0 0 transparent;  opacity: 1; }
}
.product-card h3 { margin: 0 0 2px; }
.product-stats { font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px; }
.product-stats strong { color: var(--fg); }

/* KPIs */
.grid.stats { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.kpi { position: relative; overflow: hidden; padding: 20px 22px; }
.kpi h4 { color: var(--muted); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; margin: 0 0 6px; }
.kpi p { font-size: 32px; font-weight: 700; margin: 0; letter-spacing: -0.02em; }
.kpi-icon { position: absolute; top: 16px; right: 16px; font-size: 22px; opacity: 0.55; }
.kpi-bar { margin-top: 14px; height: 4px; background: var(--bg-3); border-radius: 2px; overflow: hidden; }
.kpi-bar > div { height: 100%; background: linear-gradient(90deg, var(--emerald), var(--blue)); transition: width 0.5s ease; }
.kpi-violet  { background: linear-gradient(160deg, rgba(167,139,250,.10), var(--bg-2)); border-color: rgba(167,139,250,.18); }
.kpi-blue    { background: linear-gradient(160deg, rgba(96,165,250,.10), var(--bg-2)); border-color: rgba(96,165,250,.18); }
.kpi-emerald { background: linear-gradient(160deg, rgba(52,211,153,.10), var(--bg-2)); border-color: rgba(52,211,153,.18); }
.kpi-amber   { background: linear-gradient(160deg, rgba(251,191,36,.10), var(--bg-2)); border-color: rgba(251,191,36,.18); }

.empty { padding: 60px 20px; text-align: center; grid-column: 1 / -1; }
.empty-inline { padding: 40px 20px; margin-bottom: 16px; }
.empty-icon { font-size: 40px; margin-bottom: 8px; opacity: 0.7; }
.empty h3 { margin: 0 0 6px; }

/* TABS */
.tabs { display: flex; border-bottom: 1px solid var(--border); margin: 8px 0 22px 0; gap: 2px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.tabs::-webkit-scrollbar { height: 4px; }
.tabs a { padding: 10px 14px; cursor: pointer; color: var(--muted); border-bottom: 2px solid transparent; white-space: nowrap; font-size: 13px; transition: color 0.12s, border-color 0.12s; min-height: 40px; display: inline-flex; align-items: center; }
.tabs a:hover { color: var(--fg); }
.tabs a.active { color: var(--fg); border-bottom-color: var(--accent); }

/* TABLES */
.table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-2); }
.table-wrap table { border: none; border-radius: 0; }
table { width: 100%; border-collapse: collapse; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border); font-size: 13px; vertical-align: middle; white-space: nowrap; }
th { background: var(--bg-3); font-weight: 600; color: var(--muted); text-transform: uppercase; font-size: 11px; letter-spacing: 0.05em; }
tr { transition: background 0.1s; }
tbody tr:hover { background: rgba(124,92,255,.04); }
tr:last-child td { border-bottom: none; }

/* MODAL */
.modal { position: fixed; inset: 0; background: rgba(8,11,16,0.75); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; z-index: 50; padding: 16px; }
.modal-card { width: 100%; max-width: 500px; max-height: 90vh; overflow: auto; box-shadow: var(--shadow); }
.modal-card h3 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* TOASTS */
.toasts { position: fixed; top: 20px; right: 20px; z-index: 100; display: flex; flex-direction: column; gap: 8px; max-width: 360px; }
.toast { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px; background: var(--bg-3); border: 1px solid var(--border-2); box-shadow: var(--shadow); font-size: 13px; animation: slideIn 0.25s ease; }
@keyframes slideIn { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast-icon { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.toast-ok .toast-icon  { background: rgba(74,222,128,.2); color: var(--ok); }
.toast-err .toast-icon { background: rgba(248,113,113,.2); color: var(--danger); }
.toast-info .toast-icon { background: rgba(96,165,250,.2); color: var(--blue); }
.toast-ok  { border-left: 3px solid var(--ok); }
.toast-err { border-left: 3px solid var(--danger); }
.toast-info { border-left: 3px solid var(--blue); }

/* COMMAND PALETTE */
.palette { position: fixed; inset: 0; background: rgba(8,11,16,0.78); backdrop-filter: blur(8px); z-index: 200; display: flex; align-items: flex-start; justify-content: center; padding: 14vh 16px 16px; }
.palette-card { width: 100%; max-width: 580px; background: var(--bg-2); border: 1px solid var(--border-2); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.palette-card input { background: transparent; border: none; border-bottom: 1px solid var(--border); border-radius: 0; padding: 18px 20px; font-size: 16px; }
.palette-card input:focus { box-shadow: none; border-bottom-color: var(--accent); }
.palette-card ul { list-style: none; margin: 0; padding: 6px; max-height: 360px; overflow: auto; -webkit-overflow-scrolling: touch; }
.palette-card li { padding: 10px 14px; border-radius: 7px; cursor: pointer; display: flex; align-items: center; gap: 10px; min-height: 42px; }
.palette-card li.active { background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(91,61,245,.1)); }
.palette-kind { font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); padding: 2px 7px; border-radius: 4px; background: var(--bg-3); border: 1px solid var(--border); flex-shrink: 0; min-width: 60px; text-align: center; }
.palette-hint { padding: 8px 14px; border-top: 1px solid var(--border); color: var(--muted); font-size: 11px; display: flex; gap: 12px; flex-wrap: wrap; }
.palette-hint kbd { background: var(--bg-4); border: 1px solid var(--border-2); padding: 1px 6px; border-radius: 3px; }

/* ============================ MOBILE ===================================== */
@media (max-width: 900px) {
  .content { padding: 20px 18px; }
  .grid.stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .layout { grid-template-columns: 1fr; }
  .topbar { display: flex; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .palette-trigger kbd { display: none; }

  /* sidebar becomes a slide-in drawer */
  .sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 80%; max-width: 320px; z-index: 40;
    transform: translateX(-100%);
    transition: transform .25s ease;
    box-shadow: var(--shadow);
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-backdrop.open { display: block; }

  .content { padding: 16px 14px 32px; }
  .page-head { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 18px; }
  .page-head .row.gap { flex-wrap: wrap; gap: 10px; }
  .page-head .btn-primary { width: 100%; }

  /* tables stay readable via horizontal scroll */
  .table-wrap { width: calc(100% + 4px); margin: 0 -2px; }
  table { min-width: 560px; }
  th, td { padding: 10px 12px; }

  /* grids: single column on phones, products tighter */
  .grid { grid-template-columns: 1fr; gap: 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .grid.stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .kpi { padding: 16px; }
  .kpi p { font-size: 24px; }

  /* search & action rows: full width */
  .search { max-width: 100%; }
  header.row.gap.end { justify-content: stretch; }
  header.row.gap.end > * { flex: 1 1 auto; }
  header.row.gap.end > .btn-primary { flex: 1 1 100%; }

  /* modal becomes near-fullscreen */
  .modal { padding: 0; align-items: flex-end; }
  .modal-card { max-width: 100%; max-height: 95vh; border-radius: var(--radius) var(--radius) 0 0; padding: 18px; }

  /* toasts: bottom anchored, full width */
  .toasts { top: auto; right: 12px; left: 12px; bottom: 12px; max-width: none; }

  /* palette: slide up from a sane position */
  .palette { padding: 6vh 10px 10px; }
  .palette-card input { padding: 14px 16px; font-size: 15px; }

  /* tabs scroll bar always visible-ish */
  .tabs { margin: 0 -14px 16px; padding: 0 14px; }

  /* settings card: a bit tighter */
  .card.narrow { max-width: 100%; }
  .card { padding: 18px; }

  /* auth screen — comfy on small screens */
  .auth .card { padding: 28px 22px; }
}

@media (max-width: 380px) {
  .grid.stats { grid-template-columns: 1fr; }
}

/* respect users who don't want motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
