/* assets/css/main.css */
:root {
  --bg-primary:   #0f1923;
  --bg-secondary: #1a2634;
  --bg-card:      #1e2d3d;
  --bg-hover:     #243447;
  --accent:       #00e5ff;
  --accent-dim:   #00b4cc;
  --accent-glow:  rgba(0,229,255,0.15);
  --gold:         #f0b90b;
  --red:          #ff4757;
  --green:        #2ed573;
  --purple:       #a855f7;
  --text-primary: #e8edf2;
  --text-secondary:#7f8fa4;
  --text-muted:   #4a5568;
  --border:       rgba(255,255,255,0.07);
  --radius:       10px;
  --radius-sm:    6px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);

  /* Rarity colors */
  --consumer:   #b0c3d9;
  --industrial: #5e98d9;
  --milspec:    #4b69ff;
  --restricted: #8847ff;
  --classified: #d32ce6;
  --covert:     #eb4b4b;
  --contraband: #e4ae39;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── NAVBAR ─── */
.navbar {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 8px;
}

.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
  white-space: nowrap;
}
.nav-logo b { color: var(--accent); }
.logo-icon { font-size: 1.2rem; }

.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  background: var(--bg-card);
  color: var(--text-primary);
}
.nav-link.active { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.balance-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
}
.bal-icon { opacity: 0.8; }

.nav-user-menu { position: relative; }
.nav-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: opacity 0.2s;
}
.nav-avatar:hover { opacity: 0.85; }

.user-dropdown {
  position: absolute; right: 0; top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 180px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 200;
}
.user-dropdown.open { display: flex; }
.ud-info {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2px;
}
.ud-info strong { font-size: 0.95rem; }
.ud-info small { color: var(--gold); font-size: 0.8rem; }
.user-dropdown a {
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: all 0.15s;
  display: flex; align-items: center; gap: 8px;
}
.user-dropdown a:hover { background: var(--bg-hover); color: var(--text-primary); }
.logout-link { color: var(--red) !important; }

/* ─── BUTTONS ─── */
.btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover { background: var(--accent-dim); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn-outline:hover { background: var(--bg-card); }
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover { opacity: 0.9; }
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { opacity: 0.9; }
.btn-green {
  background: var(--green);
  color: #000;
}
.btn-green:hover { opacity: 0.9; }
.btn-lg { padding: 12px 28px; font-size: 1rem; }
.btn-sm { padding: 5px 12px; font-size: 0.8rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-wrap {
  flex: 1;
  padding: 32px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.card-hover:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  transition: all 0.2s;
}

/* ─── SKIN ITEM ─── */
.skin-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.skin-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.skin-item .skin-rarity-bar {
  height: 3px;
  width: 100%;
}
.skin-item .skin-img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: contain;
  padding: 12px;
  background: rgba(0,0,0,0.2);
}
.skin-item .skin-img-placeholder {
  width: 100%;
  aspect-ratio: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: rgba(0,0,0,0.25);
}
.skin-item .skin-info {
  padding: 10px 12px 12px;
}
.skin-item .skin-name {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.skin-item .skin-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.skin-item .skin-wear {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-top: 2px;
}

/* ─── CASES GRID ─── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.case-card:hover { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
.case-card .case-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  padding: 16px;
  background: radial-gradient(circle at center, rgba(0,229,255,0.06) 0%, transparent 70%);
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-card .case-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 12px 2px;
}
.case-card .case-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 16px;
}

/* ─── CASE OPENING ─── */
.case-open-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.spinner-container {
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}
.spinner-track {
  position: relative;
  overflow: hidden;
  height: 180px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
}
.spinner-arrow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--accent);
  z-index: 10;
}
.spinner-arrow::before {
  content: '▼';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 1rem;
}
.spinner-items {
  display: flex;
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  transition: transform 5s cubic-bezier(0.15, 0, 0.1, 1);
  will-change: transform;
}
.spinner-item {
  min-width: 150px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-right: 1px solid var(--border);
  gap: 6px;
}
.spinner-item .si-emoji { font-size: 2.5rem; }
.spinner-item .si-name {
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.spinner-item .si-price {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ─── BATTLES ─── */
.battles-list { display: flex; flex-direction: column; gap: 12px; }
.battle-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.battle-row .br-case { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.battle-row .br-rounds {
  background: var(--bg-hover);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.battle-row .br-vs {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}
.battle-row .br-value { color: var(--gold); font-weight: 700; }
.player-slot {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-hover);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  min-width: 120px;
}
.player-slot.empty { opacity: 0.4; border: 2px dashed var(--border); }
.ps-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.ps-name { font-size: 0.85rem; font-weight: 600; }

/* ─── CASINO GAMES ─── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}
.game-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-3px);
}
.game-card .gc-icon { font-size: 2.8rem; margin-bottom: 10px; }
.game-card .gc-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.game-card .gc-desc { font-size: 0.78rem; color: var(--text-secondary); }

/* GAME AREA */
.game-area {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}
.bet-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bet-input {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 10px 14px;
  font-size: 1rem;
  font-family: inherit;
  width: 160px;
}
.bet-input:focus { outline: none; border-color: var(--accent); }
.quick-bets { display: flex; gap: 6px; }
.qb { 
  padding: 5px 10px; font-size: 0.78rem; 
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; cursor: pointer; color: var(--text-secondary);
  font-family: inherit; transition: all 0.15s;
}
.qb:hover { color: var(--text-primary); border-color: var(--accent); }

/* CRASH GAME */
.crash-display {
  text-align: center;
  padding: 40px;
}
.crash-multiplier {
  font-family: 'Rajdhani', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  transition: color 0.2s;
  text-shadow: 0 0 30px currentColor;
}
.crash-multiplier.crashed { color: var(--red); }
.crash-status { color: var(--text-secondary); font-size: 0.9rem; margin-top: 8px; }
.crash-graph {
  width: 100%; height: 200px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.crash-graph canvas { width: 100%; height: 100%; }

/* COINFLIP */
.coin-display {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  padding: 40px;
}
.coin-option {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  cursor: pointer; padding: 20px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: all 0.2s;
  min-width: 120px;
}
.coin-option:hover, .coin-option.selected { border-color: var(--accent); background: var(--accent-glow); }
.coin-face { font-size: 3.5rem; }
.coin-label { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; }
.coin-spinning { animation: spinCoin 0.15s linear infinite; }
@keyframes spinCoin {
  0% { transform: scaleX(1); }
  50% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* BLACKJACK */
.bj-table {
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
  padding: 20px;
}
.bj-hand-label { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 8px; }
.bj-cards { display: flex; gap: 8px; flex-wrap: wrap; min-height: 80px; }
.bj-card {
  width: 56px; height: 80px;
  background: #fff;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.bj-card.red { color: #dc2626; }
.bj-card.back { background: linear-gradient(135deg, #1a3a6b, #0d2247); color: transparent; }
.bj-score {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  margin-top: 8px;
}
.bj-actions { display: flex; gap: 10px; margin-top: 16px; }
.bj-result {
  text-align: center; font-family: 'Rajdhani', sans-serif;
  font-size: 2rem; font-weight: 700; padding: 20px;
}
.bj-result.win { color: var(--green); }
.bj-result.lose { color: var(--red); }
.bj-result.push { color: var(--gold); }

/* UPGRADER */
.upgrader-area {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
}
.upgrader-wheel-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.upgrader-wheel {
  position: relative;
  width: 280px; height: 280px;
}
.wheel-svg { width: 100%; height: 100%; }
.wheel-pointer {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 12px var(--accent);
}
.upgrader-chance-bar {
  width: 100%; height: 8px;
  background: var(--bg-primary);
  border-radius: 4px;
  overflow: hidden;
  margin: 8px 0;
}
.upgrader-chance-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--accent));
  border-radius: 4px;
  transition: width 0.3s;
}
.upgrader-skin-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.upgrader-skin-select:hover { border-color: var(--accent); }
.uss-placeholder { color: var(--text-muted); font-size: 0.9rem; }
.uss-emoji { font-size: 2.5rem; }

/* ─── FORMS ─── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 420px;
  margin: 60px auto;
}
.form-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--text-secondary); }
.form-input {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--accent); }
.form-error {
  background: rgba(255,71,87,0.12);
  border: 1px solid rgba(255,71,87,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--red);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.form-success {
  background: rgba(46,213,115,0.12);
  border: 1px solid rgba(46,213,115,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--green);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ─── TOAST ─── */
#toast-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.9rem;
  max-width: 320px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success { border-color: var(--green); }
.toast-error { border-color: var(--red); }
.toast-info { border-color: var(--accent); }

/* ─── MISC ─── */
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-green { background: rgba(46,213,115,0.15); color: var(--green); }
.badge-red { background: rgba(255,71,87,0.15); color: var(--red); }
.badge-gold { background: rgba(240,185,11,0.15); color: var(--gold); }
.badge-blue { background: rgba(0,229,255,0.15); color: var(--accent); }

.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 24px;
}
.tab {
  flex: 1;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.tab.active {
  background: var(--bg-card);
  color: var(--text-primary);
}

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 520px;
  width: 90%;
  box-shadow: var(--shadow);
}
.modal-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 20px;
}
.modal-close {
  float: right; cursor: pointer; font-size: 1.4rem;
  color: var(--text-muted); line-height: 1;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state .es-icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; margin-bottom: 8px; color: var(--text-secondary); }

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 24px 20px;
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.footer-logo { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; }
.footer-inner p { color: var(--text-muted); font-size: 0.8rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent); }

/* Admin */
.admin-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-bottom: 32px;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.stat-card .sc-label { color: var(--text-secondary); font-size: 0.8rem; margin-bottom: 4px; }
.stat-card .sc-value { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; }

table.data-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
}
.data-table th { 
  text-align: left; padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary); font-weight: 600; font-size: 0.78rem; text-transform: uppercase;
}
.data-table td { padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.data-table tr:hover td { background: var(--bg-hover); }

/* Animations */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.pulse { animation: pulse 1.5s ease infinite; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.fade-in { animation: fadeIn 0.3s ease; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-hover); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

select.form-input { cursor: pointer; }
