/* ============================================
   MEMESCANNER PRO - STYLES
   ============================================ */

/* Reset & Variables */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0f;
  --bg2: #12121a;
  --bg3: #1a1a24;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.15);
  --text: #fff;
  --text2: #a0a0b0;
  --text3: #606070;
  --cyan: #00d4ff;
  --purple: #a855f7;
  --green: #00ff88;
  --red: #ff4757;
  --yellow: #ffc107;
  --orange: #ff9500;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 2px currentColor); }
  50% { filter: drop-shadow(0 0 6px currentColor); }
}

/* Layout */
.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(70px + var(--safe-bottom));
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding-top: var(--safe-top);
}

.header-inner {
  padding: 12px 16px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.logo h1 {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Bot Button */
.bot-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
}

.bot-btn.on {
  background: rgba(0, 255, 136, 0.15);
  border-color: var(--green);
  color: var(--green);
}

.bot-btn:active {
  transform: scale(0.96);
}

.bot-btn svg {
  width: 16px;
  height: 16px;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg2);
  border-radius: 12px;
}

.stat {
  text-align: center;
}

.stat-label {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.stat-val {
  font-size: 14px;
  font-weight: 700;
}

.stat-val.pos { color: var(--green); }
.stat-val.neg { color: var(--red); }

/* Main */
.main {
  flex: 1;
  padding: 16px;
}

/* Search */
.search-section {
  margin-bottom: 16px;
}

.search-box {
  position: relative;
  margin-bottom: 12px;
}

.search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border 0.2s;
}

.search-input::placeholder {
  color: var(--text3);
}

.search-input:focus {
  border-color: var(--cyan);
}

/* Filters */
.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filters::-webkit-scrollbar { display: none; }

.filter-select {
  flex-shrink: 0;
  padding: 10px 32px 10px 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23606070' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.refresh-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
}

.refresh-btn:active {
  transform: scale(0.95);
}

.refresh-btn.loading svg {
  animation: spin 1s linear infinite;
}

.refresh-btn svg {
  width: 16px;
  height: 16px;
}

/* Token Card */
.token-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.token-card {
  background: rgba(18, 18, 26, 0.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  animation: fadeIn 0.3s;
}

.token-card.expanded {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.token-main {
  padding: 14px;
  cursor: pointer;
}

.token-main:active {
  background: rgba(255, 255, 255, 0.02);
}

.token-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.token-info {
  flex: 1;
  min-width: 0;
}

.token-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.chain-badge {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.chain-badge.solana {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.chain-badge.ethereum {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.chain-badge.bsc {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.chain-badge.base {
  background: rgba(37, 99, 235, 0.2);
  color: #3b82f6;
}

.token-symbol {
  font-size: 16px;
  font-weight: 700;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 6px;
  background: rgba(0, 212, 255, 0.15);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

.new-badge svg {
  width: 10px;
  height: 10px;
}

.hot-badge {
  color: var(--orange);
}

.hot-badge svg {
  width: 14px;
  height: 14px;
}

.token-name {
  font-size: 12px;
  color: var(--text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.token-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.token-price {
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Pump Score */
.pump-score {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pump-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.3s;
}

.pump-circle.excellent {
  border-color: var(--green);
  color: var(--green);
  animation: glow 2s infinite;
}

.pump-circle.good {
  border-color: var(--yellow);
  color: var(--yellow);
}

.pump-circle.medium {
  border-color: var(--orange);
  color: var(--orange);
}

.pump-circle.low {
  border-color: var(--red);
  color: var(--red);
}

.pump-label {
  font-size: 9px;
  color: var(--text3);
  text-transform: uppercase;
  margin-top: 4px;
}

.token-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.token-stats {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text2);
}

.token-stats span {
  color: var(--text3);
}

.expand-icon {
  color: var(--text3);
  transition: transform 0.2s;
}

.expand-icon svg {
  width: 16px;
  height: 16px;
}

.token-card.expanded .expand-icon {
  transform: rotate(180deg);
}

/* Token Expanded */
.token-expanded {
  padding: 0 14px 14px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.2s;
}

.address-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.address-info {
  flex: 1;
  min-width: 0;
}

.address-label {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.address-val {
  font-size: 13px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--cyan);
  word-break: break-all;
}

.copy-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 10px;
}

.copy-btn:active {
  transform: scale(0.95);
}

.copy-btn.copied {
  background: rgba(0, 255, 136, 0.15);
  border-color: var(--green);
  color: var(--green);
}

.copy-btn svg {
  width: 14px;
  height: 14px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 0;
}

.detail-item {
  text-align: center;
  padding: 8px;
  background: var(--bg3);
  border-radius: 8px;
}

.detail-label {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.stat-box {
  padding: 10px;
  background: var(--bg3);
  border-radius: 8px;
}

.stat-box-label {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stat-box-val {
  font-size: 15px;
  font-weight: 700;
}

.stat-box-val.green { color: var(--green); }
.stat-box-val.red { color: var(--red); }

/* DEX Links */
.dex-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.dex-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text2);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.dex-link:active {
  transform: scale(0.97);
}

.dex-link.dex {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.dex-link.pump {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.dex-link.bird {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--cyan);
}

.dex-link.scan {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
  color: var(--green);
}

.dex-link svg {
  width: 12px;
  height: 12px;
}

/* Price Change */
.price-chg {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.price-chg.pos {
  background: rgba(0, 255, 136, 0.15);
  color: var(--green);
}

.price-chg.neg {
  background: rgba(255, 71, 87, 0.15);
  color: var(--red);
}

.price-chg svg {
  width: 12px;
  height: 12px;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
}

.section-title svg {
  color: var(--cyan);
  width: 20px;
  height: 20px;
}

.section-count {
  font-size: 12px;
  color: var(--text3);
}

.subsection {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 12px;
}

/* Whale Cards */
.whale-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whale-card {
  background: rgba(18, 18, 26, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  animation: fadeIn 0.3s;
}

.whale-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.whale-addr-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.whale-addr {
  font-size: 14px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--cyan);
}

.whale-label {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 6px;
}

.whale-label.smart {
  background: rgba(0, 255, 136, 0.15);
  color: var(--green);
}

.whale-label.whale {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
}

.whale-label.sniper {
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow);
}

.whale-label.mm {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
}

.whale-pnl {
  font-size: 15px;
  font-weight: 700;
}

.whale-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.whale-stat {
  text-align: center;
}

.whale-stat-label {
  font-size: 10px;
  color: var(--text3);
  margin-bottom: 2px;
}

.whale-stat-val {
  font-size: 14px;
  font-weight: 600;
}

.whale-actions {
  display: flex;
  gap: 8px;
}

.whale-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.whale-btn:active {
  transform: scale(0.97);
}

.whale-btn.track {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
}

.whale-btn.view {
  background: var(--bg3);
  color: var(--text2);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.whale-btn svg {
  width: 12px;
  height: 12px;
}

/* Trade Cards */
.trades-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trade-card {
  background: rgba(18, 18, 26, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  animation: fadeIn 0.3s;
}

.trade-card.profit {
  border-color: rgba(0, 255, 136, 0.3);
}

.trade-card.loss {
  border-color: rgba(255, 71, 87, 0.3);
}

.trade-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.trade-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trade-side {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.trade-side.long {
  background: rgba(0, 255, 136, 0.15);
  color: var(--green);
}

.trade-side.short {
  background: rgba(255, 71, 87, 0.15);
  color: var(--red);
}

.trade-symbol {
  font-size: 16px;
  font-weight: 700;
}

.trade-amt {
  font-size: 12px;
  color: var(--text3);
}

.trade-pnl {
  text-align: right;
}

.trade-pnl-pct {
  font-size: 18px;
  font-weight: 700;
}

.trade-pnl-usd {
  font-size: 12px;
}

.trade-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
}

.trade-detail-label {
  color: var(--text3);
}

.trade-levels {
  display: flex;
  gap: 16px;
  font-size: 11px;
  margin-bottom: 12px;
}

.trade-sl { color: var(--red); }
.trade-tp { color: var(--green); }

.trade-close {
  width: 100%;
  padding: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.trade-close:active {
  transform: scale(0.98);
  background: var(--bg2);
}

/* Settings */
.settings-section {
  padding: 16px 0;
}

.settings-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.settings-title svg {
  color: var(--cyan);
  width: 20px;
  height: 20px;
}

.settings-group {
  margin-bottom: 20px;
}

.settings-label {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 8px;
}

.settings-input {
  width: 100%;
  padding: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 16px;
  outline: none;
}

.settings-input:focus {
  border-color: var(--cyan);
}

.settings-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.settings-range {
  margin-bottom: 8px;
}

.settings-range-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.settings-range-val {
  color: var(--cyan);
  font-weight: 700;
}

.range-input {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg3);
  border-radius: 4px;
  outline: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--cyan);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
}

.settings-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.toggle-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.toggle-info p {
  font-size: 12px;
  color: var(--text3);
}

.toggle-switch {
  width: 52px;
  height: 30px;
  background: var(--bg3);
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-switch.on {
  background: var(--cyan);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.toggle-switch.on::after {
  transform: translateX(22px);
}

/* Empty State */
.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.empty-icon {
  width: 64px;
  height: 64px;
  background: var(--bg2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--text3);
}

.empty-icon svg {
  width: 28px;
  height: 28px;
}

.empty-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 4px;
}

.empty-sub {
  font-size: 13px;
  color: var(--text3);
}

/* Loading */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

.loading-text {
  color: var(--text2);
  font-size: 14px;
}

/* Error */
.error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.error-icon {
  width: 48px;
  height: 48px;
  color: var(--red);
  margin-bottom: 16px;
}

.error-icon svg {
  width: 48px;
  height: 48px;
}

.error-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.error-msg {
  font-size: 14px;
  color: var(--text3);
  margin-bottom: 20px;
}

.retry-btn {
  padding: 12px 24px;
  background: var(--cyan);
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.retry-btn:active {
  transform: scale(0.97);
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding-bottom: var(--safe-bottom);
  z-index: 1000;
}

.nav-items {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: var(--text3);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}

.nav-item.active {
  color: var(--cyan);
}

.nav-item svg {
  width: 22px;
  height: 22px;
}

.nav-item span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2000;
  animation: slideUp 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.toast.success {
  background: var(--green);
  color: #000;
}

.toast.error {
  background: var(--red);
  color: #fff;
}

.toast.info {
  background: var(--cyan);
  color: #000;
}

.toast svg {
  width: 16px;
  height: 16px;
}

/* Utility Classes */
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--text3); }
