/* SightAPI shared theme */
:root {
  --bg: #0f1115;
  --bg-2: #11141b;
  --panel: #181c24;
  --panel-2: #20242e;
  --border: #2a2e38;
  --text: #e8eaed;
  --text-secondary: #9aa0a6;
  --accent: #5a8af7;
  --accent-hover: #7aa2ff;
  --accent-text: #fff;
  --good: #69d699;
  --warn: #f5c769;
  --bad: #e8736b;
  --radius: 14px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font: 15px/1.55 var(--font);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

img { max-width: 100%; display: block; }

/* Container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 18px; }
.section { padding: 48px 0; }
.section-sm { padding: 42px 0; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Cards */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.card-hover { transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease; }
.card-hover:hover { border-color: rgba(122, 162, 255, 0.45); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.card h2, .card h3 { margin: 0 0 14px; font-size: 17px; font-weight: 600; }
.card h3 .sub { font-weight: 400; color: var(--text-secondary); font-size: 14px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-text);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, opacity 180ms ease, transform 120ms ease;
  text-decoration: none;
}
.btn:hover { background: var(--accent-hover); color: var(--accent-text); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn.disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn.ghost:hover { background: rgba(255,255,255,0.05); }
.btn.danger { background: var(--bad); color: #fff; }
.btn.sm { padding: 7px 12px; font-size: 13px; }
.btn.lg { padding: 14px 24px; font-size: 16px; }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }
.form-group label .required { color: var(--bad); margin-left: 2px; }
.input, select.styled, textarea {
  width: 100%;
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.input:focus, select.styled:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(122, 162, 255, 0.12); }
.input::placeholder { color: var(--text-secondary); opacity: 0.7; }
.input.error { border-color: var(--bad); }
select.styled { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239aa0a6' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
textarea { min-height: 96px; resize: vertical; }

.field-error { color: var(--bad); font-size: 12px; margin-top: 6px; min-height: 18px; }
.field-error:empty { min-height: 0; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0; }
.checkbox-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); margin-top: 1px; flex: none; }
.checkbox-row label { font-size: 13px; color: var(--text-secondary); line-height: 1.45; }

/* Banner */
.banner {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  border: 1px solid var(--border);
  margin-top: 14px;
  display: none;
}
.banner.show { display: block; }
.banner.err { background: rgba(232, 115, 107, 0.1); border-color: rgba(232, 115, 107, 0.4); color: var(--text); }
.banner.err strong { color: var(--bad); }
.banner.ok { background: rgba(105, 214, 153, 0.1); border-color: rgba(105, 214, 153, 0.4); color: var(--text); }
.banner.warn { background: rgba(245, 199, 105, 0.1); border-color: rgba(245, 199, 105, 0.4); color: var(--text); }

/* Topbar */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: transform 200ms ease, background 200ms ease;
}
.topbar .row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 18px; max-width: var(--max-width); margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--text); text-decoration: none; }
.brand:hover { color: var(--accent); text-decoration: none; }
.brand .logo {
  width: 32px; height: 32px; border-radius: 9px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.brand .logo img { width: 100%; height: 100%; object-fit: cover; }
.topbar .nav { display: flex; align-items: center; gap: 22px; }
.topbar .nav a { color: var(--text-secondary); font-size: 14px; font-weight: 500; text-decoration: none; padding: 6px 0; transition: color 150ms ease; }
.topbar .nav a:hover, .topbar .nav a.active { color: var(--accent); }
.topbar .nav-sep { width: 1px; height: 18px; background: var(--border); margin: 0 4px; }
.topbar .auth { display: flex; align-items: center; gap: 10px; }
.topbar .auth .btn { padding: 7px 13px; font-size: 13px; }
.topbar .auth .btn:focus-visible, .topbar .auth .btn:active { outline: 2px solid var(--accent); outline-offset: 2px; }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--border); color: var(--text); border-radius: 8px; padding: 8px; cursor: pointer; }
.profile-btn { display: inline-flex; align-items: center; gap: 8px; }
.avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: var(--accent-text);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; text-transform: uppercase;
}

body { padding-top: 62px; }

@media (max-width: 820px) {
  .topbar .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--panel); border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 18px; }
  .topbar .nav.open { display: flex; }
  .topbar .nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .topbar .nav a:last-child { border-bottom: 0; }
  .topbar .nav-sep { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 48px 0 32px; color: var(--text-secondary); font-size: 13px; }
.footer .container { max-width: var(--max-width); margin: 0 auto; padding: 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand-col { display: flex; flex-direction: column; gap: 14px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--text); text-decoration: none; cursor: default; pointer-events: none; }
.footer-brand .logo { width: 32px; height: 32px; border-radius: 9px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.footer-brand .logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-col h4 { font-size: 14px; font-weight: 600; color: var(--text); margin: 0 0 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-secondary); text-decoration: none; transition: color 150ms ease; }
.footer-col ul li a:hover { color: var(--accent); text-decoration: none; }
.footer-social { display: flex; align-items: center; gap: 12px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; background: var(--panel-2); border: 1px solid var(--border); color: var(--text-secondary); transition: all 150ms ease; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--text); }
.footer-social a[aria-label="Discord"]:hover { background: #5865F2; border-color: #5865F2; color: #fff; }
.footer-social a[aria-label="Telegram"]:hover { background: #229ED9; border-color: #229ED9; color: #fff; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-join {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(122, 162, 255, 0.08));
  border: 1px solid rgba(88, 101, 242, 0.35); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 36px;
}
.footer-join-text { display: flex; align-items: center; gap: 18px; flex: 1; }
.footer-join-icon { font-size: 36px; line-height: 1; }
.footer-join h3 { margin: 0 0 6px; font-size: 18px; color: var(--text); }
.footer-join p { margin: 0; font-size: 14px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom span:first-child { color: var(--text); font-weight: 600; }
@media (max-width: 760px) { .footer-join { flex-direction: column; align-items: flex-start; } .footer-bottom { flex-direction: column; } }

/* Discord banner */
.discord-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.18), rgba(122, 162, 255, 0.10));
  border: 1px solid rgba(88, 101, 242, 0.35); border-radius: var(--radius); padding: 28px 32px;
}
.discord-banner-content { display: flex; align-items: center; gap: 20px; flex: 1; }
.discord-icon { font-size: 42px; line-height: 1; }
@media (max-width: 720px) { .discord-banner { flex-direction: column; align-items: flex-start; } }

/* Status pills */
.pill { display: inline-flex; align-items: center; gap: 6px; background: var(--panel-2); border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 500; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.pill .dot.good { background: var(--good); }
.pill .dot.warn { background: var(--warn); }
.pill .dot.bad { background: var(--bad); }
.pill .dot.accent { background: var(--accent); }

/* Typography */
h1, h2, h3, h4 { margin: 0 0 14px; line-height: 1.25; font-weight: 600; }
.hero-title { font-size: clamp(34px, 5vw, 58px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 18px; }
.hero-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 640px; line-height: 1.55; }
.section-title { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.section-lead { color: var(--text-secondary); font-size: 16px; max-width: 640px; margin-bottom: 36px; }

.muted { color: var(--text-secondary); }
.good { color: var(--good); }
.warn { color: var(--warn); }
.bad { color: var(--bad); }
.accent-text { color: var(--accent); }
.text-center { text-align: center; }
.mono { font-family: var(--mono); }
.text-sm { font-size: 13px; }

/* Hero */
.hero { padding: 72px 0 48px; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  background: radial-gradient(circle at 70% 20%, rgba(122, 162, 255, 0.18), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(105, 214, 153, 0.08), transparent 40%);
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-actions .btn { min-width: 170px; }

/* Feature / advantage cards */
.feature-icon {
  width: 44px; height: 44px; border-radius: 11px; background: rgba(122, 162, 255, 0.12); border: 1px solid rgba(122, 162, 255, 0.25);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; color: var(--accent);
}

/* Pricing */
.pricing-hero { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.pricing-slider-wrap { flex: 1; min-width: 300px; }
.pricing-summary { flex: 0 0 320px; }
.price-big { font-size: 42px; font-weight: 700; letter-spacing: -0.02em; color: var(--accent); }
.price-big .unit { font-size: 16px; font-weight: 500; color: var(--text-secondary); margin-left: 4px; }
.price-per-m { font-size: 18px; color: var(--text-secondary); margin-top: 4px; }
.price-total { font-size: 24px; font-weight: 700; margin-top: 10px; }

/* Range slider */
input[type="range"] {
  -webkit-appearance: none; width: 100%; height: 8px; background: var(--panel-2); border-radius: 999px; outline: none; margin: 18px 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); cursor: pointer; }

/* Tier table */
.tier-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tier-table th, .tier-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; }
.tier-table th { color: var(--text-secondary); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; background: var(--panel-2); }
.tier-table tr:last-child td { border-bottom: 0; }
.tier-table .current { background: rgba(122, 162, 255, 0.08); }
.tier-table .current td { font-weight: 600; color: var(--accent); }
.tier-price { font-weight: 700; font-size: 16px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding-left: 48px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: var(--accent-text); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.step h4 { font-size: 15px; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 13px; line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: var(--panel); border: 0; padding: 16px 18px;
  font: inherit; font-weight: 600; font-size: 15px; color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-question:hover { background: var(--panel-2); }
.faq-question .chevron { transition: transform 200ms ease; color: var(--text-secondary); }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 18px 16px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.faq-item.open .faq-answer { display: block; }

/* Dashboard */
.dashboard-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.stat-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); margin-bottom: 22px; }
@media (max-width: 1024px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card .lbl { color: var(--text-secondary); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-card .val { font-size: 26px; font-weight: 700; margin-top: 6px; line-height: 1.2; }
.stat-card .hint { color: var(--text-secondary); font-size: 12px; margin-top: 4px; }

.chart-wrap { width: 100%; height: 180px; }
.bar-chart { width: 100%; height: 100%; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table.data { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 640px; }
table.data th, table.data td { padding: 10px 12px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--border); }
table.data th { color: var(--text-secondary); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; background: var(--panel-2); position: sticky; top: 0; }
table.data tr:last-child td { border-bottom: 0; }
table.data tr:hover td { background: rgba(122, 162, 255, 0.04); }

.progress-bar { height: 8px; background: var(--panel-2); border-radius: 999px; overflow: hidden; margin-top: 6px; }
.progress-bar .fill { height: 100%; background: var(--accent); border-radius: 999px; transition: width 300ms ease; }
.progress-bar .fill.good { background: var(--good); }
.progress-bar .fill.warn { background: var(--warn); }
.progress-bar .fill.bad { background: var(--bad); }

.referral-box { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 10px; }
.referral-link { flex: 1; min-width: 240px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 11px 14px; font-family: var(--mono); font-size: 13px; }

.app-card { display: flex; align-items: center; gap: 18px; }
.app-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--accent); color: var(--accent-text); display: flex; align-items: center; justify-content: center; font-size: 26px; flex: none; }

/* Skeleton */
.skeleton { background: linear-gradient(90deg, var(--panel-2) 25%, var(--panel) 50%, var(--panel-2) 75%); background-size: 200% 100%; animation: skeleton 1.4s infinite; border-radius: 6px; }
.skeleton.text { height: 14px; margin-bottom: 10px; }
.skeleton.title { height: 20px; width: 60%; margin-bottom: 14px; }
.skeleton.circle { width: 44px; height: 44px; border-radius: 50%; margin-bottom: 14px; }
.skeleton.big { height: 36px; width: 80%; margin-bottom: 8px; }
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Loader overlay */
.loader-overlay {
  position: fixed; inset: 0; z-index: 999; background: rgba(15, 17, 21, 0.85);
  display: none; align-items: center; justify-content: center; flex-direction: column; gap: 18px;
  backdrop-filter: blur(4px);
}
.loader-overlay.show { display: flex; }
.spinner {
  width: 44px; height: 44px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text { color: var(--text-secondary); font-size: 14px; }

/* Toast */
.toast-wrap { position: fixed; right: 18px; bottom: 18px; z-index: 300; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.toast { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; font-size: 13px; box-shadow: 0 8px 24px rgba(0,0,0,0.35); animation: slideIn 200ms ease-out; }
.toast.good { border-color: rgba(105, 214, 153, 0.45); color: var(--good); }
.toast.bad { border-color: rgba(232, 115, 107, 0.45); color: var(--bad); }
.toast.warn { border-color: rgba(245, 199, 105, 0.45); color: var(--warn); }
@keyframes slideIn { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }

/* Legal page */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 22px; margin-top: 32px; }
.legal-content h3 { font-size: 17px; margin-top: 24px; }
.legal-content p, .legal-content li { color: var(--text-secondary); line-height: 1.65; }
.legal-content ul { margin-bottom: 16px; }
.legal-content .last-updated { color: var(--text-secondary); font-size: 13px; margin-bottom: 24px; }

/* Auth pages */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 18px; }
.auth-card { width: 100%; max-width: 440px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.auth-card .footer-brand { justify-content: center; margin-bottom: 24px; }
.auth-links { text-align: center; font-size: 13px; color: var(--text-secondary); margin-top: 18px; }
.password-strength { display: flex; gap: 4px; margin-top: 8px; }
.password-strength .bar { flex: 1; height: 4px; border-radius: 2px; background: var(--panel-2); }
.password-strength .bar.fill { background: var(--bad); }
.password-strength .bar.fill.warn { background: var(--warn); }
.password-strength .bar.fill.good { background: var(--good); }

/* Captcha */
.captcha-wrap { margin: 16px 0; min-height: 65px; }

/* Notifications */
.notifications-wrap { position: relative; }
#notifBtn { position: relative; }
.notif-badge {
  position: absolute; top: -2px; right: -2px; min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; background: var(--bad); color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.notif-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0; width: 340px; max-height: 420px; overflow-y: auto;
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45); display: none; z-index: 100; padding: 8px 0;
}
.notif-dropdown.open { display: block; }
.notif-item { padding: 12px 16px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 150ms; }
.notif-item:last-child { border-bottom: 0; }
.notif-item:hover { background: var(--panel-2); }
.notif-item.unread { border-left: 3px solid var(--accent); }
.notif-item.read { border-left: 3px solid transparent; opacity: 0.75; }
.notif-type { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.notif-text { font-size: 13px; color: var(--text); line-height: 1.4; }
.notif-time { font-size: 11px; color: var(--text-secondary); margin-top: 4px; }
.notif-empty { padding: 24px; text-align: center; color: var(--text-secondary); font-size: 13px; }
.notif-footer { padding: 10px 16px; border-top: 1px solid var(--border); text-align: center; font-size: 13px; }

/* Modal */
.modal-bg { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.55); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-bg.show { display: flex; }
.modal-box { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); width: 100%; max-width: 400px; padding: 22px; }
.modal-title { font-size: 17px; font-weight: 600; margin-bottom: 14px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }

/* Utility */
.hidden { display: none !important; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 14px; }
.mb-3 { margin-bottom: 22px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 14px; }
.mt-3 { margin-top: 22px; }
