/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --sidebar-w: 256px;
  --sidebar-bg: #0f172a;
  --sidebar-border: rgba(255,255,255,.07);
  --accent: #6366f1;
  --accent-soft: rgba(99,102,241,.12);
  --accent-glow: rgba(99,102,241,.35);
  --pink: #f472b6;
  --green: #22c55e;
  --bg: #f1f5f9;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-xs: #94a3b8;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.12);
  --font: 'Nunito', system-ui, sans-serif;
}

/* ── Reset / base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 700; }

/* ── Layout wrapper ────────────────────────────────────────── */
#wrapper { min-height: 100vh; display: flex; }

/* ── Sidebar ───────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1.25rem 1.1rem 1rem;
  border-bottom: 1px solid var(--sidebar-border);
  text-decoration: none;
}
.sidebar-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sidebar-brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
  line-height: 1;
}
.sidebar-brand-sub {
  font-size: .65rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.sidebar-section-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 1.1rem 1.1rem .35rem;
}

nav.sidebar-nav { padding: .25rem .6rem; flex: 1; }

.sidebar-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .85rem;
  border-radius: 10px;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
  margin-bottom: 2px;
}
.sidebar-link i { font-size: 1rem; flex-shrink: 0; }
.sidebar-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.sidebar-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #818cf8);
  box-shadow: 0 4px 14px rgba(99,102,241,.4);
}

.sidebar-footer {
  padding: .85rem 1rem;
  border-top: 1px solid var(--sidebar-border);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.sidebar-footer-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: #fff; font-weight: 800;
  flex-shrink: 0;
}
.sidebar-footer-user { flex: 1; min-width: 0; }
.sidebar-footer-name {
  font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sidebar-footer-role { font-size: .65rem; color: rgba(255,255,255,.35); }

/* ── Page content ──────────────────────────────────────────── */
#page-content { flex: 1; min-width: 0; display: flex; flex-direction: column; }

/* ── Topbar ────────────────────────────────────────────────── */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.topbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: .2rem .4rem;
  border-radius: var(--radius-sm);
}
.topbar-toggle:hover { background: var(--bg); }

main.page-main { padding: 1.5rem; flex: 1; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm) !important;
  background: var(--surface);
}
.card-header {
  border-bottom: 1px solid var(--border) !important;
  background: var(--surface) !important;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0 !important;
  padding: .9rem 1.1rem !important;
  font-weight: 700;
  font-size: .875rem;
}

/* ── Jogo cards (game list) ────────────────────────────────── */
.jogo-card {
  cursor: pointer;
  border-radius: var(--radius) !important;
  border: 1px solid var(--border) !important;
  background: var(--surface);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.jogo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(99,102,241,.18) !important;
  border-color: #c7d2fe !important;
}
.jogo-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(99,102,241,.15);
}
.jogo-card-body { padding: 1.1rem 1.1rem 1rem; }
.jogo-card-name { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: .15rem; }
.jogo-card-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }
.jogo-card-footer {
  padding: .6rem 1.1rem;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

/* ── Plano cards ───────────────────────────────────────────── */
.plano-card {
  border-radius: var(--radius) !important;
  border: 1px solid var(--border) !important;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.plano-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg) !important;
}
.plano-card-header {
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--accent), #818cf8);
}
.plano-card-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.plano-card-name { font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.85); margin-top: .2rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  font-family: var(--font);
  font-weight: 700;
  border-radius: 10px;
  font-size: .875rem;
  transition: transform .12s, box-shadow .12s;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #818cf8);
  border: none;
  box-shadow: 0 4px 12px rgba(99,102,241,.35);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4f46e5, var(--accent));
  box-shadow: 0 6px 18px rgba(99,102,241,.45);
  color: #fff;
}
.btn-outline-primary {
  border-color: #c7d2fe;
  color: var(--accent);
}
.btn-outline-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-danger { border-radius: 10px; }
.btn-light {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text);
}
.btn-light:hover { background: var(--border); }

/* ── Forms ─────────────────────────────────────────────────── */
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border-color: var(--border);
  font-family: var(--font);
  font-size: .875rem;
  padding: .5rem .75rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.form-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: .3rem;
}
.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}
.form-control-lg { font-size: .95rem !important; padding: .65rem .9rem !important; }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  font-family: var(--font);
  font-weight: 700;
  border-radius: 6px;
  font-size: .7rem;
  padding: .3em .55em;
}

/* ── Modals ────────────────────────────────────────────────── */
.modal-content {
  border: none !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
}
.modal-header {
  border-bottom: 1px solid var(--border) !important;
  padding: 1rem 1.25rem !important;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0 !important;
}
.modal-header .modal-title { font-size: 1rem; font-weight: 800; }
.modal-footer { border-top: 1px solid var(--border) !important; padding: .85rem 1.25rem !important; }
.modal-body { padding: 1.25rem !important; }

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  border: none;
  padding: .65rem .9rem;
}

/* ── Table-like borders ────────────────────────────────────── */
.border { border-color: var(--border) !important; }
.border-bottom { border-color: var(--border) !important; }

/* ── Empty state ───────────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem;
  color: var(--text-muted);
  text-align: center;
  gap: .5rem;
}
.empty-state-icon { font-size: 3rem; line-height: 1; opacity: .6; }
.empty-state-title { font-weight: 700; font-size: .95rem; color: var(--text); }
.empty-state-desc { font-size: .82rem; max-width: 280px; }

/* ── Back button ───────────────────────────────────────────── */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .45rem .85rem;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.btn-back:hover { background: var(--bg); color: var(--text); }

/* ── Section header ────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.section-title { font-size: 1rem; font-weight: 800; color: var(--text); margin: 0; }
.section-subtitle { font-size: .8rem; color: var(--text-muted); margin-top: .15rem; }

/* ── Upload / gallery ──────────────────────────────────────── */
.preview-box {
  height: 160px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-box img { max-height: 100%; max-width: 100%; object-fit: contain; }

.gallery-thumb { height: 140px; object-fit: cover; width: 100%; }

.upload-preview-grid {
  min-height: 80px;
  max-height: 360px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.upload-name-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.upload-name-row img {
  width: 72px; height: 72px;
  object-fit: contain;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.upload-name-row .upload-item-title.is-invalid { border-color: #dc3545; }

/* ── Modulo list ───────────────────────────────────────────── */
.modulo-item:hover:not(.active) { background: var(--surface-2); }

/* ── Login page ────────────────────────────────────────────── */
.login-page {
  background: linear-gradient(135deg, #eef2ff 0%, #f0f9ff 50%, #fdf4ff 100%);
  min-height: 100vh;
}
.login-card {
  border-radius: 20px !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.1) !important;
  overflow: hidden;
}
.login-card-top {
  background: linear-gradient(135deg, var(--sidebar-bg), #1e2957);
  padding: 2rem 1.75rem 1.5rem;
  text-align: center;
}
.login-brand-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto .75rem;
  box-shadow: 0 8px 20px rgba(99,102,241,.4);
}
.login-brand-name { font-size: 1.3rem; font-weight: 900; color: #fff; margin: 0; letter-spacing: -.4px; }
.login-brand-sub { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .2rem; }
.login-card-body { padding: 1.75rem 1.75rem 2rem; background: var(--surface); }

/* ── Responsive sidebar ────────────────────────────────────── */
@media (max-width: 991px) {
  .sidebar {
    position: fixed;
    z-index: 1040;
    transform: translateX(calc(-1 * var(--sidebar-w)));
    height: 100vh;
  }
  .sidebar.show { transform: translateX(0); box-shadow: var(--shadow-lg); }
  .topbar-toggle { display: block; }
  main.page-main { padding: 1rem; }
}

/* ── Memory gen log ────────────────────────────────────────── */
.memory-gen-log {
  min-height: 160px;
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: Consolas, 'Courier New', monospace;
  font-size: .78rem;
  overscroll-behavior: contain;
  background: #0f172a;
  color: #94a3b8;
  border-radius: var(--radius-sm);
  padding: .75rem;
}

/* ── Memory fase list ──────────────────────────────────────── */
.memory-fase-item:last-child { border-bottom: none !important; }
.memory-fase-item {
  cursor: grab;
  transition: box-shadow .15s ease, opacity .15s ease;
}
.memory-fase-item--dragging { opacity: .45; cursor: grabbing; }
.memory-fase-item--over { box-shadow: inset 0 0 0 2px rgba(99,102,241,.45); }
.memory-fase-drag-handle { cursor: grab; font-size: 1.1rem; line-height: 1; user-select: none; }
.memory-fase-emoji { font-size: 1.25rem; line-height: 1; flex-shrink: 0; width: 1.75rem; text-align: center; }
.memory-mundo-details { overflow: hidden; max-width: 100%; }
.memory-mundo-details > summary { list-style: none; cursor: pointer; }
.memory-mundo-details > summary::-webkit-details-marker { display: none; }
.memory-mundo-chevron::before {
  content: '▸'; display: inline-block; width: 1rem;
  font-size: .85rem; transition: transform .15s ease;
}
.memory-mundo-details[open] > .memory-mundo-summary .memory-mundo-chevron::before { content: '▾'; }
.memory-mundo-summary:hover { background-color: var(--surface-2) !important; }
.memory-mundo-actions { flex-shrink: 0; max-width: 100%; }
.memory-mundo-summary { overflow: hidden; }
.memory-mundo-specs { max-width: 100%; }
.memory-plano-list { max-height: 140px; overflow-y: auto; overflow-x: hidden; word-break: break-word; }
.memory-auto-diff-text {
  font-size: .8rem; line-height: 1.35; max-height: 100px;
  overflow: auto; white-space: pre-wrap;
  background: rgba(255,255,255,.45); border-radius: .25rem; padding: .35rem .5rem;
}
#memoryMundosList { max-width: 100%; overflow-x: hidden; }
.memory-fase-item .memory-fase-title { word-break: break-word; }
.memory-carta-thumb {
  width: 56px; height: 56px;
  object-fit: contain; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
}
.memory-carta-emoji-preview {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; font-size: 1.75rem;
  border-radius: 8px; background: #e8f4fd; border: 1px solid var(--border);
}
.memory-carta-edit:focus-within { box-shadow: 0 0 0 2px rgba(99,102,241,.25); }
.memory-carta-edit.border-dashed { border-style: dashed !important; }

/* ── Memory map ────────────────────────────────────────────── */
.memory-map-stage-wrap { overflow: auto; padding: .25rem !important; }
.memory-map-stage {
  position: relative; width: 100%; max-width: 960px;
  margin: 0 auto; aspect-ratio: 16/9; min-height: 200px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  border-radius: 8px; touch-action: none; user-select: none;
}
.memory-map-stage-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1rem; text-align: center; font-size: .85rem;
  color: rgba(255,255,255,.95); text-shadow: 0 1px 4px rgba(0,0,0,.45);
  pointer-events: none; z-index: 1;
}
.memory-map-pin {
  position: absolute; transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center;
  cursor: grab; z-index: 2; min-width: 56px;
}
.memory-map-pin-num {
  position: absolute; top: -6px; left: -6px;
  min-width: 22px; height: 22px; padding: 0 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; color: #fff;
  background: var(--accent); border: 2px solid #fff;
  border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,.25);
  z-index: 3; pointer-events: none;
}
.memory-map-pin--active { cursor: grabbing; z-index: 5; }
.memory-map-pin-emoji {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; background: rgba(255,255,255,.92);
  border: 3px solid #fff; border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.memory-map-pin-label {
  margin-top: 4px; padding: 2px 8px;
  font-size: .72rem; font-weight: 800; color: #fff;
  background: rgba(0,0,0,.55); border-radius: 10px;
  max-width: 110px; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── Memory preview page ───────────────────────────────────── */
.memory-preview-page-body { background: #eef1f8; min-height: 100vh; overflow-x: hidden; }
.memory-preview-topbar {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem 1rem;
  background: var(--sidebar-bg); color: #fff;
  position: sticky; top: 0; z-index: 10;
}
.memory-preview-title {
  font-size: 1rem; font-weight: 700; margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.memory-preview-main { padding: .75rem; display: flex; justify-content: center; }
.memory-preview-shell { width: 100%; max-width: 420px; }
.memory-preview-game-head {
  display: flex; flex-direction: column; gap: .35rem; align-items: flex-start;
}
.memory-preview-game-title { font-size: .95rem; line-height: 1.25; word-break: break-word; }
.memory-preview-board {
  position: relative; min-height: 160px; padding: .75rem;
  background: linear-gradient(180deg, #f0f4ff 0%, #f8f9fa 100%);
  border-radius: 12px; overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.memory-preview-loading {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; background: rgba(248,249,250,.92); border-radius: 12px;
  color: #6c757d; font-size: .85rem;
}
.memory-preview-grid {
  display: grid; gap: var(--memory-gap,8px);
  width: fit-content; max-width: 100%;
  margin: 0 auto; justify-content: center;
}
.memory-preview-card {
  position: relative;
  width: var(--memory-card-size,68px); height: var(--memory-card-size,68px);
  flex-shrink: 0; border-radius: 10px;
  cursor: pointer; user-select: none;
  -webkit-tap-highlight-color: transparent;
  perspective: 600px;
}
.memory-preview-card:not(.loaded),
.memory-preview-grid:not(.playable) .memory-preview-card { pointer-events: none; cursor: default; }
.memory-preview-card-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d; -webkit-transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  border-radius: 12px;
}
.memory-preview-card.flipped .memory-preview-card-inner { transform: rotateY(180deg); }
.memory-preview-card .card-back,
.memory-preview-card .card-front {
  position: absolute; inset: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.memory-preview-card .card-back {
  background: linear-gradient(145deg, #6366f1, #4ecdc4);
  color: #fff; font-size: clamp(.95rem,4vw,1.35rem); font-weight: 700;
  box-shadow: 0 2px 8px rgba(99,102,241,.35); transform: rotateY(0deg);
}
.memory-preview-card .card-front {
  background: #fff; border: 2px solid var(--border); padding: 5px;
  transform: rotateY(180deg);
}
.memory-preview-grid.playable .memory-preview-card.loaded:active:not(.flipped):not(.matched) .card-back {
  box-shadow: 0 4px 12px rgba(99,102,241,.45);
}
@media (min-width: 400px) {
  .memory-preview-game-head { flex-direction: row; align-items: center; justify-content: space-between; }
}
.memory-preview-card img {
  width: 100%; height: 100%; object-fit: contain; border-radius: 6px; display: block;
}
.memory-preview-card.matched { opacity: .55; pointer-events: none; }
.memory-preview-card.matched .card-front { border-color: #69db7c; }

/* ── Jogo tabs ─────────────────────────────────────────────── */
.jogo-tabs {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  gap: 2px;
}
.jogo-tab {
  background: none;
  border: none;
  border-radius: 9px;
  padding: .45rem 1.1rem;
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.jogo-tab:hover { background: var(--bg); color: var(--text); }
.jogo-tab.active {
  background: linear-gradient(135deg, var(--accent), #818cf8);
  color: #fff;
  box-shadow: 0 2px 8px rgba(99,102,241,.3);
}

/* ── Utility ───────────────────────────────────────────────── */
.text-muted { color: var(--text-muted) !important; }
.bg-light { background: var(--surface-2) !important; }
.rounded { border-radius: var(--radius-sm) !important; }
.rounded-3 { border-radius: var(--radius) !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow) !important; }
