/* ==========================================================================
   RISING ATOM — PREMIUM CYBER / ATOMIC DESIGN SYSTEM (UPGRADED v9 + 360 RADAR)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Cairo:wght@400;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #04060a;
  --bg-card: rgba(12, 17, 28, 0.92);
  --bg-card-hover: rgba(20, 28, 46, 0.97);
  --bg-header: rgba(4, 6, 10, 0.94);
  
  --primary-cyan: #00f2fe;
  --primary-blue: #4facfe;
  --accent-purple: #7928ca;
  --accent-magenta: #ff0080;
  --accent-orange: #ff9449;
  --accent-green: #00e676;
  --accent-red: #ff3366;
  
  /* High-Contrast Text Colors */
  --text-main: #ffffff;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  
  --border-glow: rgba(0, 242, 254, 0.4);
  --border-card: rgba(255, 255, 255, 0.14);
  
  /* Gradients */
  --grad-cyan-blue: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --grad-purple-pink: linear-gradient(135deg, #7928ca 0%, #ff0080 100%);
  --grad-orange-red: linear-gradient(135deg, #ff9449 0%, #ff3366 100%);
  --grad-green-cyan: linear-gradient(135deg, #00e676 0%, #00f2fe 100%);
  --grad-dark-glass: linear-gradient(180deg, rgba(16, 22, 36, 0.95) 0%, rgba(8, 12, 20, 0.98) 100%);
  --grad-hero-text: linear-gradient(135deg, #ffffff 0%, #f1f5f9 45%, #00f2fe 100%);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-arabic: 'Cairo', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Shadows & Effects */
  --glow-cyan: 0 0 35px rgba(0, 242, 254, 0.45);
  --glow-purple: 0 0 35px rgba(121, 40, 202, 0.45);
  --glow-red: 0 0 35px rgba(255, 51, 102, 0.45);
  --box-shadow-card: 0 15px 35px -10px rgba(0, 0, 0, 0.8);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RTL Support for Arabic */
html[dir="rtl"] body {
  font-family: var(--font-arabic), sans-serif;
  text-align: right;
}

html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4, html[dir="rtl"] h5, html[dir="rtl"] h6 {
  font-family: var(--font-arabic), sans-serif;
}

html[dir="rtl"] .me-1, html[dir="rtl"] .me-2, html[dir="rtl"] .me-3 {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}

html[dir="rtl"] .ms-1, html[dir="rtl"] .ms-2, html[dir="rtl"] .ms-3 {
  margin-left: 0 !important;
  margin-right: 0.5rem !important;
}

/* --- Global Reset & High-Contrast Typography --- */
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: -0.02em;
}

p, li, span, label {
  color: #e2e8f0;
}

.text-muted {
  color: #cbd5e1 !important;
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Background Mesh & Overlay */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  background: 
    radial-gradient(circle at 15% 20%, rgba(121, 40, 202, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(0, 242, 254, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(255, 148, 73, 0.14) 0%, transparent 50%);
  filter: blur(40px);
}

.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* --- Header & Official Logo --- */
.navbar-custom {
  background-color: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-card);
  padding: 1rem 0;
  transition: var(--transition-smooth);
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.agency-logo-img {
  height: 48px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
  border: 1px solid rgba(0, 242, 254, 0.35);
  transition: var(--transition-smooth);
}

.navbar-brand:hover .agency-logo-img {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.7);
}

.nav-link-custom {
  color: #cbd5e1 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link-custom:hover, .nav-link-custom.active {
  color: var(--primary-cyan) !important;
}

/* --- Glassmorphic Card Utility --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 22px;
  box-shadow: var(--box-shadow-card);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0, 242, 254, 0.25);
}

/* --- EXTRA-LARGE METARISE LOGO WOW UI EFFECTS --- */
.metarise-logo-wow {
  max-height: 220px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 35px rgba(121, 40, 202, 0.85)) drop-shadow(0 0 65px rgba(255, 0, 128, 0.6)) drop-shadow(0 0 90px rgba(0, 242, 254, 0.5));
  animation: metariseFloatGlow 3.2s ease-in-out infinite alternate;
}

.metarise-logo-wow:hover {
  transform: scale(1.12) rotate(1.5deg);
  filter: drop-shadow(0 0 50px rgba(121, 40, 202, 1)) drop-shadow(0 0 90px rgba(255, 0, 128, 0.9)) drop-shadow(0 0 120px rgba(0, 242, 254, 0.8));
}

@keyframes metariseFloatGlow {
  0% {
    transform: translateY(0px) scale(1);
    filter: drop-shadow(0 0 30px rgba(121, 40, 202, 0.75)) drop-shadow(0 0 50px rgba(255, 0, 128, 0.45));
  }
  100% {
    transform: translateY(-12px) scale(1.06);
    filter: drop-shadow(0 0 55px rgba(121, 40, 202, 1)) drop-shadow(0 0 95px rgba(0, 242, 254, 0.75)) drop-shadow(0 0 110px rgba(255, 0, 128, 0.7));
  }
}

.metarise-card-glow {
  background: radial-gradient(circle at 50% 20%, rgba(121, 40, 202, 0.28) 0%, rgba(8, 12, 20, 0.98) 75%);
  border: 1px solid rgba(121, 40, 202, 0.6) !important;
  box-shadow: 0 0 65px rgba(121, 40, 202, 0.4);
}

/* --- 360° MULTI-RING OSCILLOSCOPE RADAR GRID --- */
.radar-grid-container-advanced {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(0, 242, 254, 0.5);
  background: 
    radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.12) 0%, transparent 75%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 40px, rgba(0, 242, 254, 0.22) 41px);
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 242, 254, 0.35);
}

/* Crosshair Target Axes */
.radar-grid-container-advanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(0, 242, 254, 0.25);
}

.radar-grid-container-advanced::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 242, 254, 0.25);
}

.radar-sweep-cw {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  background: linear-gradient(45deg, rgba(0, 242, 254, 0.65) 0%, transparent 100%);
  transform-origin: top left;
  animation: radarSweepCW 3.2s linear infinite;
  pointer-events: none;
}

@keyframes radarSweepCW {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.radar-sweep-ccw {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  background: linear-gradient(-45deg, rgba(121, 40, 202, 0.4) 0%, transparent 100%);
  transform-origin: top left;
  animation: radarSweepCCW 6s linear infinite;
  pointer-events: none;
}

@keyframes radarSweepCCW {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* Interactive Radar Blip Nodes */
.radar-node-interactive {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.radar-node-interactive:hover {
  transform: scale(1.6);
  z-index: 20;
}

.radar-node-red {
  background: #ff3366;
  box-shadow: 0 0 14px #ff3366;
  animation: blipPulse 1.2s infinite alternate;
}

.radar-node-orange {
  background: #ff9449;
  box-shadow: 0 0 14px #ff9449;
  animation: blipPulse 1.8s infinite alternate;
}

.radar-node-green {
  background: #00e676;
  box-shadow: 0 0 14px #00e676;
}

@keyframes blipPulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 1; }
}

/* --- REAL CLI TERMINAL STYLING --- */
.cli-prompt-bar {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cli-input {
  background: transparent;
  border: none;
  color: #00f2fe;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  width: 100%;
  outline: none;
}

.cli-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* --- CIRCULAR COMPLIANCE SCORE GAUGE METER --- */
.cndp-gauge-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(#00e676 306deg, rgba(255,255,255,0.1) 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.3);
}

.cndp-gauge-inner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #080c14;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Range Sliders & Calculator Controls --- */
.form-range-custom {
  accent-color: var(--primary-cyan);
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.form-range-custom::-webkit-slider-thumb {
  background: var(--primary-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.8);
  border: 2px solid #fff;
}

/* --- Premium Glowing Icon Badges --- */
.icon-badge-glowing {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.icon-badge-cyan {
  background: rgba(0, 242, 254, 0.14);
  color: var(--primary-cyan);
  border: 1px solid rgba(0, 242, 254, 0.4);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.3);
}

.icon-badge-purple {
  background: rgba(121, 40, 202, 0.2);
  color: #c084fc;
  border: 1px solid rgba(121, 40, 202, 0.5);
  box-shadow: 0 0 25px rgba(121, 40, 202, 0.35);
}

.icon-badge-orange {
  background: rgba(255, 148, 73, 0.2);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 148, 73, 0.5);
  box-shadow: 0 0 25px rgba(255, 148, 73, 0.35);
}

.icon-badge-green {
  background: rgba(0, 230, 118, 0.2);
  color: var(--accent-green);
  border: 1px solid rgba(0, 230, 118, 0.5);
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.35);
}

.icon-badge-red {
  background: rgba(255, 51, 102, 0.2);
  color: var(--accent-red);
  border: 1px solid rgba(255, 51, 102, 0.5);
  box-shadow: 0 0 25px rgba(255, 51, 102, 0.35);
}

.icon-badge-zero-ai {
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.3) 0%, rgba(0, 242, 254, 0.2) 100%);
  color: #00f2fe;
  border: 1px solid rgba(0, 242, 254, 0.5);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.4);
}

/* --- Buttons & CTAs --- */
.btn-primary-gradient {
  background: var(--grad-cyan-blue);
  color: #040914 !important;
  font-weight: 700;
  font-family: var(--font-heading);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  box-shadow: var(--glow-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(0, 242, 254, 0.7);
  color: #040914 !important;
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
  font-weight: 600;
  border: 1px solid var(--border-card);
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--primary-cyan);
  color: #ffffff !important;
}

.badge-tag {
  background: rgba(0, 242, 254, 0.12);
  color: var(--primary-cyan);
  border: 1px solid rgba(0, 242, 254, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.95rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* --- Hero Section --- */
.hero-section {
  padding: 8.5rem 0 5rem 0;
  position: relative;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 800;
  background: var(--grad-hero-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e2e8f0 !important;
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* --- WOW-FACTOR CYBER HUD OPERATIONS MATRIX --- */
.hud-matrix-card {
  position: relative;
  background: rgba(10, 15, 26, 0.92);
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.25);
  overflow: hidden;
}

.hud-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00f2fe, transparent);
  animation: laserScan 4s linear infinite;
  z-index: 5;
  pointer-events: none;
}

@keyframes laserScan {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hud-beacon-dot {
  width: 10px;
  height: 10px;
  background-color: #00e676;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 12px #00e676;
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); box-shadow: 0 0 6px #00e676; }
  100% { transform: scale(1.2); box-shadow: 0 0 16px #00e676; }
}

.hud-metric-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  transition: var(--transition-smooth);
}

.hud-metric-box:hover {
  border-color: var(--primary-cyan);
  background: rgba(0, 242, 254, 0.06);
}

/* --- FIXED CONTINUOUS SMOOTH MARQUEE TICKER --- */
.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0;
  position: relative;
  background: rgba(8, 12, 20, 0.7);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeSlide 22s linear infinite;
  will-change: transform;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.partner-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.partner-box:hover {
  border-color: var(--primary-cyan);
  background: rgba(0, 242, 254, 0.1);
  transform: translateY(-2px);
}

@keyframes marqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- PREMIUM BLOG CARDS UI --- */
.blog-card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--box-shadow-card);
}

.blog-card-premium:hover {
  transform: translateY(-8px);
  border-color: var(--primary-cyan);
  box-shadow: 0 20px 40px -15px rgba(0, 242, 254, 0.35);
  background: var(--bg-card-hover);
}

.blog-banner-box {
  position: relative;
  height: 230px;
  width: 100%;
  overflow: hidden;
  background: var(--grad-dark-glass);
}

.blog-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card-premium:hover .blog-banner-box img {
  transform: scale(1.08);
}

.blog-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.blog-time-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.blog-premium-body {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-premium-title {
  font-size: 1.35rem;
  line-height: 1.4;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.blog-premium-title a {
  color: #ffffff;
}

.blog-premium-title a:hover {
  color: var(--primary-cyan);
}

/* --- Stats Section --- */
.stats-section {
  padding: 2.5rem 0;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--grad-cyan-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #e2e8f0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* --- Division Cards --- */
.division-card {
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.division-title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.feature-list li {
  padding: 0.45rem 0;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer-custom {
  background-color: #030508;
  border-top: 1px solid var(--border-card);
  padding: 5rem 0 2rem 0;
  margin-top: 5rem;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-cyan);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 3rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* --- Admin Panel Styling --- */
.admin-sidebar {
  min-height: 100vh;
  background: rgba(8, 12, 20, 0.98);
  border-right: 1px solid var(--border-card);
  padding: 2rem 1.25rem;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1.2rem;
  color: #cbd5e1;
  border-radius: 12px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(0, 242, 254, 0.12);
  color: var(--primary-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.table-custom {
  --bs-table-bg: transparent;
  --bs-table-color: #ffffff;
  border-color: var(--border-card);
}
