/**
 * Panel Styles - CSS for all dashboard panel components
 */

/* ==================== COMMON PANEL STYLES ==================== */

.panel-loading,
.panel-auth,
.panel-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 120px;
  gap: 12px;
  color: #9ca3af;
  text-align: center;
  padding: 16px;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(125, 211, 252, 0.2);
  border-top-color: var(--arc, #7dd3fc);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.panel-error button,
.panel-auth button {
  padding: 8px 16px;
  background: var(--arc, #7dd3fc);
  color: #0c0c0c;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.2s;
}

.panel-error button:hover,
.panel-auth button:hover {
  opacity: 0.9;
}

.no-data {
  color: #6b7280;
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

/* ==================== INVENTORY PANEL ==================== */

.inventory-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.inventory-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.char-selector {
  display: flex;
  gap: 8px;
}

.char-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s;
}

.char-btn:hover {
  background: rgba(255,255,255,0.1);
}

.char-btn.active {
  background: var(--arc, #7dd3fc);
  color: #0c0c0c;
  border-color: var(--arc, #7dd3fc);
}

.char-btn img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.char-power {
  font-weight: 600;
  font-size: 12px;
}

.view-tabs {
  display: flex;
  gap: 4px;
}

.view-tab {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #9ca3af;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.view-tab:hover {
  background: rgba(255,255,255,0.05);
  color: #e5e7eb;
}

.view-tab.active {
  background: rgba(125, 211, 252, 0.2);
  border-color: var(--arc, #7dd3fc);
  color: var(--arc, #7dd3fc);
}

.inventory-filters {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.inventory-filters select {
  padding: 6px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #e5e7eb;
  font-size: 13px;
}

.inventory-content {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.equipped-section {
  margin-bottom: 16px;
}

.section-title {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.equipped-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.equipped-slot {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}

.equipped-slot:hover {
  border-color: var(--arc, #7dd3fc);
  transform: translateY(-2px);
}

.equipped-slot.empty {
  border-style: dashed;
  opacity: 0.5;
}

.equipped-slot .item-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
}

.equipped-slot .item-power {
  position: absolute;
  bottom: 2px;
  right: 4px;
  font-size: 11px;
  font-weight: 600;
}

.equipped-slot .slot-name {
  position: absolute;
  top: -20px;
  font-size: 10px;
  color: #6b7280;
  white-space: nowrap;
}

/* Tier colors */
.tier-exotic {
  border-color: #ceae33 !important;
  background: linear-gradient(135deg, rgba(206, 174, 51, 0.2) 0%, rgba(206, 174, 51, 0.05) 100%);
}

.tier-legendary {
  border-color: #522f65 !important;
  background: linear-gradient(135deg, rgba(82, 47, 101, 0.2) 0%, rgba(82, 47, 101, 0.05) 100%);
}

.tier-rare {
  border-color: #5076a3 !important;
}

.tier-common {
  border-color: #366f42 !important;
}

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

.inventory-item {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}

.inventory-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.inventory-item .item-icon {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.inventory-item .item-power {
  position: absolute;
  bottom: 2px;
  right: 4px;
  font-size: 10px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.inventory-item .item-quantity {
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(0,0,0,0.6);
  padding: 1px 4px;
  border-radius: 3px;
}

.inventory-item .item-tooltip {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 8px 12px;
  white-space: nowrap;
  z-index: 100;
  margin-bottom: 8px;
}

.inventory-item:hover .item-tooltip {
  display: block;
}

.tooltip-name {
  font-weight: 600;
  color: #e5e7eb;
}

.tooltip-type {
  font-size: 12px;
  color: #9ca3af;
}

/* ==================== VENDORS PANEL ==================== */

.vendors-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Vendors List View */
.vendors-header {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vendors-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.vendors-grid {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
}

.vendor-location-group {
  margin-bottom: 16px;
}

.location-header {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding-left: 4px;
}

.vendor-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vendor-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  color: inherit;
  width: 100%;
}

.vendor-card:hover {
  background: rgba(125, 211, 252, 0.1);
  border-color: rgba(125, 211, 252, 0.3);
}

.vendor-card .vendor-icon {
  font-size: 24px;
  width: 36px;
  text-align: center;
}

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

.vendor-card .vendor-name {
  font-size: 14px;
  font-weight: 500;
  color: #e5e7eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vendor-card .vendor-category {
  font-size: 11px;
  color: #6b7280;
}

.vendor-card .vendor-arrow {
  color: #6b7280;
  font-size: 14px;
  transition: transform 0.2s;
}

.vendor-card:hover .vendor-arrow {
  transform: translateX(4px);
  color: var(--arc, #7dd3fc);
}

/* Vendor Detail View */
.vendor-detail-header {
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.back-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #9ca3af;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.back-btn:hover {
  background: rgba(255,255,255,0.05);
  color: #e5e7eb;
}

.vendor-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vendor-icon-large {
  font-size: 32px;
}

.vendor-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #e5e7eb;
}

.vendor-title .vendor-location {
  font-size: 12px;
  color: #6b7280;
}

.vendor-detail-content {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
}

.vendor-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #9ca3af;
}

.no-items {
  text-align: center;
  padding: 40px;
  color: #6b7280;
}

/* Inventory Sections */
.inventory-section {
  margin-bottom: 20px;
}

.inventory-section .section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.inventory-section .section-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

.inventory-section .item-count {
  background: rgba(255,255,255,0.1);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  color: #9ca3af;
}

.inventory-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Vendor Items */
.vendor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.vendor-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}

.vendor-item.cannot-acquire {
  opacity: 0.5;
}

.vendor-item .item-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  flex-shrink: 0;
}

.vendor-item .item-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
}

.vendor-item .item-details {
  flex: 1;
  min-width: 0;
}

.vendor-item .item-name {
  font-weight: 500;
  color: #e5e7eb;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vendor-item .item-desc {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vendor-item .item-costs {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.vendor-item .cost {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #9ca3af;
}

.vendor-item .cost-icon {
  width: 14px;
  height: 14px;
}

/* Item Tier Colors */
.vendor-item.tier-exotic {
  border-left: 3px solid #fbbf24;
}

.vendor-item.tier-legendary {
  border-left: 3px solid #a855f7;
}

.vendor-item.tier-rare {
  border-left: 3px solid #3b82f6;
}

.vendor-item.tier-common {
  border-left: 3px solid #22c55e;
}

/* ==================== ACTIVITIES PANEL ==================== */

.activities-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.activities-tabs {
  display: flex;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tab-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #9ca3af;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.tab-btn:hover {
  background: rgba(255,255,255,0.05);
  color: #e5e7eb;
}

.tab-btn.active {
  background: var(--arc, #7dd3fc);
  color: #0c0c0c;
  border-color: var(--arc, #7dd3fc);
}

.activities-content {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
}

.activity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 8px;
}

.activity-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 24px;
}

.activity-icon img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.activity-info {
  flex: 1;
}

.activity-name {
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.activity-desc,
.activity-location {
  font-size: 13px;
  color: #9ca3af;
}

.activity-difficulty,
.activity-type,
.activity-schedule {
  font-size: 12px;
  color: #6b7280;
}

/* ==================== STATS PANEL ==================== */

.stats-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stats-tabs {
  display: flex;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stats-content {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.stats-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px;
}

.stats-section h4,
.stats-section h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--arc, #7dd3fc);
  margin-bottom: 12px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  color: #9ca3af;
  font-size: 13px;
}

.stat-value {
  color: #e5e7eb;
  font-weight: 600;
  font-size: 13px;
}

/* PVP Mode Tabs */
.pvp-mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 0;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pvp-mode-tab {
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: #9ca3af;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.pvp-mode-tab:hover {
  background: rgba(255,255,255,0.1);
  color: #e5e7eb;
}

.pvp-mode-tab.active {
  background: rgba(125, 211, 252, 0.2);
  border-color: var(--arc, #7dd3fc);
  color: var(--arc, #7dd3fc);
}

.pvp-mode-header {
  margin-bottom: 16px;
}

.pvp-mode-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #e5e7eb;
  margin: 0;
}

/* ==================== CLAN PANEL ==================== */

.clan-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.clan-header {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.clan-banner {
  display: flex;
  gap: 16px;
  align-items: center;
}

.clan-emblem {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clan-tag {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.clan-name {
  font-size: 18px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.clan-motto {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
}

.clan-tabs {
  display: flex;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.clan-content {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.clan-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.stat-card .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--arc, #7dd3fc);
  display: block;
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 12px;
  color: #9ca3af;
}

.roster-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roster-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
}

.member-avatar {
  position: relative;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6b7280;
}

.status-dot.online {
  background: #22c55e;
}

.status-dot.offline {
  background: #6b7280;
}

.member-info {
  flex: 1;
}

.member-name {
  font-weight: 500;
  color: #e5e7eb;
}

.name-code {
  color: #6b7280;
  font-weight: normal;
}

.member-role {
  font-size: 12px;
  color: #9ca3af;
}

.online-badge,
.offline-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
}

.online-badge {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.offline-badge {
  background: rgba(107, 114, 128, 0.2);
  color: #9ca3af;
}

/* ==================== NEWS PANEL ==================== */

.news-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-filters {
  display: flex;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.filter-btn {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #9ca3af;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: rgba(255,255,255,0.05);
}

.filter-btn.active {
  background: var(--arc, #7dd3fc);
  color: #0c0c0c;
  border-color: var(--arc, #7dd3fc);
}

.filter-btn.refresh-btn {
  margin-left: auto;
  padding: 6px 10px;
  font-size: 14px;
}

.filter-btn.refresh-btn:hover {
  background: rgba(125, 211, 252, 0.2);
  color: var(--arc, #7dd3fc);
}

.news-status {
  padding: 4px 12px 8px;
  font-size: 10px;
  color: #6b7280;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.news-content {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.article-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--arc, #7dd3fc);
}

.article-image {
  width: 120px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-category {
  font-size: 11px;
  color: var(--arc, #7dd3fc);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.article-title {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-desc {
  font-size: 12px;
  color: #9ca3af;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-date {
  font-size: 11px;
  color: #6b7280;
}

/* ==================== ROTATORS PANEL ==================== */

.rotators-panel {
  padding: 12px;
  height: 100%;
  overflow-y: auto;
}

.rotators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.rotation-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px;
}

.rotation-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.rotation-icon {
  font-size: 20px;
}

.rotation-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--arc, #7dd3fc);
}

.rotation-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.current-rotation,
.next-rotation {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.current-rotation .label,
.next-rotation .label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
}

.current-rotation .value {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

.next-rotation .value {
  font-size: 13px;
  color: #9ca3af;
}

.rotation-schedule {
  font-size: 11px;
  color: #6b7280;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.loot-info,
.reward-info,
.weapon-info {
  font-size: 12px;
  color: #22c55e;
}

.location {
  font-size: 12px;
  color: #9ca3af;
}

/* Clickable rotation cards */
.rotation-card {
  cursor: pointer;
  transition: all 0.2s ease;
}

.rotation-card:hover {
  border-color: var(--arc, #7dd3fc);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.rotation-hint {
  font-size: 11px;
  color: #6b7280;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  opacity: 0.7;
}

.rotation-card:hover .rotation-hint {
  color: var(--arc, #7dd3fc);
  opacity: 1;
}

/* Exotic mission card */
.rotation-card.exotic-mission {
  border-color: rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255,255,255,0.03));
}

.rotation-card.exotic-mission:hover {
  border-color: #ffd700;
}

.rotation-card.exotic-mission .rotation-title {
  color: #ffd700;
}

.exotic-reward {
  font-size: 12px;
  color: #ffd700;
  font-weight: 500;
}

/* Trials card */
.rotation-card.trials {
  border-color: rgba(255, 160, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 160, 0, 0.05), rgba(255,255,255,0.03));
}

.rotation-card.trials.active {
  border-color: rgba(255, 160, 0, 0.6);
  background: linear-gradient(135deg, rgba(255, 160, 0, 0.1), rgba(255,255,255,0.03));
}

.rotation-card.trials:hover {
  border-color: #ffa000;
}

.rotation-card.trials .rotation-title {
  color: #ffa000;
}

.trials-status {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}

.trials-status.active {
  color: #22c55e;
  animation: pulse 2s infinite;
}

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

/* Detail view */
.rotators-detail {
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.detail-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--arc, #7dd3fc);
}

.back-btn {
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #9ca3af;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.back-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #e5e7eb;
  border-color: rgba(255,255,255,0.2);
}

.detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 8px;
}

.detail-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}

.detail-current,
.detail-next {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-current .label,
.detail-next .label {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
}

.detail-current .value {
  font-size: 16px;
  font-weight: 600;
  color: #e5e7eb;
}

.detail-next .value {
  font-size: 14px;
  color: #9ca3af;
}

.detail-schedule {
  font-size: 12px;
  color: #6b7280;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.detail-rewards,
.detail-modifiers {
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}

.detail-rewards h4,
.detail-modifiers h4 {
  margin: 0 0 10px 0;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
}

.rewards-list,
.modifiers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reward-item {
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 4px;
  font-size: 12px;
  color: #22c55e;
}

.modifier-item {
  padding: 4px 10px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 4px;
  font-size: 12px;
  color: #fbbf24;
}

/* ==================== RECENT ACTIVITIES PANEL ==================== */

.recent-activities-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
}

.activities-list,
.recent-activities-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.activity-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--arc, #7dd3fc);
  transform: translateX(4px);
}

.activity-item .activity-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}

.activity-item .activity-main {
  flex: 1;
  min-width: 0;
}

.activity-item .activity-name {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-item .activity-mode {
  font-size: 12px;
  color: #6b7280;
}

.activity-item .activity-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.activity-item .stat-kd {
  font-size: 13px;
  font-weight: 600;
  color: var(--arc, #7dd3fc);
}

.activity-item .stat-kills {
  font-size: 11px;
  color: #9ca3af;
}

.activity-item .activity-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 80px;
}

.activity-outcome {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.activity-outcome.victory {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.activity-outcome.defeat {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.activity-outcome.completed {
  background: rgba(125, 211, 252, 0.2);
  color: var(--arc, #7dd3fc);
}

.activity-item .activity-date {
  font-size: 11px;
  color: #6b7280;
}

.activity-item .activity-time {
  font-size: 10px;
  color: #4b5563;
}

.activity-item .activity-arrow {
  color: #6b7280;
  font-size: 14px;
}

/* Activities Pagination */
.activities-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 12px;
}

.page-btn {
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #9ca3af;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
}

.page-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.1);
  color: #e5e7eb;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-info {
  font-size: 12px;
  color: #6b7280;
}

/* Activity Detail View */
.activity-detail {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
}

.activity-detail .detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.activity-detail .detail-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #e5e7eb;
  flex: 1;
}

.activity-detail .detail-content {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}

.hero-icon {
  font-size: 48px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}

.hero-info {
  flex: 1;
}

.hero-mode {
  font-size: 16px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 4px;
}

.hero-outcome {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
}

.hero-outcome.victory {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.hero-outcome.defeat {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.hero-outcome.completed {
  background: rgba(125, 211, 252, 0.2);
  color: var(--arc, #7dd3fc);
}

.detail-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card {
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  text-align: center;
}

.stat-card.highlight {
  background: rgba(125, 211, 252, 0.1);
  border-color: rgba(125, 211, 252, 0.3);
}

.stat-card .stat-label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stat-card .stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #e5e7eb;
}

.stat-card.highlight .stat-value {
  color: var(--arc, #7dd3fc);
}

.detail-info-grid {
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-row .info-label {
  font-size: 12px;
  color: #6b7280;
}

.info-row .info-value {
  font-size: 13px;
  color: #e5e7eb;
  font-weight: 500;
}

.detail-description {
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}

.detail-description p {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

/* ==================== SEASON PANEL ==================== */

.season-panel {
  padding: 16px;
  height: 100%;
  overflow-y: auto;
}

.season-header {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.season-logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), rgba(125, 211, 252, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.season-icon {
  font-size: 32px;
}

.season-info {
  flex: 1;
}

.season-name {
  font-size: 20px;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.season-dates {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.season-remaining {
  font-size: 13px;
  color: var(--arc, #7dd3fc);
  font-weight: 500;
}

.season-progress,
.artifact-section,
.challenges-section {
  margin-bottom: 20px;
}

.season-progress h4,
.artifact-section h4,
.challenges-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 12px;
}

.progress-bar-container {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--arc, #7dd3fc), var(--arc2, #60a5fa));
  border-radius: 4px;
  transition: width 0.3s;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9ca3af;
}

.current-rank {
  font-weight: 600;
  color: #e5e7eb;
}

.rank-rewards {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.reward-item {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}

.reward-item.unlocked {
  background: rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
  color: #22c55e;
}

.artifact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px;
}

.artifact-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.artifact-name {
  font-weight: 600;
  color: #e5e7eb;
}

.artifact-power {
  color: #22c55e;
  font-size: 13px;
}

.artifact-xp,
.artifact-mods {
  font-size: 12px;
  color: #9ca3af;
}

.challenges-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.challenge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
}

.challenge-item.completed {
  opacity: 0.6;
}

.challenge-check {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #22c55e;
}

.challenge-item.completed .challenge-check {
  background: rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
}

.challenge-info {
  flex: 1;
}

.challenge-name {
  font-weight: 500;
  color: #e5e7eb;
  font-size: 13px;
}

.challenge-desc {
  font-size: 12px;
  color: #6b7280;
}

.challenge-progress {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

.challenges-summary {
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 12px;
}

/* ==================== BUILD CRAFTER PANEL ==================== */

.build-crafter-panel {
  padding: 16px;
  height: 100%;
  overflow-y: auto;
}

.crafter-input-section {
  margin-bottom: 20px;
}

.crafter-input-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 12px;
}

.input-wrapper {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.build-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #e5e7eb;
  font-size: 14px;
}

.build-input:focus {
  outline: none;
  border-color: var(--arc, #7dd3fc);
}

.build-input::placeholder {
  color: #6b7280;
}

.generate-btn {
  padding: 12px 24px;
  background: var(--arc, #7dd3fc);
  color: #0c0c0c;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.generate-btn:hover {
  opacity: 0.9;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-tag {
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: #9ca3af;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-tag:hover {
  background: rgba(255,255,255,0.1);
  color: #e5e7eb;
}

.quick-tag.active {
  background: rgba(125, 211, 252, 0.2);
  border-color: var(--arc, #7dd3fc);
  color: var(--arc, #7dd3fc);
}

.build-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  color: #6b7280;
}

.build-placeholder ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.build-placeholder li {
  font-size: 13px;
  color: #9ca3af;
  margin: 8px 0;
}

.build-result {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

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

.build-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #e5e7eb;
}

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

.build-actions button {
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #e5e7eb;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.build-actions button:hover {
  background: rgba(255,255,255,0.15);
}

.build-subclass {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.subclass-element,
.subclass-class {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.subclass-element {
  background: rgba(125, 211, 252, 0.2);
  color: var(--arc, #7dd3fc);
}

.subclass-element.solar { background: rgba(249, 115, 22, 0.2); color: #f97316; }
.subclass-element.arc { background: rgba(125, 211, 252, 0.2); color: #7dd3fc; }
.subclass-element.void { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.subclass-element.stasis { background: rgba(56, 189, 248, 0.2); color: #38bdf8; }
.subclass-element.strand { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.subclass-element.prismatic { background: linear-gradient(90deg, rgba(249,115,22,0.2), rgba(168,85,247,0.2)); color: #e5e7eb; }

.subclass-class {
  background: rgba(255,255,255,0.1);
  color: #e5e7eb;
}

.build-sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.build-section h5 {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.exotic-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.exotic-name {
  font-weight: 600;
  color: #ceae33;
}

.exotic-reason {
  font-size: 12px;
  color: #9ca3af;
}

.aspect-list,
.fragment-list,
.mod-list,
.weapon-list,
.stats-priority {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aspect-item,
.fragment-item,
.mod-item,
.weapon-item,
.stat-item {
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 13px;
  color: #d1d5db;
}

.build-section.notes p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

.saved-builds-section {
  margin-top: 20px;
}

.saved-builds-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 12px;
}

.no-builds {
  color: #6b7280;
  font-size: 13px;
}

.saved-builds-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.saved-build-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}

.saved-build-item .build-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.saved-build-item .build-name {
  font-weight: 500;
  color: #e5e7eb;
}

.saved-build-item .build-element {
  font-size: 12px;
  color: #9ca3af;
}

.saved-build-item .build-actions button {
  padding: 4px 12px;
  font-size: 12px;
}

.load-btn {
  background: rgba(125, 211, 252, 0.2) !important;
  border-color: var(--arc, #7dd3fc) !important;
  color: var(--arc, #7dd3fc) !important;
}

.delete-btn {
  background: rgba(239, 68, 68, 0.2) !important;
  border-color: #ef4444 !important;
  color: #ef4444 !important;
}

/* Build crafter additional styles */
.crafter-description {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}

.generate-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.activity-tags {
  margin-top: 8px;
}

.login-prompt {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  color: #6b7280;
  margin-bottom: 20px;
}

.build-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.activity-type {
  padding: 4px 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 12px;
  color: #9ca3af;
}

.equip-build-btn {
  background: rgba(34, 197, 94, 0.2) !important;
  border-color: #22c55e !important;
  color: #22c55e !important;
}

.equip-build-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.build-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Subclass section */
.subclass-section {
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 16px;
}

.subclass-super {
  margin-bottom: 12px;
}

.subclass-super .label,
.aspects-container .label,
.fragments-container .label {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 8px;
}

.subclass-super .value {
  font-weight: 600;
  color: #e5e7eb;
}

.aspects-container,
.fragments-container {
  margin-bottom: 12px;
}

.aspect-item,
.fragment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}

.aspect-icon,
.fragment-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.aspect-name,
.fragment-name {
  font-size: 13px;
  color: #e5e7eb;
}

.fragment-slots {
  font-size: 11px;
  color: #6b7280;
  padding: 2px 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.stat-bonuses {
  font-size: 11px;
  color: #9ca3af;
  margin-left: auto;
}

.no-data {
  color: #6b7280;
  font-style: italic;
}

/* Weapons section */
.weapons-section {
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 16px;
}

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

.weapon-slot {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px;
}

.weapon-slot.exotic {
  border-color: rgba(206, 174, 51, 0.5);
  background: rgba(206, 174, 51, 0.05);
}

.weapon-slot .slot-label {
  display: block;
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

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

.weapon-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: rgba(0,0,0,0.3);
}

.weapon-info {
  flex: 1;
}

.weapon-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #e5e7eb;
}

.weapon-slot.exotic .weapon-name {
  color: #ceae33;
}

.weapon-power {
  font-size: 12px;
  color: #9ca3af;
}

.no-weapon {
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
}

/* Armor section */
.armor-section {
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 16px;
}

.armor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.armor-slot {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px;
}

.armor-slot.exotic {
  border-color: rgba(206, 174, 51, 0.5);
  background: rgba(206, 174, 51, 0.05);
}

.armor-slot .slot-label {
  display: block;
  font-size: 10px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.armor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.armor-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(0,0,0,0.3);
}

.armor-info {
  text-align: center;
  width: 100%;
}

.armor-name {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #e5e7eb;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.armor-slot.exotic .armor-name {
  color: #ceae33;
}

.armor-stats-mini {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
}

.armor-stats-mini span {
  font-size: 9px;
  color: #6b7280;
  padding: 2px 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
}

.armor-mods {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.mod-chip {
  font-size: 9px;
  padding: 2px 6px;
  background: rgba(125, 211, 252, 0.15);
  border-radius: 3px;
  color: #7dd3fc;
}

.no-armor {
  font-size: 11px;
  color: #6b7280;
  font-style: italic;
  text-align: center;
}

/* Stats section */
.stats-section {
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 16px;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-row {
  display: grid;
  grid-template-columns: 90px 1fr 40px 30px;
  gap: 10px;
  align-items: center;
}

.stat-row.has-secondary {
  grid-template-columns: 90px 1fr 40px 30px 1fr;
}

.stat-name {
  font-size: 12px;
  color: #9ca3af;
}

.stat-bar-container {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.stat-bar {
  height: 100%;
  background: var(--arc, #7dd3fc);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.stat-bar-overflow {
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  background: #22c55e;
  border-radius: 3px;
}

.stat-value {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
  text-align: right;
}

.stat-tier {
  font-size: 11px;
  color: #6b7280;
  text-align: center;
}

.secondary-bonus {
  font-size: 11px;
  color: #22c55e;
  padding: 2px 6px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 4px;
}

/* Artifact section */
.artifact-section {
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 16px;
}

.artifact-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.artifact-name {
  font-size: 16px;
  font-weight: 600;
  color: #e5e7eb;
}

.artifact-power {
  font-size: 14px;
  color: #fbbf24;
  padding: 2px 8px;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 4px;
}

.artifact-note {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
  font-style: italic;
}

.artifact-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.perks-label {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.perks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.artifact-perk {
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  font-size: 13px;
  color: #d1d5db;
  border: 1px solid rgba(255,255,255,0.1);
}

.artifact-perk.active {
  background: rgba(34, 197, 94, 0.15);
  border-color: #22c55e;
  color: #22c55e;
}

.artifact-perk.inactive {
  opacity: 0.5;
}

/* Empty fragment slot */
.fragment-item.empty-slot {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.2);
  opacity: 0.6;
}

.fragment-item.empty-slot .fragment-name {
  color: #6b7280;
  font-style: italic;
}

/* Build notes */
.build-notes {
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 16px;
}

.build-notes p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

/* Build Reasoning Section */
.reasoning-section {
  background: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.reasoning-section h5 {
  color: #60a5fa;
  margin-bottom: 8px;
}

.reasoning-intro {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 16px;
  font-style: italic;
}

.reasoning-subsection {
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 6px;
}

.reasoning-subsection h6 {
  font-size: 13px;
  font-weight: 600;
  color: #d1d5db;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Class selection styling */
.class-selection-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.selected-class {
  font-size: 16px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  text-transform: capitalize;
}

.selected-class.titan {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.selected-class.hunter {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.selected-class.warlock {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.confidence-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.confidence-badge.confidence-high {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

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

.confidence-badge.confidence-low {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

.confidence-badge.confidence-fallback {
  background: rgba(107, 114, 128, 0.2);
  color: #6b7280;
}

.selection-reason {
  font-size: 12px;
  color: #9ca3af;
  margin: 0 0 6px 0;
}

.alternative-class {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
  font-style: italic;
}

.alternative-class strong {
  color: #9ca3af;
}

.stat-priority-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.priority-stat {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.priority-stat.priority-1 {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.priority-stat.priority-2 {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.priority-stat.priority-3 {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.4);
}

.reasoning-summary {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reasoning-summary li {
  font-size: 12px;
  color: #d1d5db;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}

.reasoning-summary li:last-child {
  border-bottom: none;
}

/* Collapsible sections */
.reasoning-subsection.collapsible .collapsible-content {
  display: none;
  margin-top: 12px;
}

.reasoning-subsection.collapsible.expanded .collapsible-content {
  display: block;
}

.collapsible-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.collapsible-header:hover {
  color: #60a5fa;
}

.toggle-icon {
  font-size: 14px;
  font-weight: bold;
  color: #6b7280;
  transition: transform 0.2s;
}

.reasoning-subsection.expanded .toggle-icon {
  content: '-';
}

.reasoning-subsection.expanded .toggle-icon::after {
  content: '';
}

/* Reasoning detail items */
.reasoning-detail {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
}

.reasoning-detail:last-child {
  border-bottom: none;
}

.reasoning-detail strong {
  color: #e5e7eb;
}

.reasoning-detail .score {
  color: #60a5fa;
  margin-left: 8px;
}

.reasoning-detail.exotic-choice {
  background: rgba(251, 191, 36, 0.1);
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.reasoning-detail.exotic-slot {
  color: #fbbf24;
}

.reasoning-detail.exotic-slot em {
  color: #9ca3af;
  font-size: 11px;
}

.score-breakdown {
  margin: 6px 0 0 16px;
  padding: 0;
  list-style: disc;
}

.score-breakdown li {
  font-size: 11px;
  color: #9ca3af;
  padding: 2px 0;
}

.other-candidates {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

.other-candidates em {
  font-size: 11px;
  color: #6b7280;
}

.other-candidates .candidate {
  display: inline-block;
  font-size: 11px;
  color: #9ca3af;
  background: rgba(255,255,255,0.05);
  padding: 2px 6px;
  border-radius: 3px;
  margin: 2px;
}

/* Responsive adjustments for build crafter */
@media (max-width: 768px) {
  .weapons-grid {
    grid-template-columns: 1fr;
  }

  .armor-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-row {
    grid-template-columns: 80px 1fr 35px 25px;
  }

  .stat-row.has-secondary {
    grid-template-columns: 80px 1fr 35px 25px;
  }

  .secondary-bonus {
    grid-column: 1 / -1;
    margin-top: 4px;
  }
}

/* ==================== FRIENDS LIST STYLES ==================== */

.friends-list-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.friends-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.friends-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

.friends-count {
  font-size: 13px;
  color: #9ca3af;
}

.online-count {
  color: #22c55e;
  font-weight: 600;
}

.friends-sections {
  flex: 1;
  overflow-y: auto;
}

.friends-section {
  margin-bottom: 8px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header.collapsible {
  cursor: pointer;
}

.section-header.collapsible:hover {
  background: rgba(255,255,255,0.03);
}

.expand-icon {
  margin-left: auto;
  font-size: 10px;
  transition: transform 0.2s;
}

.friends-items.collapsed {
  display: none;
}

.friends-items.collapsed + .section-header .expand-icon {
  transform: rotate(-90deg);
}

.friend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.friend-item:hover {
  background: rgba(255,255,255,0.03);
}

.friend-avatar {
  position: relative;
}

.avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #9ca3af;
}

.status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #0c0c0c;
}

.status-indicator.online {
  background: #22c55e;
}

.status-indicator.offline {
  background: #6b7280;
}

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

.friend-name {
  font-size: 14px;
  font-weight: 500;
  color: #e5e7eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.friend-code {
  color: #6b7280;
  font-weight: normal;
}

.friend-activity,
.friend-status {
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.friend-activity {
  color: #22c55e;
}

.more-friends {
  padding: 8px 12px;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

.friends-loading,
.friends-auth,
.friends-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 12px;
  color: #9ca3af;
  text-align: center;
  padding: 16px;
}

.friends-auth h4,
.friends-error h4 {
  margin-bottom: 8px;
}

.friends-error button {
  padding: 8px 16px;
  background: var(--arc, #7dd3fc);
  color: #0c0c0c;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.no-friends {
  text-align: center;
  padding: 24px;
  color: #6b7280;
}

.no-friends p {
  margin-bottom: 4px;
}

.no-friends small {
  font-size: 12px;
  opacity: 0.7;
}

/* ==================== INVENTORY PANEL - EXTENDED STYLES ==================== */

/* Character Bar */
.inventory-char-bar {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow-x: auto;
}

.char-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.char-button:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.char-button.active {
  background: rgba(125, 211, 252, 0.15);
  border-color: var(--arc, #7dd3fc);
  color: #fff;
}

.char-button img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.char-button-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.char-button-class {
  font-size: 13px;
  font-weight: 600;
}

.char-button-power {
  font-size: 11px;
  color: #f59e0b;
  font-weight: 500;
}

.vault-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: auto;
}

.vault-button:hover {
  background: rgba(255,255,255,0.1);
}

.vault-button.active {
  background: rgba(125, 211, 252, 0.15);
  border-color: var(--arc, #7dd3fc);
  color: #fff;
}

.vault-icon {
  font-size: 18px;
}

.vault-count {
  font-size: 12px;
  color: #9ca3af;
}

/* Enhanced Toolbar */
.inventory-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: center;
}

.category-tabs {
  display: flex;
  gap: 4px;
}

.category-tab {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #9ca3af;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.category-tab:hover {
  background: rgba(255,255,255,0.05);
  color: #e5e7eb;
}

.category-tab.active {
  background: rgba(125, 211, 252, 0.2);
  border-color: var(--arc, #7dd3fc);
  color: var(--arc, #7dd3fc);
}

.inventory-search {
  flex: 1;
  min-width: 150px;
  max-width: 250px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #e5e7eb;
  font-size: 13px;
}

.inventory-search:focus {
  outline: none;
  border-color: var(--arc, #7dd3fc);
}

.inventory-search::placeholder {
  color: #6b7280;
}

.tier-filter,
.sort-select {
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #e5e7eb;
  font-size: 13px;
  cursor: pointer;
}

.tier-filter option,
.sort-select option {
  background: #1f1f1f;
  color: #e5e7eb;
}

/* Equipped Section */
.equipped-section {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.equipped-section .section-title {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.equipped-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.equipped-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.equipped-slot .slot-label {
  font-size: 10px;
  color: #6b7280;
  text-transform: uppercase;
}

.equipped-slot .item-tile {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
}

.equipped-slot .item-tile:hover {
  border-color: var(--arc, #7dd3fc);
  transform: translateY(-2px);
}

.equipped-slot .item-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.equipped-slot .item-tile .power-level {
  position: absolute;
  bottom: 2px;
  right: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #f59e0b;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}

.equipped-slot .item-tile.empty {
  border-style: dashed;
  opacity: 0.5;
}

.equipped-slot .item-tile.empty::after {
  content: '?';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #6b7280;
}

/* Inventory Grid */
.inventory-items-section {
  padding: 16px;
}

.inventory-items-section .section-title {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

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

.item-tile {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  transition: all 0.15s;
  overflow: hidden;
}

.item-tile:hover {
  transform: scale(1.08);
  z-index: 10;
  border-color: var(--arc, #7dd3fc);
}

.item-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-tile .power-level {
  position: absolute;
  bottom: 1px;
  right: 3px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.9);
}

.item-tile .quantity-badge {
  position: absolute;
  top: 2px;
  right: 3px;
  font-size: 9px;
  font-weight: 600;
  background: rgba(0,0,0,0.7);
  padding: 1px 4px;
  border-radius: 3px;
}

/* Item Tier Colors */
.item-tile.tier-exotic {
  border-color: #ceae33;
  background: linear-gradient(135deg, rgba(206, 174, 51, 0.2) 0%, rgba(206, 174, 51, 0.05) 100%);
}

.item-tile.tier-legendary {
  border-color: #522f65;
  background: linear-gradient(135deg, rgba(82, 47, 101, 0.2) 0%, rgba(82, 47, 101, 0.05) 100%);
}

.item-tile.tier-rare {
  border-color: #5076a3;
}

.item-tile.tier-uncommon {
  border-color: #366f42;
}

/* Vault View */
.vault-category {
  margin-bottom: 24px;
}

.vault-category .category-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vault-category .category-icon {
  font-size: 18px;
}

.vault-category .category-name {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

.vault-category .category-count {
  font-size: 12px;
  color: #6b7280;
  margin-left: auto;
}

/* ==================== ITEM MODAL ==================== */

.item-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.item-modal {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.item-modal-header {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.item-modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}

.item-modal-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-modal-icon.tier-exotic {
  border-color: #ceae33;
  box-shadow: 0 0 20px rgba(206, 174, 51, 0.3);
}

.item-modal-icon.tier-legendary {
  border-color: #522f65;
  box-shadow: 0 0 20px rgba(82, 47, 101, 0.3);
}

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

.item-modal-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.item-modal-name.exotic {
  color: #ceae33;
}

.item-modal-type {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.item-modal-power {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #f59e0b;
}

.item-modal-power .power-icon {
  font-size: 12px;
}

.item-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}

.item-modal-close:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.item-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.item-modal-description {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.item-stats-section {
  margin-bottom: 20px;
}

.item-stats-section h4 {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.item-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.item-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
}

.item-stat-name {
  font-size: 13px;
  color: #9ca3af;
}

.item-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

.item-stat-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 12px;
  overflow: hidden;
}

.item-stat-bar-fill {
  height: 100%;
  background: var(--arc, #7dd3fc);
  border-radius: 2px;
  transition: width 0.3s;
}

.item-perks-section {
  margin-bottom: 20px;
}

.item-perks-section h4 {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.item-perks-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}

.item-perk-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-perk-icon img {
  width: 28px;
  height: 28px;
}

.item-perk-info {
  flex: 1;
}

.item-perk-name {
  font-size: 14px;
  font-weight: 500;
  color: #e5e7eb;
  margin-bottom: 2px;
}

.item-perk-desc {
  font-size: 12px;
  color: #6b7280;
}

.item-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.item-action-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.item-action-btn.primary {
  background: var(--arc, #7dd3fc);
  color: #0c0c0c;
}

.item-action-btn.primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.item-action-btn.secondary {
  background: rgba(255,255,255,0.1);
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.2);
}

.item-action-btn.secondary:hover {
  background: rgba(255,255,255,0.15);
}

.item-action-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.transfer-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.transfer-target {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s;
}

.transfer-target:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--arc, #7dd3fc);
}

.transfer-target img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.transfer-target .target-name {
  font-size: 13px;
}

/* Transfer Status */
.transfer-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.transfer-status.pending {
  background: rgba(125, 211, 252, 0.1);
  color: var(--arc, #7dd3fc);
}

.transfer-status.success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.transfer-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.transfer-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-top-color: var(--arc, #7dd3fc);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Item Location Badge */
.item-location {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.item-location span {
  color: #9ca3af;
}

/* Empty Inventory State */
.inventory-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  color: #6b7280;
}

.inventory-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.inventory-empty h4 {
  font-size: 16px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 8px;
}

.inventory-empty p {
  font-size: 14px;
}

/* Scrollbar Styling for Inventory */
.inventory-content::-webkit-scrollbar {
  width: 8px;
}

.inventory-content::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.02);
}

.inventory-content::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.inventory-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.15);
}

/* ==================== INVENTORY PANEL - FULL LAYOUT ==================== */

.inventory-panel-full {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.inventory-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.inventory-grid-container {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

/* Enhanced Toolbar Layout */
.inventory-toolbar .toolbar-left {
  display: flex;
  gap: 8px;
}

.inventory-toolbar .toolbar-right {
  display: flex;
  gap: 8px;
  margin-left: auto;
  align-items: center;
}

.cat-tab {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #9ca3af;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.cat-tab:hover {
  background: rgba(255,255,255,0.05);
  color: #e5e7eb;
}

.cat-tab.active {
  background: rgba(125, 211, 252, 0.2);
  border-color: var(--arc, #7dd3fc);
  color: var(--arc, #7dd3fc);
}

.refresh-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #9ca3af;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
}

.refresh-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--arc, #7dd3fc);
}

/* Character Bar */
.character-bar {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
  overflow-x: auto;
}

.char-select-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  min-width: 100px;
}

.char-select-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.char-select-btn.active {
  background: rgba(125, 211, 252, 0.15);
  border-color: var(--arc, #7dd3fc);
}

/* Text-based character labels */
.char-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.char-class-text {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

.char-power-level {
  font-size: 12px;
  color: #f59e0b;
  font-weight: 500;
}

.char-select-btn.active .char-class-text {
  color: #fff;
}

.char-emblem {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.char-class-icon {
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.char-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.char-class-name {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
}

.char-light-level {
  font-size: 12px;
  color: #f59e0b;
  font-weight: 500;
}

.vault-btn {
  margin-left: auto;
}

.vault-btn .vault-icon {
  font-size: 24px;
}

/* Character Inventory Layout */
.character-inventory {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.item-count {
  font-size: 12px;
  color: #6b7280;
  margin-left: auto;
}

/* Equipped Grid */
.equipped-section .equipped-grid {
  display: flex;
  gap: 24px;
}

.equip-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.column-label {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.equipped-slot {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipped-slot:hover:not(.empty) {
  border-color: var(--arc, #7dd3fc);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.equipped-slot .slot-placeholder {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}

.equipped-slot .slot-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.equipped-slot .slot-power {
  position: absolute;
  bottom: 2px;
  right: 4px;
  font-size: 11px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}

.equipped-slot .slot-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: #6b7280;
  white-space: nowrap;
}

.equipped-slot.empty {
  border-style: dashed;
  opacity: 0.5;
}

.exotic-marker {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: #ceae33;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(206, 174, 51, 0.5);
}

/* Carried Section (weapons/armor not equipped) */
.carried-section {
  flex: 1;
  margin-bottom: 16px;
}

.carried-section .section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.carried-section .section-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

/* Inventory Section (consumables, mods, etc.) */
.inventory-section {
  flex: 1;
}

.inventory-item {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  transition: all 0.15s;
  overflow: hidden;
}

.inventory-item:hover {
  transform: scale(1.1);
  z-index: 20;
  border-color: var(--arc, #7dd3fc);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.inventory-item .item-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inventory-item .item-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.05);
}

.inventory-item .item-power {
  position: absolute;
  bottom: 1px;
  right: 3px;
  font-size: 10px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.9);
}

.inventory-item .item-quantity {
  position: absolute;
  top: 1px;
  right: 3px;
  font-size: 9px;
  font-weight: 600;
  background: rgba(0,0,0,0.7);
  padding: 1px 4px;
  border-radius: 3px;
}

.item-hover-info {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 8px 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  white-space: nowrap;
  z-index: 100;
  margin-bottom: 8px;
}

.inventory-item:hover .item-hover-info {
  opacity: 1;
}

.hover-name {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
}

.hover-type {
  font-size: 11px;
  color: #6b7280;
}

/* Vault Inventory */
.vault-inventory {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vault-category .category-label {
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.no-items {
  text-align: center;
  padding: 32px;
  color: #6b7280;
  font-size: 14px;
}

/* Item Modal Active State */
.item-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.item-modal.active {
  display: flex;
}

.item-modal-content {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.item-modal-header {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.item-modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}

.item-modal-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-modal-icon.tier-exotic {
  border-color: #ceae33;
  box-shadow: 0 0 20px rgba(206, 174, 51, 0.3);
}

.item-modal-icon.tier-legendary {
  border-color: #522f65;
  box-shadow: 0 0 20px rgba(82, 47, 101, 0.3);
}

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

.item-modal-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
}

.item-modal-type {
  font-size: 13px;
  color: #9ca3af;
}

.item-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.2s;
}

.item-modal-close:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.item-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.item-modal-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.modal-stat {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
}

.modal-stat .stat-name {
  font-size: 12px;
  color: #9ca3af;
}

.modal-stat .stat-value {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
}

/* Weapon stat bars */
.modal-stat.bar-stat {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.modal-stat.power-stat {
  grid-column: 1 / -1;
  background: rgba(206, 174, 51, 0.1);
  border: 1px solid rgba(206, 174, 51, 0.3);
}

.stat-bar-container {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.stat-bar {
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Perks section */
.item-modal-perks {
  margin-top: 16px;
}

.perks-section,
.mods-section,
.masterwork-section,
.enhancement-section {
  margin-bottom: 16px;
}

.perks-label {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.perks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Perk columns - horizontal row like in-game */
.perks-columns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.perk-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 60px;
  cursor: help;
  transition: all 0.2s;
}

.perk-column:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.perk-column .perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.perk-column .perk-name {
  font-size: 10px;
  text-align: center;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Intrinsic section */
.intrinsic-section {
  margin-bottom: 12px;
}

.intrinsic-section .perk-item {
  background: rgba(206, 174, 51, 0.15);
  border-color: rgba(206, 174, 51, 0.4);
}

/* Origin trait section */
.origin-section {
  margin-bottom: 12px;
}

.origin-section .perk-item {
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.4);
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: help;
  transition: all 0.2s;
}

.perk-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.perk-item.intrinsic {
  background: rgba(206, 174, 51, 0.1);
  border-color: rgba(206, 174, 51, 0.3);
}

.perk-item.masterwork {
  background: rgba(206, 174, 51, 0.15);
  border-color: rgba(206, 174, 51, 0.4);
}

.perk-item.mod {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
}

.perk-item.enhancement {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
}

.perk-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.perk-name {
  font-size: 12px;
  color: #e5e7eb;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-modal-actions {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.item-modal-actions button {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.item-action-equip {
  background: var(--arc, #7dd3fc);
  color: #0c0c0c;
}

.item-action-equip:hover {
  opacity: 0.9;
}

.item-action-transfer {
  background: rgba(255,255,255,0.1);
  color: #e5e7eb;
}

.item-action-transfer:hover {
  background: rgba(255,255,255,0.15);
}

.item-action-vault {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.item-action-vault:hover {
  background: rgba(245, 158, 11, 0.3);
}

.item-modal-transfer-targets {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.transfer-header {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.transfer-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.transfer-target {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s;
}

.transfer-target:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--arc, #7dd3fc);
}

.target-icon {
  font-size: 18px;
}

.target-name {
  font-size: 13px;
}

.transfer-status {
  padding: 12px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.transfer-status.info {
  background: rgba(125, 211, 252, 0.1);
  color: var(--arc, #7dd3fc);
}

.transfer-status.success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.transfer-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
