/* 
   --- 🛡️ CYBER-OPS PROFESSIONAL EDITION 🛡️ ---
   Refined & Optimized by Teery 🦞
*/

:root {
  --cyber-neon: #00f2ff; 
  --cyber-glow: rgba(0, 242, 255, 0.3);
  --cyber-dark: #0d1117;
  --cyber-glass: rgba(13, 17, 23, 0.8);
  --cyber-border: rgba(0, 242, 255, 0.2);
  --transition-speed: 0.3s;
}

body {
  background-color: var(--cyber-dark) !important;
  font-family: 'JetBrains Mono', 'Fira Code', monospace !important;
}

/* --- 🛰️ TOP WELCOME BAR --- */
body::before {
  content: "MaMDoUH | Cyber-Ops Command Center";
  display: block;
  text-align: center;
  color: var(--cyber-neon);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 15px 0;
  text-shadow: 0 0 10px var(--cyber-neon);
  animation: scanline 4s linear infinite;
  border-bottom: 1px solid var(--cyber-border);
  margin-bottom: 30px;
}

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

/* --- 💎 LUXURY GLASS CARDS --- */
.service-card {
  background: var(--cyber-glass) !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid var(--cyber-border) !important;
  border-radius: 12px !important;
  transition: all var(--transition-speed) ease !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyber-neon) !important;
  box-shadow: 0 0 20px var(--cyber-glow);
  background: rgba(0, 242, 255, 0.05) !important;
}

/* --- 🖼️ ICON OPTIMIZATION --- */
.service-card img {
  width: 48px !important;
  height: 48px !important;
  filter: drop-shadow(0 0 5px var(--cyber-neon));
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

/* --- 🟢 STATUS INDICATOR --- */
.service-card::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  background: var(--cyber-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyber-neon);
  animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
  0% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.5; transform: scale(0.8); }
}

/* --- 📊 METRICS STYLING --- */
.service-card .metrics {
  font-size: 0.75rem !important;
  color: var(--cyber-neon) !important;
  opacity: 0.9;
  font-weight: 600;
}

/* --- 🛠️ WIDGETS REFINEMENT --- */
.widget {
  background: var(--cyber-glass) !important;
  border: 1px solid var(--cyber-border) !important;
  border-radius: 12px !important;
}

.widget-title {
  color: var(--cyber-neon) !important;
  text-transform: uppercase;
  font-size: 0.8rem !important;
  letter-spacing: 1px;
}

/* --- 🌌 TITLE GLOW --- */
h1, .title {
  text-align: center;
  color: #fff !important;
  text-shadow: 0 0 15px var(--cyber-neon);
  letter-spacing: 2px;
  font-weight: 800 !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cyber-dark); }
::-webkit-scrollbar-thumb { background: var(--cyber-neon); border-radius: 10px; }
