/**
 * MACAW MINIAPP - Styles
 *
 * Design moderno e responsivo para Telegram Mini App
 * Tema NEXUS Cyberpunk aplicado
 */

/* ============================================
   RESET E VARIÁVEIS
   ============================================ */
:root {
  /* Cores - Tema Original */
  --bg-primary: #0f0f1a;
  --bg-secondary: #1a1a2e;
  --bg-card: #252542;
  --bg-hover: #2d2d4a;

  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;

  --accent-primary: #7c3aed;
  --accent-secondary: #a855f7;
  --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);

  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  /* Bordas */
  --border-color: #3a3a5a;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;

  /* Espaçamento */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 20px;
  --spacing-2xl: 24px;

  /* Fontes */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 13px;
  --font-size-base: 15px;
  --font-size-lg: 17px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;

  /* Cores - NEXUS Cyberpunk */
  --nexus-cyan: #00F5FF;
  --nexus-cyan-dim: rgba(0,245,255,0.15);
  --nexus-magenta: #FF006E;
  --nexus-magenta-dim: rgba(255,0,110,0.15);
  --nexus-gold: #FFB800;
  --nexus-bg: #020812;
  --nexus-panel: rgba(5,18,40,0.95);
  --nexus-border: rgba(0,245,255,0.2);
  --nexus-border-bright: rgba(0,245,255,0.6);
  --nexus-text: #8ECFDF;
  --nexus-text-bright: #E0F7FA;
  --nexus-green: #39FF14;
  --nexus-red: #FF2442;

  /* Fontes NEXUS */
  --nexus-font-display: 'Orbitron', monospace;
  --nexus-font-mono: 'Share Tech Mono', monospace;
}

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

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Rajdhani', var(--font-family);
  background: var(--nexus-bg);
  color: var(--nexus-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Background Grid Effect */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow from top */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,100,180,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Scanline effect over entire app */
.app-scanline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nexus-cyan), transparent);
  animation: scanline 4s linear infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

@keyframes scanline {
  from { top: 0; }
  to { top: 100vh; }
}

button {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input {
  font-family: var(--font-family);
  outline: none;
}

/* ============================================
   SCREENS
   ============================================ */
.screen {
  display: none;
  height: 100%;
  width: 100%;
}

.screen.active {
  display: flex;
  flex-direction: column;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
  justify-content: center;
  align-items: center;
  background: var(--bg-primary);
}

.loading-content {
  text-align: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--bg-card);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--spacing-lg);
}

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

/* ============================================
   AUTH SCREEN
   ============================================ */
#auth-screen {
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: var(--spacing-2xl);
}

.auth-content {
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.logo {
  margin-bottom: var(--spacing-xl);
}

.logo-icon {
  font-size: 64px;
  margin-bottom: var(--spacing-md);
}

.logo h1 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-2xl);
  font-size: var(--font-size-base);
}

/* ============================================
   BUTTONS - TEMA NEXUS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 14px 20px;
  background: transparent;
  border: 1px solid var(--nexus-cyan);
  color: var(--nexus-cyan);
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  width: 100%;
}

.btn-primary:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: 0 0 24px rgba(0,245,255,0.3), inset 0 0 24px rgba(0,245,255,0.05);
  text-shadow: 0 0 12px var(--nexus-cyan);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid var(--nexus-magenta);
  color: var(--nexus-magenta);
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-secondary:hover {
  background: rgba(255,0,110,0.1);
  box-shadow: 0 0 16px rgba(255,0,110,0.3);
}

.btn-icon-only {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,245,255,0.1);
  border: 1px solid var(--nexus-border);
  border-radius: 4px;
  font-size: var(--font-size-lg);
  transition: all 0.2s;
}

.btn-icon-only:hover {
  background: rgba(0,245,255,0.2);
  border-color: var(--nexus-cyan);
}

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

/* Botão Execute (estilo NEXUS) */
.btn-execute {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid var(--nexus-cyan);
  color: var(--nexus-cyan);
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-execute::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,245,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-execute:hover::before {
  transform: translateX(100%);
}

.btn-execute:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: 0 0 24px rgba(0,245,255,0.3), inset 0 0 24px rgba(0,245,255,0.05);
  text-shadow: 0 0 12px var(--nexus-cyan);
}

/* Botão Clear (estilo NEXUS) */
.btn-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid var(--nexus-magenta);
  color: var(--nexus-magenta);
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-clear:hover {
  background: rgba(255,0,110,0.1);
  box-shadow: 0 0 16px rgba(255,0,110,0.3);
}

/* ============================================
   HEADER - TEMA NEXUS
   ============================================ */
.header {
  background: var(--nexus-panel);
  padding: 16px 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--nexus-border);
  position: relative;
  z-index: 1;
}

.header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nexus-cyan), transparent);
  opacity: 0.6;
}

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

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--nexus-cyan), var(--nexus-magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
  font-family: 'Orbitron', monospace;
  color: var(--nexus-bg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  font-size: var(--font-size-base);
  font-family: 'Rajdhani', sans-serif;
  color: var(--nexus-text-bright);
}

.user-id {
  font-size: 10px;
  color: rgba(142,207,223,0.5);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
}

.balance-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.balance-card {
  background: rgba(0,0,0,0.4);
  padding: 14px;
  border-radius: 4px;
  border: 1px solid var(--nexus-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.balance-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nexus-cyan), transparent);
  opacity: 0.4;
}

.balance-card.primary {
  border-color: var(--nexus-cyan);
  background: rgba(0,245,255,0.05);
}

.balance-card.secondary {
  border-color: rgba(255,184,0,0.3);
  background: rgba(255,184,0,0.05);
}

.balance-label {
  font-size: 9px;
  color: rgba(142,207,223,0.6);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.balance-value {
  font-size: var(--font-size-xl);
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  color: var(--nexus-cyan);
  text-shadow: 0 0 12px rgba(0,245,255,0.4);
}

.balance-card.secondary .balance-value {
  color: var(--nexus-gold);
  text-shadow: 0 0 12px rgba(255,184,0,0.4);
}

/* ============================================
   MAIN NAVIGATION - TEMA NEXUS
   ============================================ */
.main-nav {
  display: flex;
  background: var(--nexus-panel);
  padding: 8px 12px;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--nexus-border);
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.nav-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(0,245,255,0.05);
  border: 1px solid rgba(0,245,255,0.1);
  color: rgba(142,207,223,0.7);
  font-size: 9px;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s;
  min-width: 64px;
}

.nav-item.active {
  background: rgba(0,245,255,0.15);
  border-color: var(--nexus-cyan);
  color: var(--nexus-cyan);
  box-shadow: 0 0 12px rgba(0,245,255,0.2);
}

.nav-item:hover {
  background: rgba(0,245,255,0.1);
  border-color: rgba(0,245,255,0.3);
}

.nav-item:active {
  transform: scale(0.95);
}

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

/* ============================================
   CONTENT - TEMA NEXUS
   ============================================ */
.content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.content-screen {
  display: none;
}

.content-screen.active {
  display: block;
}


.screen-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--nexus-cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Título da buy screen com margem reduzida */
.buy-title {
  margin-bottom: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   HOME SCREEN - TEMA NEXUS
   ============================================ */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--nexus-border);
  border-radius: 4px;
  color: var(--nexus-cyan);
  font-size: 11px;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.quick-action-btn:hover {
  background: rgba(0,245,255,0.05);
  border-color: var(--nexus-cyan);
  box-shadow: 0 0 16px rgba(0,245,255,0.2);
}

.quick-action-btn:active {
  transform: scale(0.98);
}

.quick-action-icon {
  font-size: 32px;
}

.promo-banner {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--nexus-border);
  border-radius: 4px;
  padding: 18px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nexus-magenta), transparent);
  opacity: 0.6;
}

.promo-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--nexus-magenta);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.promo-content p {
  font-size: 11px;
  color: rgba(142,207,223,0.7);
  margin-bottom: 12px;
  font-family: 'Share Tech Mono', monospace;
}

.stats-section {
  margin-top: 16px;
}

.stats-section h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  color: var(--nexus-cyan);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

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

.stat-card {
  background: rgba(0,0,0,0.4);
  padding: 14px;
  border-radius: 4px;
  border: 1px solid var(--nexus-border);
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--nexus-cyan);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 9px;
  color: rgba(142,207,223,0.6);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
}

/* ============================================
   BUY SCREEN - TEMA NEXUS CYBERPUNK
   ============================================ */

/* Scanline effect */
.buy-screen-wrapper {
  position: relative;
}

.buy-screen-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nexus-cyan), transparent);
  animation: scanline 3s linear infinite;
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
}

@keyframes scanline {
  from { top: 0; }
  to { top: 100%; }
}

/* Botão Toggle Filtros */
.btn-toggle-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,245,255,0.08);
  border: 1px solid var(--nexus-cyan);
  color: var(--nexus-cyan);
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  margin-bottom: 12px;
}

.btn-toggle-filters:hover {
  background: rgba(0,245,255,0.15);
  box-shadow: 0 0 16px rgba(0,245,255,0.3);
  text-shadow: 0 0 8px var(--nexus-cyan);
}

.toggle-icon {
  font-size: 14px;
}

.toggle-arrow {
  transition: transform 0.3s;
}

.btn-toggle-filters.expanded .toggle-arrow {
  transform: rotate(180deg);
}

/* Filtros Panel */
.filters-section {
  background: var(--nexus-panel);
  border: 1px solid var(--nexus-border);
  border-radius: 4px;
  padding: 0 16px;
  margin-bottom: 12px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  flex-shrink: 0;
  /* Começa retraído */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.filters-section.expanded {
  max-height: 600px;
  opacity: 1;
  padding: 16px;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  transition-delay: 0.1s;
}

.filters-section.expanded .filters-header {
  opacity: 1;
  transform: translateY(0);
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  transition-delay: 0.15s;
}

.filters-section.expanded .filters-grid {
  opacity: 1;
  transform: translateY(0);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.btn-apply-filters {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--nexus-cyan);
  color: var(--nexus-cyan);
  font-family: var(--nexus-font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.2s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  opacity: 0;
  transform: translateY(-10px);
}

.btn-apply-filters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,245,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-apply-filters:hover::before {
  transform: translateX(100%);
}

.btn-apply-filters:hover {
  background: rgba(0,245,255,0.08);
  box-shadow: 0 0 24px rgba(0,245,255,0.3), inset 0 0 24px rgba(0,245,255,0.05);
  text-shadow: 0 0 12px var(--nexus-cyan);
}

.filters-section.expanded .btn-apply-filters {
  opacity: 1;
  transform: translateY(0);
}

.filters-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nexus-cyan), transparent);
  opacity: 0.6;
}

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

.filters-header h3 {
  font-family: var(--nexus-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--nexus-cyan);
  text-transform: uppercase;
}

.btn-clear-filters {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--nexus-magenta);
  color: var(--nexus-magenta);
  font-family: var(--nexus-font-display);
  font-size: 0.55rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.btn-clear-filters:hover {
  background: rgba(255,0,110,0.15);
  box-shadow: 0 0 12px rgba(255,0,110,0.3);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-group label {
  font-family: var(--nexus-font-mono);
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  color: rgba(142,207,223,0.6);
  text-transform: uppercase;
}

.filter-input, .filter-select {
  padding: 10px 12px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--nexus-border);
  border-radius: 2px;
  color: var(--nexus-cyan);
  font-family: var(--nexus-font-mono);
  font-size: 0.8rem;
  outline: none;
  transition: all 0.2s;
}

.filter-input:focus, .filter-select:focus {
  border-color: var(--nexus-cyan);
  box-shadow: 0 0 0 1px rgba(0,245,255,0.2), 0 0 16px rgba(0,245,255,0.08);
}

.filter-select {
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300F5FF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.filter-select option {
  background: var(--nexus-bg);
  color: var(--nexus-cyan);
}

.filter-input::placeholder {
  color: rgba(142,207,223,0.4);
}


/* Lista de CCs - TEMA NEXUS */
.cc-list-section {
  background: var(--nexus-panel);
  border: 1px solid var(--nexus-border);
  border-radius: 4px;
  padding: 16px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  /* Scroll na lista de CCs */
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}

.cc-list-section::-webkit-scrollbar {
  width: 5px;
}

.cc-list-section::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.3);
  border-radius: 3px;
}

.cc-list-section::-webkit-scrollbar-thumb {
  background: var(--nexus-cyan);
  border-radius: 3px;
}

.cc-list-section::-webkit-scrollbar-thumb:hover {
  background: var(--nexus-cyan);
  box-shadow: 0 0 8px var(--nexus-cyan);
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--nexus-border);
  flex-shrink: 0;
}

.list-header h3 {
  font-family: var(--nexus-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--nexus-cyan);
  text-transform: uppercase;
}

.cc-count {
  font-family: var(--nexus-font-mono);
  font-size: 0.8rem;
  color: var(--nexus-magenta);
  letter-spacing: 2px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255,0,150,0.4);
}

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

.cc-list::-webkit-scrollbar-thumb:hover {
  background: var(--nexus-cyan);
  box-shadow: 0 0 8px var(--nexus-cyan);
}

.cc-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(0,245,255,0.15);
  border-radius: 4px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.cc-list-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--nexus-cyan);
  opacity: 0.3;
  transition: opacity 0.2s;
}

.cc-list-item:hover {
  border-color: var(--nexus-border-bright);
  background: rgba(0,245,255,0.05);
}

.cc-list-item:hover::before {
  opacity: 1;
  box-shadow: 0 0 12px var(--nexus-cyan);
}

.cc-list-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cc-number-row {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--nexus-green);
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(57,255,20,0.5);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.cc-chip {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.52rem;
  background: rgba(0,245,255,0.08);
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid rgba(0,245,255,0.18);
  color: rgba(142,207,223,0.85);
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
}

.cc-chip-price {
  border-color: var(--nexus-gold);
  color: var(--nexus-gold);
  background: rgba(255,184,0,0.08);
  font-weight: 700;
}

.cc-list-item-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.btn-buy-cc-mini {
  padding: 7px 14px;
  background: transparent;
  border: 1px solid var(--nexus-cyan);
  color: var(--nexus-cyan);
  font-family: var(--nexus-font-display);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-buy-cc-mini:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: 0 0 10px rgba(0,245,255,0.3);
}

.btn-add-checker-mini {
  padding: 7px 10px;
  background: transparent;
  border: 1px solid rgba(255,184,0,0.4);
  color: var(--nexus-gold);
  font-family: var(--nexus-font-display);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-add-checker-mini:hover {
  background: rgba(255,184,0,0.1);
  border-color: var(--nexus-gold);
  box-shadow: 0 0 10px rgba(255,184,0,0.3);
}

/* Preço fixo ao lado dos botões */
.cc-price-tag {
  padding: 7px 12px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.3);
  color: var(--nexus-cyan);
  font-family: var(--nexus-font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 3px;
  white-space: nowrap;
  min-width: 50px;
  text-align: center;
}

.btn-add-checker-mini.added {
  background: rgba(255,184,0,0.15);
  border-color: var(--nexus-gold);
  color: var(--nexus-gold);
}

.cc-price-display {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nexus-cyan);
  text-shadow: 0 0 8px rgba(0,245,255,0.4);
  letter-spacing: 1px;
}

.btn-buy-cc {
  width: 100%;
  padding: 11px 14px;
  background: transparent;
  border: 1px solid var(--nexus-cyan);
  color: var(--nexus-cyan);
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  margin-top: 4px;
}

.btn-buy-cc:hover {
  background: rgba(0,245,255,0.12);
  box-shadow: 0 0 18px rgba(0,245,255,0.4), inset 0 0 12px rgba(0,245,255,0.05);
  text-shadow: 0 0 8px var(--nexus-cyan);
  border-color: var(--nexus-cyan);
}

.btn-buy-cc:active {
  transform: scale(0.98);
}

.btn-buy-cc:hover {
  background: rgba(0,245,255,0.15);
  box-shadow: 0 0 16px rgba(0,245,255,0.4);
  text-shadow: 0 0 8px var(--nexus-cyan);
}

.btn-buy-cc:active {
  transform: scale(0.98);
}

/* Confirm Modal - TEMA NEXUS */
#purchase-confirm .modal-content {
  background: var(--nexus-panel);
  border: 1px solid var(--nexus-border);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

#purchase-confirm .modal-header {
  border-bottom-color: var(--nexus-border);
}

#purchase-confirm .modal-header h3 {
  font-family: var(--nexus-font-display);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--nexus-cyan);
  text-transform: uppercase;
}

.confirm-card-display {
  background: rgba(0,0,0,0.4);
  padding: 16px;
  border-radius: 2px;
  border: 1px solid var(--nexus-border);
}

.cc-preview {
  font-family: var(--nexus-font-mono);
  font-size: 0.7rem;
  color: var(--nexus-cyan);
  margin-bottom: 12px;
  padding: 12px;
  background: rgba(0,0,0,0.5);
  border-radius: 2px;
  border: 1px solid rgba(0,245,255,0.2);
  letter-spacing: 1px;
  line-height: 1.8;
}

.price-display, .cashback-display {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,245,255,0.1);
}

.price-display:last-child {
  border-bottom: none;
}

.price-label, .cashback-label {
  font-family: var(--nexus-font-mono);
  font-size: 0.6rem;
  color: rgba(142,207,223,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.price-value {
  font-family: var(--nexus-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nexus-green);
  text-shadow: 0 0 12px rgba(57,255,20,0.4);
}

.cashback-value {
  font-family: var(--nexus-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--nexus-gold);
  text-shadow: 0 0 12px rgba(255,184,0,0.4);
}

/* Empty / Loading states */
.cc-list-empty, .cc-list-loading {
  text-align: center;
  padding: 40px 20px;
  font-family: var(--nexus-font-mono);
  font-size: 0.65rem;
  color: rgba(142,207,223,0.5);
  letter-spacing: 2px;
}

/* Responsividade */
@media (max-width: 768px) {
  .filters-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .filters-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ============================================
   WALLET SCREEN - TEMA NEXUS
   ============================================ */
.wallet-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.wallet-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--nexus-border);
  border-radius: 4px;
  color: var(--nexus-cyan);
  font-size: 9px;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.wallet-action-btn:hover {
  background: rgba(0,245,255,0.05);
  border-color: var(--nexus-cyan);
  box-shadow: 0 0 12px rgba(0,245,255,0.2);
}

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

.action-icon {
  font-size: 24px;
}

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

.wallet-section h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  color: var(--nexus-cyan);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

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

.history-item {
  background: rgba(0,0,0,0.4);
  padding: 14px;
  border-radius: 4px;
  border: 1px solid var(--nexus-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
}

.history-item:hover {
  border-color: var(--nexus-border-bright);
  background: rgba(0,245,255,0.03);
}

.history-item-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.history-card-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.history-card-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.history-card-full .card-number {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--nexus-green);
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(57,255,20,0.3);
  word-break: break-all;
  flex: 1;
}

.btn-copy-card {
  padding: 6px 10px;
  background: rgba(0,245,255,0.1);
  border: 1px solid var(--nexus-cyan);
  border-radius: 3px;
  color: var(--nexus-cyan);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-copy-card:hover {
  background: rgba(0,245,255,0.2);
  box-shadow: 0 0 12px rgba(0,245,255,0.3);
  transform: scale(1.05);
}

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

.btn-chk-card {
  padding: 6px 10px;
  background: rgba(255,0,110,0.08);
  border: 1px solid var(--nexus-magenta);
  border-radius: 3px;
  color: var(--nexus-magenta);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-chk-card:hover {
  background: rgba(255,0,110,0.2);
  box-shadow: 0 0 12px rgba(255,0,110,0.3);
  transform: scale(1.05);
}

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

.btn-chk-card.chk-spinning {
  border-color: var(--nexus-cyan);
  box-shadow: 0 0 10px rgba(0,245,255,0.4);
}

.chk-icon {
  display: inline-block;
  transition: color 0.2s;
}

.chk-icon.spinning {
  animation: spin 0.8s linear infinite;
  color: var(--nexus-cyan);
}

.btn-chk-card.chk-live {
  border-color: var(--nexus-green);
  box-shadow: 0 0 8px rgba(57,255,20,0.3);
}

.btn-chk-card.chk-live .chk-icon {
  color: var(--nexus-green);
}

.btn-chk-card.chk-dead {
  border-color: var(--nexus-magenta);
  box-shadow: 0 0 8px rgba(255,0,110,0.3);
}

.btn-chk-card.chk-dead .chk-icon {
  color: var(--nexus-magenta);
}

.btn-chk-card.chk-error {
  border-color: #f0c040;
  box-shadow: 0 0 8px rgba(240,192,64,0.3);
}

.btn-chk-card.chk-error .chk-icon {
  color: #f0c040;
}

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

.history-date {
  font-size: 9px;
  color: rgba(142,207,223,0.5);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.exchange-indicator {
  font-size: 11px;
  cursor: help;
  flex-shrink: 0;
}

.history-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,245,255,0.1);
}

.history-vendor-level {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--nexus-cyan);
  letter-spacing: 1px;
}

.history-bank {
  font-size: 10px;
  color: rgba(142,207,223,0.6);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 0.5px;
}

.affiliate-box {
  display: flex;
  gap: 8px;
  background: rgba(0,0,0,0.4);
  padding: 12px;
  border-radius: 4px;
  border: 1px solid var(--nexus-border);
}

.affiliate-box code {
  flex: 1;
  font-size: 10px;
  word-break: break-all;
  color: var(--nexus-cyan);
  font-family: 'Share Tech Mono', monospace;
}

.btn-copy {
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--nexus-cyan);
  color: var(--nexus-cyan);
  border-radius: 4px;
  font-size: 10px;
  font-family: 'Share Tech Mono', monospace;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-copy:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: 0 0 12px rgba(0,245,255,0.2);
}

/* ============================================
   CASINO SCREEN - TEMA NEXUS
   ============================================ */
.casino-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.game-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--nexus-border);
  border-radius: 4px;
  color: var(--nexus-cyan);
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.game-btn:hover {
  background: rgba(0,245,255,0.05);
  border-color: var(--nexus-cyan);
  box-shadow: 0 0 16px rgba(0,245,255,0.2);
}

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

.game-icon {
  font-size: 36px;
}

.game-cost {
  font-size: 10px;
  color: var(--nexus-gold);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================
   MODALS - TEMA NEXUS
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  justify-content: center;
  align-items: flex-end;
}

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

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  justify-content: center;
  align-items: flex-end;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--nexus-panel);
  width: 100%;
  max-height: 85vh;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--nexus-border);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--nexus-border);
  background: rgba(0,245,255,0.03);
}

.modal-header h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  color: var(--nexus-cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0,245,255,0.4);
}

.modal-close {
  font-size: 1.5rem;
  color: var(--nexus-magenta);
  padding: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  color: var(--nexus-red);
  text-shadow: 0 0 12px rgba(255,0,110,0.5);
}

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

.modal-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--nexus-border);
  background: rgba(0,245,255,0.02);
}

.modal-footer .btn-primary {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(0,245,255,0.1), rgba(0,245,255,0.05));
  border: 1px solid var(--nexus-cyan);
  color: var(--nexus-cyan);
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  text-transform: uppercase;
}

.modal-footer .btn-primary:hover {
  background: linear-gradient(135deg, rgba(0,245,255,0.2), rgba(0,245,255,0.1));
  box-shadow: 0 0 20px rgba(0,245,255,0.3), inset 0 0 20px rgba(0,245,255,0.05);
  text-shadow: 0 0 8px var(--nexus-cyan);
  transform: translateY(-2px);
}

.modal-footer .btn-primary:active {
  transform: translateY(0);
}

/* Botão de confirmação - Estados de processamento */
#confirm-purchase.processing {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
  border-color: var(--warning);
  color: var(--warning);
  animation: pulse-warning 1.5s infinite;
}

#confirm-purchase.success {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.1));
  border-color: var(--nexus-green);
  color: var(--nexus-green);
  animation: glow-success 0.8s infinite alternate;
}

#confirm-purchase .loading-spinner {
  display: inline-block;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

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

@keyframes modalPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

@keyframes pulse-warning {
  0%, 100% {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
    opacity: 0.8;
  }
}

@keyframes glow-success {
  from {
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
  }
  to {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
  }
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 10px;
  color: rgba(142,207,223,0.6);
  margin-bottom: 8px;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 12px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--nexus-border);
  border-radius: 2px;
  color: var(--nexus-cyan);
  font-size: 13px;
  font-family: 'Share Tech Mono', monospace;
  outline: none;
  transition: all 0.2s;
}

.form-group input:focus {
  border-color: var(--nexus-cyan);
  box-shadow: 0 0 0 1px rgba(0,245,255,0.2), 0 0 16px rgba(0,245,255,0.08);
}

.form-group input::placeholder {
  color: rgba(142,207,223,0.4);
}

/* ============================================
   MÉTODOS DE PAGAMENTO (PIX / CRIPTO)
   ============================================ */

.payment-methods {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.method-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--nexus-border);
  border-radius: 6px;
  color: rgba(142,207,223,0.6);
  font-size: 10px;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.method-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.02), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.method-btn:hover::before {
  transform: translateX(100%);
}

.method-btn.active {
  background: rgba(0,245,255,0.08);
  border-color: var(--nexus-cyan);
  color: var(--nexus-cyan);
  box-shadow: 0 0 16px rgba(0,245,255,0.15), inset 0 0 16px rgba(0,245,255,0.03);
}

.method-btn.active .method-icon {
  text-shadow: 0 0 12px var(--nexus-cyan);
}

.method-btn:hover {
  background: rgba(0,245,255,0.05);
  border-color: rgba(0,245,255,0.4);
}

.method-btn[data-method="crypto"].active {
  background: rgba(255,184,0,0.08);
  border-color: rgba(255,184,0,0.5);
  color: var(--nexus-gold);
  box-shadow: 0 0 16px rgba(255,184,0,0.15), inset 0 0 16px rgba(255,184,0,0.03);
}

.method-btn[data-method="crypto"].active .method-icon {
  text-shadow: 0 0 12px var(--nexus-gold);
}

.method-icon {
  font-size: 24px;
  transition: all 0.3s;
}

/* ============================================
   CRYPTO OPTIONS
   ============================================ */

.crypto-options {
  margin-bottom: 16px;
  padding: 14px;
  background: rgba(255,184,0,0.05);
  border: 1px solid rgba(255,184,0,0.15);
  border-radius: 6px;
}

.crypto-options label {
  display: block;
  font-size: 9px;
  color: rgba(255,184,0,0.7);
  margin-bottom: 10px;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.crypto-options select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 4px;
  color: var(--nexus-gold);
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFB800' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.crypto-options select:focus {
  border-color: var(--nexus-gold);
  box-shadow: 0 0 0 1px rgba(255,184,0,0.2), 0 0 16px rgba(255,184,0,0.1);
  background-color: rgba(0,0,0,0.7);
}

.crypto-options select option {
  background: var(--nexus-bg);
  color: var(--nexus-gold);
  padding: 10px;
  font-family: 'Orbitron', monospace;
}

/* ============================================
   ADD BALANCE - INPUT ESTILIZADO
   ============================================ */

.amount-input {
  margin-top: 8px;
}

.amount-input label {
  display: block;
  font-size: 10px;
  color: rgba(142,207,223,0.6);
  margin-bottom: 8px;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.amount-input input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--nexus-border);
  border-radius: 4px;
  color: var(--nexus-cyan);
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  outline: none;
  transition: all 0.3s;
}

.amount-input input:focus {
  border-color: var(--nexus-cyan);
  box-shadow: 0 0 0 1px rgba(0,245,255,0.2), 0 0 20px rgba(0,245,255,0.1);
  background: rgba(0, 245, 255, 0.03);
}

.amount-input input::placeholder {
  color: rgba(142,207,223,0.3);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.input-hint {
  font-size: 9px;
  color: rgba(142,207,223,0.5);
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(0,245,255,0.05);
  border-radius: 4px;
  border: 1px solid rgba(0,245,255,0.1);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.input-hint.crypto-hint {
  background: rgba(255,184,0,0.05);
  border-color: rgba(255,184,0,0.15);
  color: rgba(255,184,0,0.6);
}

/* ============================================
   CONVERSÃO BRL → USD
   ============================================ */

.conversion-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 16px;
  margin-top: 14px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(0, 245, 255, 0.02));
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.conversion-display::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nexus-cyan), transparent);
  opacity: 0.5;
}

.conversion-label {
  font-size: 9px;
  color: rgba(142, 207, 223, 0.6);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.conversion-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--nexus-cyan);
  font-family: 'Orbitron', monospace;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.4);
}

/* Payment Area */
.payment-area {
  margin-top: 16px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  border: 1px solid var(--nexus-border);
}

/* ============================================
   TOAST NOTIFICATIONS - TEMA NEXUS
   ============================================ */
#toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--nexus-panel);
  border: 1px solid var(--nexus-border);
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,245,255,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideDown 0.3s ease;
  min-width: 280px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toast.success {
  border-left: 4px solid var(--nexus-green);
  box-shadow: 0 4px 20px rgba(57,255,20,0.3);
}
.toast.error {
  border-left: 4px solid var(--nexus-red);
  box-shadow: 0 4px 20px rgba(255,36,66,0.3);
}
.toast.warning {
  border-left: 4px solid var(--nexus-gold);
  box-shadow: 0 4px 20px rgba(255,184,0,0.3);
}
.toast.info {
  border-left: 4px solid var(--nexus-cyan);
  box-shadow: 0 4px 20px rgba(0,245,255,0.3);
}

/* ============================================
   RESPONSIVE - TEMA NEXUS
   ============================================ */
@media (max-width: 480px) {
  .wrapper {
    padding: 12px;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .filters-grid {
    grid-template-columns: 1fr;
  }

  .wallet-actions {
    grid-template-columns: 1fr;
  }

  .cc-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-buy-cc {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .filters-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .modal {
    align-items: center;
  }

  .modal-content {
    max-width: 450px;
    border-radius: 16px;
  }
}

@media (min-width: 1024px) {
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   PAGAMENTO - MODAL FLUTUANTE
   ============================================ */

/* Badge de notificação */
.notification-badge {
  background: var(--nexus-magenta);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
  animation: pulse 2s infinite;
}

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

/* Caixa de ordem pendente */
.pending-order-box {
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid var(--nexus-gold);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.pending-order-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  color: var(--nexus-gold);
  letter-spacing: 1px;
}

.pending-icon {
  font-size: 16px;
}

.pending-order-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pending-value {
  font-size: 24px;
  font-weight: bold;
  color: var(--nexus-cyan);
  font-family: 'Orbitron', monospace;
}

.pending-method {
  font-size: 12px;
  color: var(--nexus-text);
  background: rgba(0, 245, 255, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--nexus-border);
}

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

.btn-pay, .btn-cancel {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-pay {
  background: var(--nexus-cyan);
  color: #000;
}

.btn-pay:hover {
  background: var(--nexus-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.btn-cancel {
  background: rgba(255, 0, 110, 0.2);
  color: var(--nexus-magenta);
  border: 1px solid var(--nexus-magenta);
}

.btn-cancel:hover {
  background: var(--nexus-magenta);
  color: #fff;
}

/* Modal de Pagamento Flutuante */
.modal-payment-overlay {
  align-items: center;
}

.payment-modal-content {
  max-width: 450px;
  margin: 20px;
  border: 1px solid var(--nexus-gold);
  box-shadow: 0 0 30px rgba(255, 184, 0, 0.2);
}

/* Timer de Pagamento */
.payment-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid var(--nexus-gold);
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.timer-text {
  font-size: 12px;
  color: var(--nexus-text);
}

.timer-value {
  font-family: 'Share Tech Mono', monospace;
  font-size: 20px;
  color: var(--nexus-gold);
  font-weight: bold;
}

/* Valor do Pagamento */
.payment-value-display {
  text-align: center;
  padding: 16px;
  background: rgba(0, 245, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 16px;
}

.value-label {
  display: block;
  font-size: 11px;
  color: var(--nexus-text);
  margin-bottom: 4px;
}

.value-amount {
  font-family: 'Orbitron', monospace;
  font-size: 32px;
  color: var(--nexus-cyan);
  font-weight: bold;
  letter-spacing: 2px;
}

/* QR Code */
.payment-qr-area {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 16px;
}

.payment-qr-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border: 2px solid var(--nexus-gold);
  border-radius: 8px;
  background: #fff;
}

/* Área Copia e Cola */
.payment-copy-area {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.payment-copy-area label {
  display: block;
  font-size: 11px;
  color: var(--nexus-text);
  margin-bottom: 8px;
  font-family: 'Share Tech Mono', monospace;
}

#payment-copy-code {
  display: block;
  background: rgba(0, 245, 255, 0.05);
  padding: 12px;
  border-radius: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--nexus-cyan);
  word-break: break-all;
  border: 1px solid var(--nexus-border);
  margin-bottom: 10px;
}

.btn-copy-payment {
  width: 100%;
  padding: 10px;
  background: var(--nexus-cyan);
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-copy-payment:hover {
  background: var(--nexus-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

/* Instruções */
.payment-instructions {
  background: rgba(0, 245, 255, 0.05);
  padding: 12px;
  border-radius: 8px;
  border-left: 3px solid var(--nexus-cyan);
}

.payment-instructions p {
  font-size: 12px;
  color: var(--nexus-text);
  margin-bottom: 6px;
}

.payment-instructions .small-text {
  font-size: 10px;
  color: var(--nexus-text-muted);
  margin-top: 8px;
}

/* ============================================
   CHECKER SCREEN STYLES
   ============================================ */

/* Stats Strip */
.checker-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--nexus-border);
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.checker-stat-cell {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--nexus-border);
  border-radius: 3px;
  padding: 8px 6px;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.checker-stat-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.4;
}

.checker-stat-cell.c-total::before { color: var(--nexus-cyan); }
.checker-stat-cell.c-live::before { color: var(--nexus-green); }
.checker-stat-cell.c-dead::before { color: var(--nexus-red); }
.checker-stat-cell.c-error::before { color: var(--nexus-gold); }

.checker-stat-label {
  font-family: var(--nexus-font-mono);
  font-size: 0.48rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.c-total .checker-stat-label { color: rgba(0, 245, 255, 0.5); }
.c-live .checker-stat-label { color: rgba(57, 255, 20, 0.5); }
.c-dead .checker-stat-label { color: rgba(255, 36, 66, 0.5); }
.c-error .checker-stat-label { color: rgba(255, 184, 0, 0.5); }

.checker-stat-val {
  font-family: var(--nexus-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.c-total .checker-stat-val { color: var(--nexus-cyan); text-shadow: 0 0 10px rgba(0, 245, 255, 0.4); }
.c-live .checker-stat-val { color: var(--nexus-green); text-shadow: 0 0 10px rgba(57, 255, 20, 0.4); }
.c-dead .checker-stat-val { color: var(--nexus-red); text-shadow: 0 0 10px rgba(255, 36, 66, 0.4); }
.c-error .checker-stat-val { color: var(--nexus-gold); text-shadow: 0 0 10px rgba(255, 184, 0, 0.4); }

/* Progress Bar */
.checker-progress-wrap {
  padding: 0 16px 12px;
  flex-shrink: 0;
}

.checker-progress-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--nexus-font-mono);
  font-size: 0.58rem;
  color: rgba(142, 207, 223, 0.5);
  margin-bottom: 5px;
}

.checker-progress-track {
  height: 3px;
  background: rgba(0, 245, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}

.checker-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--nexus-cyan), var(--nexus-magenta));
  border-radius: 2px;
  width: 0%;
  transition: width 0.35s ease;
  position: relative;
}

.checker-progress-fill::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 6px white;
}

/* Checker List */
.checker-list-section {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.checker-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 245, 255, 0.04);
}

.checker-list-header h3 {
  font-family: var(--nexus-font-display);
  font-size: 0.58rem;
  letter-spacing: 3px;
  color: var(--nexus-cyan);
  margin: 0;
}

.btn-clear-checker {
  background: transparent;
  border: 1px solid rgba(255, 0, 110, 0.35);
  color: var(--nexus-magenta);
  font-family: var(--nexus-font-display);
  font-size: 0.5rem;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-clear-checker:hover {
  background: rgba(255, 0, 110, 0.08);
  box-shadow: 0 0 12px rgba(255, 0, 110, 0.2);
}

.checker-list {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--nexus-cyan) transparent;
  padding: 8px 0;
}

.checker-list::-webkit-scrollbar {
  width: 3px;
}

.checker-list::-webkit-scrollbar-thumb {
  background: var(--nexus-cyan);
  border-radius: 2px;
}

.checker-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 12px;
}

.checker-empty-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.checker-empty-state p {
  font-family: var(--nexus-font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(0, 245, 255, 0.5);
  text-align: center;
  margin: 0;
}

/* Checker List Items */
.checker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 245, 255, 0.04);
  animation: fadeIn 0.25s ease both;
  position: relative;
  transition: background 0.2s;
}

.checker-item:hover {
  background: rgba(0, 245, 255, 0.025);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.checker-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.checker-item-icon.pending { background: var(--nexus-cyan-dim); color: var(--nexus-cyan); border: 1px solid var(--nexus-border); animation: spin 1s linear infinite; }
.checker-item-icon.testing { background: rgba(0, 245, 255, 0.2); color: var(--nexus-cyan); border: 1px solid var(--nexus-cyan); animation: spin 0.5s linear infinite; box-shadow: 0 0 10px rgba(0, 245, 255, 0.4); }
.checker-item-icon.live { background: rgba(57, 255, 20, 0.12); color: var(--nexus-green); border: 1px solid rgba(57, 255, 20, 0.2); }
.checker-item-icon.dead { background: rgba(255, 36, 66, 0.12); color: var(--nexus-red); border: 1px solid rgba(255, 36, 66, 0.2); }
.checker-item-icon.error { background: rgba(255, 184, 0, 0.12); color: var(--nexus-gold); border: 1px solid rgba(255, 184, 0, 0.2); }

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

.checker-item-number {
  font-family: var(--nexus-font-mono);
  font-size: 0.72rem;
  color: var(--nexus-text-bright);
  flex: 1;
  word-break: break-all;
}

.checker-item-badge {
  font-family: var(--nexus-font-display);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.checker-item-badge.pending { background: var(--nexus-cyan-dim); color: var(--nexus-cyan); }
.checker-item-badge.testing { background: rgba(0, 245, 255, 0.15); color: var(--nexus-cyan); border: 1px solid var(--nexus-cyan); animation: pulse 1s ease-in-out infinite; }
.checker-item-badge.live { background: rgba(57, 255, 20, 0.12); color: var(--nexus-green); border: 1px solid rgba(57, 255, 20, 0.25); }
.checker-item-badge.dead { background: rgba(255, 36, 66, 0.12); color: var(--nexus-red); border: 1px solid rgba(255, 36, 66, 0.25); }
.checker-item-badge.error { background: rgba(255, 184, 0, 0.12); color: var(--nexus-gold); border: 1px solid rgba(255, 184, 0, 0.25); }

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 5px rgba(0, 245, 255, 0.2); }
  50% { opacity: 0.7; box-shadow: 0 0 15px rgba(0, 245, 255, 0.4); }
}

/* Checker Actions */
.checker-actions {
  display: flex;
  gap: 10px;
  padding: 16px;
  flex-shrink: 0;
}

.btn-checker-start {
  flex: 1;
  padding: 13px;
  background: transparent;
  border: 1px solid var(--nexus-cyan);
  color: var(--nexus-cyan);
  font-family: var(--nexus-font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-checker-start::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-checker-start:hover::before {
  transform: translateX(100%);
}

.btn-checker-start:hover {
  background: rgba(0, 245, 255, 0.07);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
  text-shadow: 0 0 8px var(--nexus-cyan);
}

.btn-checker-start:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-checker-stop {
  flex: 1;
  padding: 13px;
  background: transparent;
  border: 1px solid var(--nexus-magenta);
  color: var(--nexus-magenta);
  font-family: var(--nexus-font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-checker-stop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-checker-stop:hover::before {
  transform: translateX(100%);
}

.btn-checker-stop:hover {
  background: rgba(255, 0, 110, 0.07);
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.2);
  text-shadow: 0 0 8px var(--nexus-magenta);
}

/* Checker button in CC list */
.btn-add-checker {
  padding: 10px 14px;
  background: transparent;
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: var(--nexus-gold);
  font-family: var(--nexus-font-display);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-add-checker:hover {
  background: rgba(255, 184, 0, 0.08);
  border-color: var(--nexus-gold);
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.3);
}

.btn-add-checker.added {
  background: rgba(255, 184, 0, 0.15);
  border-color: var(--nexus-gold);
  color: var(--nexus-gold);
}
