/* ==========================================================================
   CYBER NEON & HIGH CONTRAST BRIGHT WHITE DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --cyber-bg: #060913;
  --cyber-bg-card: rgba(15, 23, 42, 0.85);
  --cyber-bg-card-hover: rgba(22, 33, 62, 0.95);
  --cyber-border: rgba(6, 182, 212, 0.3);
  --cyber-border-hover: rgba(6, 182, 212, 0.6);
  
  --neon-cyan: #06b6d4;
  --neon-cyan-glow: rgba(6, 182, 212, 0.45);
  --neon-purple: #8b5cf6;
  --neon-purple-glow: rgba(139, 92, 246, 0.45);
  --neon-gold: #f59e0b;
  --neon-gold-glow: rgba(245, 158, 11, 0.45);
  --neon-green: #10b981;
  --neon-rose: #f43f5e;
  
  --text-primary: #ffffff;
  --text-muted: #e2e8f0;
  --text-cyan: #38bdf8;
  --text-purple: #c084fc;
}

body {
  font-family: 'Prompt', 'Outfit', sans-serif;
  background-color: var(--cyber-bg);
  color: #ffffff !important;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.18), transparent 70%),
    radial-gradient(circle at 10% 40%, rgba(6, 182, 212, 0.12), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1), transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* High Contrast Global Text Helpers */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #ffffff !important;
  font-weight: 700;
}

p, span, label, small, div, strong, b, code {
  color: #f8fafc;
}

.text-muted, .text-secondary, .text-white-50, .text-slate-400 {
  color: #cbd5e1 !important;
}

.text-cyan {
  color: #38bdf8 !important;
}

.text-purple {
  color: #c084fc !important;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--cyber-bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--cyber-border);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff !important;
}

.glass-card:hover {
  border-color: var(--cyber-border-hover);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px var(--neon-cyan-glow);
}

/* Sticky Glass Navbar */
.glass-navbar {
  background: rgba(6, 9, 19, 0.92) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-link-cyber {
  color: #f1f5f9 !important;
  font-weight: 600;
  padding: 8px 16px !important;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.nav-link-cyber:hover, .nav-link-cyber.active {
  color: #ffffff !important;
  background: rgba(6, 182, 212, 0.2);
  box-shadow: inset 0 0 14px rgba(6, 182, 212, 0.3);
}

/* Neon Gradient Buttons */
.btn-neon-primary {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  color: #ffffff !important;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 12px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px var(--neon-cyan-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-neon-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
  color: #ffffff !important;
}

.btn-neon-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000000 !important;
  font-weight: 800;
  border: none;
  border-radius: 14px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--neon-gold-glow);
}

.btn-neon-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
  color: #000000 !important;
}

.btn-neon-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 14px;
  padding: 10px 20px;
  transition: all 0.25s ease;
}

.btn-neon-outline:hover {
  background: rgba(6, 182, 212, 0.25);
  border-color: var(--neon-cyan);
  color: #ffffff !important;
  box-shadow: 0 0 20px var(--neon-cyan-glow);
}

/* Category Glow Pill */
.category-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 22px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.category-pill:hover, .category-pill.active {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(139, 92, 246, 0.3));
  border-color: var(--neon-cyan);
  color: #ffffff !important;
  box-shadow: 0 0 25px var(--neon-cyan-glow);
}

/* Stat Box */
.stat-box {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  color: #ffffff !important;
}

.stat-box:hover {
  border-color: var(--neon-purple);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px var(--neon-purple-glow);
}

/* Tables in Cyber Theme */
.table-dark {
  background-color: transparent !important;
  color: #ffffff !important;
}

.table-dark th {
  color: #f8fafc !important;
  font-weight: 700;
  border-bottom: 2px solid rgba(6, 182, 212, 0.3) !important;
}

.table-dark td {
  color: #f8fafc !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Form Controls */
.form-control, .form-select {
  background-color: rgba(10, 15, 29, 0.9) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px;
}

.form-control:focus, .form-select:focus {
  border-color: #06b6d4 !important;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4) !important;
  color: #ffffff !important;
}

.form-control::placeholder {
  color: #94a3b8 !important;
}

/* SweetAlert2 High Contrast Dark Theme */
.swal2-popup {
  background: rgba(15, 23, 42, 0.98) !important;
  color: #ffffff !important;
  border: 1px solid rgba(6, 182, 212, 0.5) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(6, 182, 212, 0.25) !important;
}

.swal2-title, .swal2-html-container, .swal2-content {
  color: #ffffff !important;
}

.swal2-styled.swal2-confirm {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
}
