:root {
  --bg: #0a0b0f;
  --bg-elevated: #12141c;
  --bg-card: #161922;
  --border: #252a38;
  --text: #e8eaf0;
  --text-muted: #8b92a8;
  --accent: #7c5cff;
  --accent-hover: #9580ff;
  --accent-glow: rgba(124, 92, 255, 0.25);
  --success: #3dd68c;
  --error: #ff6b6b;
  --warning: #ffc857;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 92, 255, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(61, 214, 140, 0.05), transparent);
}

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

.container { width: min(1200px, 92%); margin: 0 auto; }

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 11, 15, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a:not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav a:not(.btn):hover,
.nav a:not(.btn).active { color: var(--text); }

.nav a.btn-primary {
  color: #fff;
}
.nav a.btn-primary:hover {
  color: #fff;
}

.balance {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
}

.user-badge {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.main { padding: 2rem 0 4rem; min-height: calc(100vh - 140px); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s;
}

.footer-discord:hover {
  color: #fff;
  background: #5865f2;
  border-color: #5865f2;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-hover); text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
}
.btn-ghost:hover { color: var(--text); background: var(--bg-elevated); }

.btn-sm { padding: 0.35rem 0.75rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

.inline-form { display: inline; }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.page-header { margin-bottom: 1.5rem; }
.page-header h1 { font-size: 1.75rem; font-weight: 700; }
.page-header p { color: var(--text-muted); margin-top: 0.25rem; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }

.key-preview, .key-format { font-family: Consolas, monospace; color: var(--accent-hover); font-size: 1.1rem; }

.deposit-card { text-align: center; }
.deposit-amount { margin: 1.5rem 0; }
.crypto-amt { font-size: 2rem; font-weight: 700; font-family: Consolas, monospace; color: var(--success); }
.crypto-label { display: block; color: var(--text-muted); margin-top: 0.25rem; }
.deposit-address { display: block; word-break: break-all; padding: 1rem; background: var(--bg); border-radius: 8px; margin: 1rem 0; font-size: 0.85rem; }

.alert-info { background: rgba(124, 92, 255, 0.12); border: 1px solid rgba(124, 92, 255, 0.3); color: var(--accent-hover); }
.deposit-waiting { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.deposit-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-hover);
  flex-shrink: 0;
  animation: deposit-pulse 1.4s ease-in-out infinite;
}
@keyframes deposit-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}

.badge-status-unused { background: rgba(61, 214, 140, 0.15); color: var(--success); }
.badge-status-used { background: rgba(124, 92, 255, 0.15); color: var(--accent-hover); }
.badge-status-expired { background: rgba(255, 107, 107, 0.15); color: var(--error); }

.admin-inline-form { display: flex; gap: 0.35rem; flex-wrap: wrap; align-items: center; }
.admin-reseller-form { display: flex; flex-direction: column; gap: 0.5rem; min-width: 280px; }
.admin-reseller-row { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.admin-tier-checks { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center; }
.tier-check { font-size: 0.85rem; white-space: nowrap; }
.table-resellers td { vertical-align: top; }
.price-editor-scroll { overflow-x: auto; margin-bottom: 1rem; }
.table-prices { min-width: 900px; }
.table-prices th { white-space: nowrap; font-size: 0.85rem; }
.price-cell { min-width: 120px; vertical-align: top; }
.price-cell--allowed { background: rgba(61, 214, 140, 0.04); }
.price-input { width: 5.5rem; display: block; margin-bottom: 0.25rem; }
.price-hint { display: block; line-height: 1.3; max-width: 140px; }
.price-editor-actions { padding-top: 0.5rem; border-top: 1px solid var(--border); }
.product-config-row--off { opacity: 0.45; }
.product-config-row--off .tier-price-input { pointer-events: none; }
.product-active-cell { text-align: center; width: 3rem; }
.price-clear-form { margin-top: 0.75rem; }

.keys-table code.key-value { font-size: 0.8rem; }
.grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }

.stat .label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.stat .value { font-size: 1.5rem; font-weight: 700; }

.section-card { margin-bottom: 1.5rem; }
.section-card h2 { font-size: 1.1rem; margin-bottom: 1rem; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

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

.eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.lead { color: var(--text-muted); font-size: 1.1rem; max-width: 520px; margin-bottom: 1.5rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; flex-direction: column; gap: 1rem; }

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  min-width: 200px;
}

.stat-num { display: block; font-size: 1.75rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

.bonus-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.bonus-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  height: 4.5rem;
  padding: 0 0.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 0.75rem;
}

.bonus-badge--wide {
  min-width: 5.25rem;
  height: 5.25rem;
  font-size: 0.72rem;
}

.bonus-step h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.bonus-step p { font-size: 0.9rem; color: var(--text-muted); }

/* Game bar */
.game-bar-section {
  margin: 3rem calc(-4vw) 0;
  padding: 2.5rem 0 1rem;
  border-top: 1px solid var(--border);
}

.game-bar-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.game-bar {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.game-bar-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: gameBarScroll 50s linear infinite;
  padding: 0.5rem 0 1.5rem;
}

.game-bar-track:hover {
  animation-play-state: paused;
}

@keyframes gameBarScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.game-bar-item {
  flex-shrink: 0;
  width: 190px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.game-bar-item:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 92, 255, 0.5);
  box-shadow: 0 12px 32px rgba(124, 92, 255, 0.15);
}

.game-bar-item img {
  width: 100%;
  height: 106px;
  object-fit: cover;
  display: block;
  background: var(--bg-elevated);
}

.game-bar-item img.is-logo {
  object-fit: contain;
  padding: 0.75rem 1rem;
  background: #12141c;
}

.game-bar-item--osu img.is-logo {
  background: linear-gradient(135deg, #ff66aa 0%, #cc5288 100%);
  padding: 1rem;
}

.game-bar-item span {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Video showcase */
.video-showcase {
  margin-bottom: 2rem;
}

.video-showcase-lead {
  margin-bottom: 1.25rem;
}

.video-showcase-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 900px) {
  .video-showcase-layout {
    grid-template-columns: 1fr;
  }
}

.video-player-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-player-header {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.95rem;
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-playlist-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  max-height: 520px;
  display: flex;
  flex-direction: column;
}

.video-playlist-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.video-playlist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.video-tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.45rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.video-tab:hover {
  border-color: rgba(124, 92, 255, 0.35);
}

.video-tab.active {
  border-color: var(--accent);
  background: rgba(124, 92, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.25);
}

.video-tab img {
  width: 64px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--bg);
}

.video-tab img.is-logo {
  object-fit: contain;
  padding: 0.25rem;
  background: #12141c;
}

.video-tab span {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}

/* Auth */
.auth-card {
  max-width: 420px;
  margin: 2rem auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.auth-card h1 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.auth-footer { margin-top: 1.5rem; text-align: center; font-size: 0.9rem; color: var(--text-muted); }

.form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table th,
.table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.table tr.highlight { background: rgba(124, 92, 255, 0.08); }

/* Products */
.discount-banner {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(124, 92, 255, 0.1);
  border-color: rgba(124, 92, 255, 0.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}

.product-card h2 { font-size: 1.1rem; }
.product-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; }
.product-id { font-size: 0.75rem; color: var(--text-muted); font-family: monospace; }
.product-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.product-features {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  overflow: hidden;
}

.product-features summary {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-hover);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.product-features summary::-webkit-details-marker { display: none; }

.product-features summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 0.45rem;
  transition: transform 0.15s ease;
}

.product-features[open] summary::before {
  transform: rotate(90deg);
}

.product-features-body {
  padding: 0 0.85rem 0.85rem;
  border-top: 1px solid var(--border);
  max-height: 320px;
  overflow-y: auto;
}

.product-features-summary {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
  margin: 0.75rem 0 0.65rem;
}

.product-features-section {
  margin-bottom: 0.75rem;
}

.product-features-section:last-child {
  margin-bottom: 0;
}

.product-features-section h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-hover);
  margin-bottom: 0.35rem;
}

.product-features-section ul {
  margin: 0;
  padding-left: 1.1rem;
}

.product-features-section li {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.2rem;
}

.tier-grid { display: flex; flex-direction: column; gap: 0.75rem; }

.tier-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  align-items: center;
}

.tier-box.out-of-stock { opacity: 0.55; }

.tier-name { font-weight: 600; font-size: 0.85rem; }
.tier-price { color: var(--success); font-weight: 700; }
.tier-stock { grid-column: 1; font-size: 0.75rem; color: var(--text-muted); }

.add-form {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
}

.qty-input {
  width: 4rem;
  padding: 0.35rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  text-align: center;
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
}

.checkout-summary h2 { font-size: 1.1rem; margin-bottom: 1rem; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.summary-row.discount { color: var(--success); }
.summary-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: none;
  padding-top: 0.75rem;
}

.tier-hints { margin-top: 0.75rem; font-size: 0.85rem; color: var(--text-muted); list-style: none; }
.tier-hints li { padding: 0.25rem 0; }

/* Keys */
.keys-list { margin-top: 1rem; max-height: 400px; overflow-y: auto; }

.key-row {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.key-value {
  font-family: "Consolas", monospace;
  font-size: 0.95rem;
  color: var(--accent-hover);
  user-select: all;
}

.key-meta { font-size: 0.75rem; color: var(--text-muted); }

/* Admin */
.balance-form {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  align-items: center;
}

.note-input {
  width: 100px;
  padding: 0.35rem 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.8rem;
}

.product-admin-list { display: flex; flex-direction: column; gap: 1rem; }
.product-admin-card h2 { font-size: 1rem; margin-bottom: 1rem; }

.form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.form-inline label { margin-bottom: 0; flex: 1; min-width: 120px; }
.checkbox-label { display: flex !important; align-items: center; gap: 0.5rem; flex: 0 !important; }

/* Alerts & badges */
.alert {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-success { background: rgba(61, 214, 140, 0.12); border: 1px solid rgba(61, 214, 140, 0.3); color: var(--success); }
.alert-error { background: rgba(255, 107, 107, 0.12); border: 1px solid rgba(255, 107, 107, 0.3); color: var(--error); }

.error-list { list-style: none; }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-success { background: rgba(61, 214, 140, 0.15); color: var(--success); }
.badge-muted { background: var(--bg-elevated); color: var(--text-muted); }

.admin-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.admin-deposit-stats {
  margin-bottom: 1.25rem;
}

.table-scroll {
  overflow-x: auto;
}

.table-deposits .deposit-crypto-cell {
  white-space: nowrap;
}

.deposit-address-short {
  display: inline-block;
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.72rem;
  color: var(--text-muted);
  vertical-align: middle;
}

.muted { color: var(--text-muted); }
.small { font-size: 0.8rem; }

.empty-state { text-align: center; padding: 3rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1rem; }
