/* ═══════════════════════════════════════════════════════════════
   DASHBOARD STYLES - Lyvora
   Estilos completos para el panel de control del streamer
   ═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ADICIONALES DEL DASHBOARD ── */
:root {
  --yellow: #fbbf24;
  --orange: #FF6D00;
  --sidebar-w: 240px;
}

/* ═══════════════════════════════════════════════════════════════
   UTILIDADES COMUNES
   ═══════════════════════════════════════════════════════════════ */

.avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--border);
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex-1 { flex: 1; }
.flex-1-min { flex: 1; min-width: 0; }
.relative { position: relative; }
.hidden { display: none; }

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

/* ═══════════════════════════════════════════════════════════════
   LAYOUT PRINCIPAL DEL DASHBOARD
   ═══════════════════════════════════════════════════════════════ */

.dashboard-layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.dashboard-content {
  padding: 2rem;
  overflow-y: auto;
  min-width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════ */

.sidebar {
  background: var(--base2);
  border-right: 1px solid var(--border);
  padding: 1.25rem 0.75rem;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-user-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: var(--base3);
  border-radius: var(--radius-sm);
}

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

.sidebar-username {
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-status {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sidebar-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.75rem 0.75rem 0.35rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-xs);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.18s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.sidebar-link i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sidebar-link:hover {
  color: var(--text);
  background: var(--base3);
}

.sidebar-link.active {
  color: var(--primary);
  background: var(--primary-dim);
}

.sidebar-link .badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}

.sidebar-link .badge-primary {
  background: var(--primary);
  color: #fff;
}

.sidebar-link .badge-notification {
  background: var(--live-red);
  color: #fff;
  font-size: 0.62rem;
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
}

.sidebar-link .badge-fuegitos {
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 700;
}

.sidebar-link .badge-store {
  background: rgba(0, 229, 160, 0.15);
  color: #00e5a0;
  border: 1px solid rgba(0, 229, 160, 0.25);
}

.sidebar-link .badge-missions {
  display: none;
  margin-left: auto;
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
}

.sidebar-link .badge-count {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
}

.sidebar-link .badge-count.secondary { color: var(--secondary); }
.sidebar-link .badge-count.red { color: #FF3D5A; }
.sidebar-link .badge-count.yellow { color: var(--yellow); }

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 140;
  top: var(--nav-h);
}

.sidebar-overlay.open { display: block; }

/* ═══════════════════════════════════════════════════════════════
   HEADER DEL DASHBOARD
   ═══════════════════════════════════════════════════════════════ */

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dash-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.dash-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECCIÓN RESUMEN (OVERVIEW)
   ═══════════════════════════════════════════════════════════════ */

/* Hero Section */
.resumen-hero {
  background: linear-gradient(135deg, rgba(123, 63, 242, 0.08) 0%, rgba(0, 229, 255, 0.04) 50%, rgba(123, 63, 242, 0.06) 100%);
  border: 1px solid rgba(123, 63, 242, 0.25);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.resumen-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7B3FF2, #00E5C8, #7B3FF2, transparent);
  animation: heroGlowLine 3s ease-in-out infinite;
}

.resumen-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123, 63, 242, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.resumen-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.resumen-welcome h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.35rem 0;
  background: linear-gradient(90deg, #fff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.resumen-welcome p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.resumen-hero-btn {
  background: linear-gradient(135deg, rgba(123, 63, 242, 0.2), rgba(0, 229, 255, 0.15));
  border: 1px solid rgba(123, 63, 242, 0.4);
  color: #fff;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(123, 63, 242, 0.2);
  text-decoration: none;
}

.resumen-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(123, 63, 242, 0.4), 0 0 40px rgba(0, 229, 255, 0.15);
  border-color: rgba(123, 63, 242, 0.6);
}

/* Status Card */
.resumen-status-card {
  background: linear-gradient(145deg, rgba(10, 10, 15, 0.9), rgba(15, 15, 22, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.resumen-status-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(123, 63, 242, 0.4), rgba(0, 229, 255, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
}

.resumen-status-card.live::before {
  background: linear-gradient(135deg, rgba(255, 61, 90, 0.6), rgba(123, 63, 242, 0.4));
  animation: statusGlow 2s ease-in-out infinite;
}

@keyframes statusGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.resumen-status-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.resumen-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-dim);
  position: relative;
}

.resumen-status-dot.live {
  background: var(--live-red);
  box-shadow: 0 0 0 4px rgba(255, 61, 90, 0.2), 0 0 20px rgba(255, 61, 90, 0.5);
  animation: livePulse 1.2s infinite;
}

.resumen-status-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.resumen-status-info p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0.2rem 0 0 0;
}

.resumen-status-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.resumen-viewers {
  text-align: center;
}

.resumen-viewers .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.resumen-viewers .lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stats Grid */
.resumen-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.resumen-stat-card {
  background: linear-gradient(145deg, rgba(15, 15, 20, 0.9), rgba(10, 10, 15, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.resumen-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #7B3FF2, #00E5C8);
  opacity: 0;
  transition: opacity 0.3s;
}

.resumen-stat-card:hover::before { opacity: 1; }

.resumen-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(123, 63, 242, 0.3);
  box-shadow: 0 10px 40px rgba(123, 63, 242, 0.15);
}

.resumen-stat-card.purple::before { background: linear-gradient(90deg, #7B3FF2, #a855f7); }
.resumen-stat-card.cyan::before { background: linear-gradient(90deg, #00E5C8, #06b6d4); }
.resumen-stat-card.red::before { background: linear-gradient(90deg, #ff3d5a, #fb7185); }
.resumen-stat-card.green::before { background: linear-gradient(90deg, #10b981, #34d399); }

.resumen-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.resumen-stat-card.purple .resumen-stat-icon { background: rgba(123, 63, 242, 0.15); color: #a855f7; }
.resumen-stat-card.cyan .resumen-stat-icon { background: rgba(0, 229, 255, 0.15); color: #00E5C8; }
.resumen-stat-card.red .resumen-stat-icon { background: rgba(255, 61, 90, 0.15); color: #ff3d5a; }
.resumen-stat-card.green .resumen-stat-icon { background: rgba(16, 185, 129, 0.15); color: #10b981; }

.resumen-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.resumen-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Layout Resumen */
.resumen-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.resumen-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resumen-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Cards Resumen */
.resumen-card {
  background: linear-gradient(145deg, rgba(15, 15, 20, 0.95), rgba(10, 10, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.resumen-card-header {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.resumen-card-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.resumen-card-title i {
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(123, 63, 242, 0.5));
}

.resumen-card-body {
  padding: 1.25rem;
}

/* Quick Actions */
.resumen-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.resumen-action-btn {
  background: rgba(123, 63, 242, 0.08);
  border: 1px solid rgba(123, 63, 242, 0.15);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
}

.resumen-action-btn i {
  font-size: 1.25rem;
  color: var(--primary);
}

.resumen-action-btn:hover {
  background: rgba(123, 63, 242, 0.15);
  border-color: rgba(123, 63, 242, 0.3);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   CARDS GENÉRICOS DE SECCIÓN
   ═══════════════════════════════════════════════════════════════ */

.section-card {
  background: var(--base2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-card-header {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-card-title i {
  color: var(--primary);
}

.section-card-body {
  padding: 1.25rem;
}

.section-card:hover {
  border-color: var(--border-hover);
}

/* Grid de 2 columnas */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   STATS MINI (PARA STREAM Y OTRAS SECCIONES)
   ═══════════════════════════════════════════════════════════════ */

.stat-mini {
  background: var(--base2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.stat-mini:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.stat-mini-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-mini-icon.purple { background: var(--primary-dim); color: var(--primary); }
.stat-mini-icon.cyan { background: var(--secondary-dim); color: var(--secondary); }
.stat-mini-icon.red { background: rgba(255, 61, 90, 0.1); color: var(--live-red); }
.stat-mini-icon.green { background: rgba(0, 229, 160, 0.1); color: var(--success); }
.stat-mini-icon.orange { background: rgba(255, 109, 0, 0.1); color: var(--orange); }

.stat-mini-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.stat-mini-lbl {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════════════════════
   ESTADOS VACÍOS Y CARGA
   ═══════════════════════════════════════════════════════════════ */

.empty-state {
  text-align: center;
  color: var(--text-muted);
}

.empty-state-sm {
  padding: 2rem;
  font-size: 0.875rem;
}

.empty-state-md {
  padding: 3rem;
}

.empty-state-lg {
  padding: 4rem 2rem;
}

.empty-state-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.3;
  display: block;
}

.empty-state-title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.empty-state-text {
  font-size: 0.875rem;
}

.loading-spinner {
  font-size: 1.5rem;
  animation: spin 1s linear infinite;
  display: block;
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   MONETIZACIÓN
   ═══════════════════════════════════════════════════════════════ */

.monetiz-hero {
  background: linear-gradient(135deg, rgba(123, 63, 242, 0.15), rgba(0, 212, 184, 0.1));
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

.monetiz-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, #7B3FF2, #00D4B8, #7B3FF2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: neonBorderRotate 3s linear infinite;
  background-size: 200% 200%;
}

@keyframes neonBorderRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.monetiz-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123, 63, 242, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.monetiz-card {
  background: linear-gradient(145deg, rgba(123, 63, 242, 0.05), var(--base2));
  border: 2px solid rgba(123, 63, 242, 0.4);
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(123, 63, 242, 0.15), inset 0 0 40px rgba(123, 63, 242, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.monetiz-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 184, 0.1), transparent);
  transition: left 0.5s ease;
}

.monetiz-card:hover::before {
  left: 100%;
}

.monetiz-card:hover {
  border-color: rgba(0, 212, 184, 0.6);
  box-shadow: 0 0 30px rgba(0, 212, 184, 0.25), inset 0 0 50px rgba(0, 212, 184, 0.05);
  transform: translateY(-3px);
}

.monetiz-feature-card {
  background: var(--base2);
  border: 2px solid rgba(0, 212, 184, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.monetiz-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7B3FF2, #00D4B8, #7B3FF2);
  background-size: 200% 100%;
  animation: neonLine 2s linear infinite;
}

@keyframes neonLine {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.monetiz-feature-card:hover {
  border-color: rgba(0, 212, 184, 0.6);
  box-shadow: 0 8px 32px rgba(0, 212, 184, 0.2);
  transform: translateY(-4px);
}

.monetiz-balance {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00D4B8, #7B3FF2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 212, 184, 0.3);
}

.monetiz-btn-glow {
  background: linear-gradient(135deg, #7B3FF2, #00D4B8);
  border: none;
  box-shadow: 0 0 20px rgba(123, 63, 242, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.monetiz-btn-glow:disabled {
  background: linear-gradient(135deg, #4a4a6a, #3a3a5a);
  box-shadow: none;
  opacity: 0.7;
  cursor: not-allowed;
}

.monetiz-btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.monetiz-btn-glow:hover::before {
  left: 100%;
}

.monetiz-btn-glow:hover {
  box-shadow: 0 0 30px rgba(0, 212, 184, 0.5);
  transform: scale(1.02);
}

.monetiz-progress-bar {
  height: 8px;
  background: linear-gradient(90deg, #7B3FF2, #00D4B8);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(123, 63, 242, 0.5);
  animation: progressGlow 2s ease-in-out infinite;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0%;
  max-width: 100%;
}

@keyframes progressGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(123, 63, 242, 0.5); }
  50% { box-shadow: 0 0 20px rgba(0, 212, 184, 0.7); }
}

.monetiz-icon-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 63, 242, 0.2), rgba(0, 212, 184, 0.2));
  border: 2px solid rgba(123, 63, 242, 0.4);
  font-size: 1.75rem;
  box-shadow: 0 0 20px rgba(123, 63, 242, 0.2);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(123, 63, 242, 0.2); }
  50% { box-shadow: 0 0 30px rgba(0, 212, 184, 0.4); }
}

/* Neon Cards para resumen */
.neon-card-red {
  background: linear-gradient(145deg, rgba(255, 61, 90, 0.08), var(--base2));
  border: 2px solid #FF3D5A;
  box-shadow: 0 0 15px rgba(255, 61, 90, 0.3), inset 0 0 30px rgba(255, 61, 90, 0.05);
  animation: neonPulseRed 2s ease-in-out infinite;
}

.neon-card-purple {
  background: linear-gradient(145deg, rgba(123, 63, 242, 0.08), var(--base2));
  border: 2px solid #7B3FF2;
  box-shadow: 0 0 15px rgba(123, 63, 242, 0.3), inset 0 0 30px rgba(123, 63, 242, 0.05);
  animation: neonPulsePurple 2s ease-in-out infinite;
}

.neon-card-cyan {
  background: linear-gradient(145deg, rgba(0, 212, 184, 0.08), var(--base2));
  border: 2px solid #00D4B8;
  box-shadow: 0 0 15px rgba(0, 212, 184, 0.3), inset 0 0 30px rgba(0, 212, 184, 0.05);
  animation: neonPulseCyan 2s ease-in-out infinite;
}

.neon-card-orange {
  background: linear-gradient(145deg, rgba(255, 109, 0, 0.08), var(--base2));
  border: 2px solid #FF6D00;
  box-shadow: 0 0 15px rgba(255, 109, 0, 0.3), inset 0 0 30px rgba(255, 109, 0, 0.05);
  animation: neonPulseOrange 2s ease-in-out infinite;
}

@keyframes neonPulseRed {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 61, 90, 0.3), inset 0 0 30px rgba(255, 61, 90, 0.05); }
  50% { box-shadow: 0 0 25px rgba(255, 61, 90, 0.5), inset 0 0 40px rgba(255, 61, 90, 0.1); }
}

@keyframes neonPulsePurple {
  0%, 100% { box-shadow: 0 0 15px rgba(123, 63, 242, 0.3), inset 0 0 30px rgba(123, 63, 242, 0.05); }
  50% { box-shadow: 0 0 25px rgba(123, 63, 242, 0.5), inset 0 0 40px rgba(123, 63, 242, 0.1); }
}

@keyframes neonPulseCyan {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 184, 0.3), inset 0 0 30px rgba(0, 212, 184, 0.05); }
  50% { box-shadow: 0 0 25px rgba(0, 212, 184, 0.5), inset 0 0 40px rgba(0, 212, 184, 0.1); }
}

@keyframes neonPulseOrange {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 109, 0, 0.3), inset 0 0 30px rgba(255, 109, 0, 0.05); }
  50% { box-shadow: 0 0 25px rgba(255, 109, 0, 0.5), inset 0 0 40px rgba(255, 109, 0, 0.1); }
}

/* ═══════════════════════════════════════════════════════════════
   VIDEOS (VOD)
   ═══════════════════════════════════════════════════════════════ */

.vod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.vod-card {
  background: var(--base2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
}

.vod-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(123, 63, 242, 0.15);
}

.vod-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--base3);
  overflow: hidden;
}

.vod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vod-duration-badge {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 600;
}

.vod-info {
  padding: 1rem;
}

.vod-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vod-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vod-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.vod-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.vod-modal-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.vdz-fmt {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   REFERIDOS
   ═══════════════════════════════════════════════════════════════ */

.ref-info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

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

.ref-pts-pill {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(251, 191, 36, 0.15);
  color: var(--yellow);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.ref-inner-panel {
  background: var(--base3);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.ref-tab-btn {
  padding: 0.65rem 1.1rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.ref-tab-btn:hover { color: var(--text); }

.ref-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Stats Box para Referidos */
.ref-stat {
  text-align: center;
  padding: 1rem;
}

.ref-stat-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.ref-stat-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ref-stat-lbl {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.ref-stat-sub {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.1rem;
}

/* Countdown */
.ref-cd-wrap {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ref-cd-block {
  text-align: center;
  min-width: 60px;
}

.ref-cd-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.ref-cd-unit {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Steps V2 */
.ref-step-v2-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-dim);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ref-step-v2-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 229, 160, 0.15);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ref-step-v2-title {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   MISIONES
   ═══════════════════════════════════════════════════════════════ */

.missions-v2-empty {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.missions-v2-category {
  margin-bottom: 1.5rem;
}

.missions-v2-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.missions-v2-category-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
}

.missions-v2-category-icon {
  font-size: 1.25rem;
}

.missions-v2-missions-grid {
  display: grid;
  gap: 1rem;
}

.missions-v2-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.missions-v2-section-title {
  font-weight: 700;
  font-size: 1rem;
}

.missions-v2-mission-reward {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-xs);
  background: rgba(251, 191, 36, 0.15);
  color: var(--yellow);
}

.missions-v2-stat-card {
  background: var(--base3);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}

.missions-v2-stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.missions-v2-stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.missions-v2-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.missions-v2-stat-info {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   AGENCIA
   ═══════════════════════════════════════════════════════════════ */

.agency-stat-box {
  background: var(--base3);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
}

.agency-stat-box-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.agency-stat-box-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   REDES SOCIALES
   ═══════════════════════════════════════════════════════════════ */

.social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.social-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--base3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FUEGITOS (PACKS)
   ═══════════════════════════════════════════════════════════════ */

.fuegito-pack {
  background: var(--base2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}

.fuegito-pack:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.pack-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.pack-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pack-fuegito-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pack-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   CLIPS IA - PIPELINE
   ═══════════════════════════════════════════════════════════════ */

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.pipeline-step:last-child {
  border-bottom: none;
}

.pstep-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

.pstep-dot.waiting { background: var(--text-dim); }
.pstep-dot.processing {
  background: var(--secondary);
  animation: pulse 1.5s infinite;
}
.pstep-dot.completed { background: var(--success); }
.pstep-dot.error { background: var(--live-red); }

.pstep-label {
  font-weight: 600;
  font-size: 0.9rem;
  flex: 1;
}

.pstep-status {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.roadmap-state {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.roadmap-state.pending {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.roadmap-state.in-progress {
  background: rgba(0, 229, 255, 0.1);
  color: var(--secondary);
}

.roadmap-state.completed {
  background: rgba(0, 229, 160, 0.1);
  color: var(--success);
}

/* ═══════════════════════════════════════════════════════════════
   APARIENCIA / SWATCHES
   ═══════════════════════════════════════════════════════════════ */

.swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.swatch:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.swatch.selected {
  border-color: #fff;
  box-shadow: 0 0 0 2px var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   TABS Y PANELES
   ═══════════════════════════════════════════════════════════════ */

.dmtab-btn {
  padding: 0.65rem 1.1rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  margin-bottom: -1px;
  transition: all 0.2s;
  white-space: nowrap;
}

.dmtab-btn:hover { color: var(--text); }

.dmtab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ═══════════════════════════════════════════════════════════════
   FORMULARIOS - ELEMENTOS ESPECÍFICOS
   ═══════════════════════════════════════════════════════════════ */

.form-input-icon {
  position: relative;
}

.form-input-icon i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

.form-input-icon input {
  padding-left: 2.5rem;
}

/* Toggle Switch */
.toggle-switch {
  width: 40px;
  height: 22px;
  border-radius: 100px;
  background: var(--base4);
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.toggle-switch.active {
  background: var(--primary);
}

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

.toggle-switch.active::after {
  left: 21px;
}

/* Text Helpers */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--live-red); }
.text-warning { color: var(--yellow); }
.text-cyan { color: #00D4B8; }
.text-orange { color: var(--orange); }

.text-xl { font-size: 1.75rem; }
.text-lg { font-size: 1.25rem; }
.text-md { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* Spacing Helpers */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

/* Flexbox Helpers */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .resumen-layout {
    grid-template-columns: 1fr;
  }

  .resumen-sidebar {
    order: -1;
  }
}

@media (max-width: 900px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: -260px;
    top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    z-index: 150;
    transition: left 0.3s;
    width: 240px;
  }

  .sidebar.open {
    left: 0;
  }

  .dashboard-content {
    padding: 1rem;
  }

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

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

  .vod-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  .dash-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .dash-title {
    font-size: 1.3rem;
  }

  .resumen-hero {
    padding: 1.25rem;
  }

  .resumen-hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .resumen-hero-btn {
    width: 100%;
    justify-content: center;
  }

  .resumen-status-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .resumen-status-stats {
    width: 100%;
    justify-content: space-between;
  }

  .resumen-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .resumen-stat-card {
    padding: 1rem;
  }

  .resumen-stat-value {
    font-size: 1.3rem;
  }

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

  .section-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .monetiz-balance {
    font-size: 2rem;
  }

  .ref-cd-wrap {
    gap: 0.5rem;
  }

  .ref-cd-num {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  .resumen-stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-mini {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ESTILOS FALTANTES - COMPLEMENTOS
   ═══════════════════════════════════════════════════════════════ */

.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-success:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-warning:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.missions-v2-claim-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--base2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  color: var(--text);
  text-align: left;
}

.missions-v2-claim-option:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(123, 63, 242, 0.15);
}

.claim-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

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

.claim-option-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.claim-option-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.notif-follow-request {
  background: linear-gradient(135deg, rgba(123, 63, 242, 0.06), rgba(0, 229, 255, 0.03));
  border-color: rgba(123, 63, 242, 0.15);
}

.notif-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.ref-act-content {
  flex: 1;
  min-width: 0;
}

.ref-act-content strong {
  font-weight: 600;
  font-size: 0.85rem;
}

.ref-act-content span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.15rem;
}

.server-ip-ref {
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.server-ip-ref:hover {
  color: var(--primary);
}

.resumen-obs-guide {
  background: var(--base3);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.resumen-obs-guide ol {
  margin: 0.5rem 0 0 1.25rem;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.resumen-obs-guide ol li {
  margin-bottom: 0.25rem;
}

.resumen-obs-guide code {
  background: rgba(123, 63, 242, 0.1);
  color: var(--secondary);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-family: 'Courier New', monospace;
}

.dash-mobile-tabbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 6, 14, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 200;
  padding: 0.35rem 0;
  justify-content: space-around;
  align-items: center;
}

.dmtab-btn-stream {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  position: relative;
  transition: color 0.15s;
}

.dmtab-btn-stream.active { color: var(--primary); }

.dmtab-btn-stream-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  position: relative;
}

.dmtab-btn-stream.active .dmtab-btn-stream-icon {
  background: var(--primary-dim);
}

.dmtab-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  transition: color 0.15s;
}

.dmtab-home:hover { color: var(--text); }

.dmtab-home i {
  font-size: 1.1rem;
}

.dmtab-notif-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--live-red);
  border: 2px solid rgba(6, 6, 14, 0.97);
}

