/* Multi-wallet dashboard styles */
.wal-hero {
  margin: 0 14px 16px;
  padding: 22px 18px;
  border-radius: 18px;
  background: var(--gradient-casino);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow-md);
}
.wal-hero-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text2);
  font-weight: 600;
}
.wal-hero-val {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin: 6px 0 4px;
  line-height: 1;
}
.wal-hero-sub { font-size: 12px; color: var(--text2); }

.wal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 14px 14px;
}
.wal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.wal-card:hover { border-color: var(--border2); box-shadow: var(--shadow-sm); }
.wal-card-top { display: flex; align-items: center; gap: 12px; }
.wal-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.wal-name { font-size: 12px; color: var(--text2); font-weight: 600; }
.wal-bal {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-top: 2px;
}
.wal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--text2);
}
.wal-meta strong { color: var(--cyan); }
.wal-lock { color: var(--gold); }
.wal-wager { margin-top: 10px; }
.wal-wager-bar {
  height: 6px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}
.wal-wager-bar div {
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  transition: width var(--dur-normal);
}
.wal-wager span { font-size: 10px; color: var(--text2); }

.wal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 14px 18px;
}

.wal-hist-section { padding: 0 14px 88px; }
.wal-hist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.wal-hist-head h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.wal-hist-head a { font-size: 11px; color: var(--cyan); cursor: pointer; font-weight: 600; }

.wal-filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.wal-filters::-webkit-scrollbar { display: none; }
.wal-filter {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text2);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.wal-filter.on {
  background: var(--gradient);
  border-color: transparent;
  color: #000;
}
[data-theme="light"] .wal-filter.on { color: #fff; }

.wal-hist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.wal-hist-ic { font-size: 18px; flex-shrink: 0; }
.wal-hist-body { flex: 1; min-width: 0; }
.wal-hist-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wal-hist-meta { font-size: 10px; color: var(--text2); margin-top: 2px; }
.wal-hist-amt { font-size: 13px; font-weight: 800; white-space: nowrap; }
.wal-hist-amt.pos { color: var(--green); }
.wal-hist-amt.neg { color: var(--red); }

.wal-empty, .wal-loading {
  text-align: center;
  padding: 24px;
  color: var(--text2);
  font-size: 13px;
}
