@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ============================================================
   AKUMA PROXYS - DASHBOARD & ÁREA DO CLIENTE STYLES
   Tema Obsidian Luxury Red Neon (Akuma Theme)
   ============================================================ */

.dash-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
  background-color: #07080c;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(239, 68, 68, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
  color: #f8fafc;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.dash-sidebar {
  background: #0a0d14;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.dash-brand {
  margin-bottom: 28px;
  padding-left: 6px;
}

.dash-brand .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.dash-brand .logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f87171, #dc2626);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.4);
}

.dash-brand .logo-icon svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
}

.dash-brand .logo-text span {
  background: linear-gradient(135deg, #f87171, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dash-menu-section {
  flex-grow: 1;
}

.dash-section-title {
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-left: 8px;
}

.dash-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.dash-nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.dash-nav-item a:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #ffffff;
  border-color: rgba(239, 68, 68, 0.2);
}

.dash-nav-item.active a {
  border: 1px solid #ef4444;
  background: rgba(239, 68, 68, 0.14);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.25);
}

.dash-nav-item svg {
  width: 17px;
  height: 17px;
  color: #f87171;
  flex-shrink: 0;
}

.dash-sidebar-bottom {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-nav-bottom-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dash-nav-bottom-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.dash-nav-bottom-item svg {
  width: 17px;
  height: 17px;
  color: #94a3b8;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.dash-topbar-header {
  height: 60px;
  background: #080204;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dash-breadcrumb {
  font-size: 13.5px;
  font-weight: 600;
  color: #94a3b8;
}

.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-user-email {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.dash-topbar-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.dash-topbar-avatar svg {
  width: 16px;
  height: 16px;
}

.dash-topbar-door-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dash-topbar-door-btn:hover {
  color: #ffffff;
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.12);
}

.dash-topbar-door-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   CONTEÚDO PRINCIPAL
   ============================================================ */
.dash-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dash-content {
  padding: 36px 40px;
  flex-grow: 1;
}

/* Welcome Section */
.dash-welcome-section {
  margin-bottom: 28px;
}

.dash-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.32);
  color: #f87171;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.pulse-dot-red {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

.dash-welcome-title {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 6px 0;
}

.dash-welcome-title .user-highlight {
  color: #ef4444;
}

.dash-welcome-sub {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
  margin: 0;
}

/* ============================================================
   GRID DE 4 MÉTRICAS (TEMA VERMELHO)
   ============================================================ */
.dash-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.metric-card {
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.metric-card:hover {
  transform: translateY(-2px);
}

.card-red {
  background: radial-gradient(circle at 100% 0%, rgba(220, 38, 38, 0.22), transparent 70%), rgba(26, 8, 12, 0.85);
  border-color: rgba(239, 68, 68, 0.3);
}

.card-emerald {
  background: radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.18), transparent 70%), rgba(10, 20, 18, 0.85);
  border-color: rgba(16, 185, 129, 0.25);
}

.card-rose {
  background: radial-gradient(circle at 100% 0%, rgba(244, 63, 94, 0.18), transparent 70%), rgba(26, 12, 18, 0.85);
  border-color: rgba(244, 63, 94, 0.25);
}

.card-amber {
  background: radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.18), transparent 70%), rgba(24, 18, 10, 0.85);
  border-color: rgba(245, 158, 11, 0.25);
}

.metric-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.box-red {
  background: rgba(239, 68, 68, 0.18);
  color: #ef4444;
}

.box-emerald {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
}

.box-rose {
  background: rgba(244, 63, 94, 0.18);
  color: #fb7185;
}

.box-amber {
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
}

.metric-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.metric-val {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.metric-val.text-sm {
  font-size: 20px;
}

/* ============================================================
   TABELA DE PEDIDOS
   ============================================================ */
.orders-card {
  background: rgba(20, 7, 11, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 36px;
}

.orders-header {
  margin-bottom: 20px;
}

.orders-header h3 {
  font-size: 18px;
  font-weight: 750;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.orders-table-wrap {
  overflow-x: auto;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.orders-table th {
  font-size: 11.5px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.orders-table td {
  padding: 14px 16px;
  font-size: 13.5px;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.order-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
}

.order-badge.paid {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.order-badge.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.orders-empty-box {
  text-align: center;
  padding: 36px 20px;
  color: #94a3b8;
}

.orders-empty-box p {
  margin: 8px 0 18px 0;
  font-size: 13.5px;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 1100px) {
  .dash-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .dash-layout {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    display: none;
  }
  .dash-content {
    padding: 24px 20px;
  }
  .dash-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRINT 2: DASHBOARD STATS CARDS (4 COLS)
   ============================================================ */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .dash-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.dash-stat-card {
  position: relative;
  background: rgba(14, 10, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dash-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.65);
}

.card-purple-glow {
  background-image: radial-gradient(circle at top left, rgba(168, 85, 247, 0.18) 0%, transparent 65%);
}
.card-teal-glow {
  background-image: radial-gradient(circle at top left, rgba(20, 184, 166, 0.18) 0%, transparent 65%);
}
.card-rose-glow {
  background-image: radial-gradient(circle at top left, rgba(244, 63, 94, 0.18) 0%, transparent 65%);
}
.card-amber-glow {
  background-image: radial-gradient(circle at top left, rgba(245, 158, 11, 0.18) 0%, transparent 65%);
}

.stat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.card-purple-glow .stat-icon-wrap { color: #c084fc; border-color: rgba(168, 85, 247, 0.25); }
.card-teal-glow .stat-icon-wrap { color: #2dd4bf; border-color: rgba(20, 184, 166, 0.25); }
.card-rose-glow .stat-icon-wrap { color: #fb7185; border-color: rgba(244, 63, 94, 0.25); }
.card-amber-glow .stat-icon-wrap { color: #fbbf24; border-color: rgba(245, 158, 11, 0.25); }

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* ============================================================
   PRINT 3 & PRINT 4: HISTÓRICO DE PEDIDOS
   ============================================================ */
.pedidos-top-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0 20px 0;
  max-width: 600px;
}

@media (max-width: 640px) {
  .pedidos-top-metrics {
    grid-template-columns: 1fr;
  }
}

.pedidos-metric-box {
  background: rgba(14, 10, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(16px);
}

.pedidos-metric-box .metric-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pedidos-metric-box .metric-value {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Filtros de Pedidos */
.pedidos-filters-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.order-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.order-filter-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.order-filter-btn.active {
  background: #a855f7;
  border-color: #a855f7;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.4);
}

/* Lista de Pedidos (Estilo Print 3) */
.orders-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-card-row {
  background: rgba(14, 10, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-card-row:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.order-main-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.order-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  flex-shrink: 0;
}

.order-main-info {
  flex: 1;
  min-width: 200px;
}

.order-meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #94a3b8;
  margin-bottom: 4px;
}

.order-meta-code {
  font-family: var(--font-mono, monospace);
  font-weight: 700;
  color: #cbd5e1;
}

.order-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.order-status-pill.pago {
  background: rgba(16, 185, 129, 0.14);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.order-status-pill.pendente {
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.order-product-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.order-type-tag {
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.order-sub-desc {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.order-col-metric {
  text-align: right;
  min-width: 90px;
}

.order-col-metric .metric-tag {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.order-col-metric .metric-val {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.order-eye-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.order-eye-btn:hover,
.order-eye-btn.active {
  background: #a855f7;
  border-color: #a855f7;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.4);
}

/* ============================================================
   PRINT 4: DETALHES DO PEDIDO EXPANDIDO (GRID DE 8 ITENS)
   ============================================================ */
.order-expanded-details {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInDown 0.25s ease-out;
}

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

.order-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 900px) {
  .order-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .order-details-grid {
    grid-template-columns: 1fr;
  }
}

.detail-sub-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
}

.detail-sub-box .sub-label {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.detail-sub-box .sub-val {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  word-break: break-all;
}

/* ============================================================
   SEÇÃO SEGURANÇA & 2FA (PRINT 2 EM VERMELHO AKUMA)
   ============================================================ */
.security-card {
  background: #0d111a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.security-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.security-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.security-card-title svg {
  color: #ef4444;
}

.sec-card-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sec-card-row {
  background: rgba(18, 22, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec-card-row:hover {
  background: rgba(26, 32, 48, 0.85);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.sec-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.sec-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.sec-card-row:hover .sec-icon-box {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.3);
}

.sec-row-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.sec-row-sub {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sec-row-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sec-status-text {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
}

.badge-2fa-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulseDotSec 1.8s infinite;
}

@keyframes pulseDotSec {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #34d399; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.btn-sec-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.btn-sec-action:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.5);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.3);
}

.btn-sec-primary {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-color: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.35);
}

.btn-sec-primary:hover {
  background: linear-gradient(135deg, #f87171, #ef4444);
  box-shadow: 0 0 22px rgba(239, 68, 68, 0.5);
}

.btn-sec-link {
  background: transparent;
  border: none;
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 6px;
  transition: color 0.2s;
  font-family: inherit;
}

.btn-sec-link:hover {
  color: #f87171;
}

/* Modal 2FA OTP */
.otp-input-2fa {
  width: 100%;
  max-width: 260px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
  color: #ffffff;
  padding: 12px 16px;
  margin: 16px auto;
  display: block;
  transition: all 0.2s ease;
}

.otp-input-2fa:focus {
  outline: none;
  border-color: #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}
