/* ===== BLUE GLOW THEME ===== */
:root {
  --primary-blue: #1e90ff;
  --deep-blue: #0a1929;
  --mid-blue: #112a45;
  --light-blue: #4dabff;
  --glow: 0 0 15px rgba(30, 144, 255, 0.5);
  --glow-strong: 0 0 25px rgba(30, 144, 255, 0.8);
}

body {
  background: linear-gradient(135deg, #050d18 0%, #0a1929 50%, #112a45 100%) !important;
  background-attachment: fixed !important;
  color: #e0e6ed !important;
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
}

/* Animated background particles */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(30, 144, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(77, 171, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Navbar */
.navbar, .nav, header {
  background: rgba(10, 25, 41, 0.85) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 144, 255, 0.3) !important;
  box-shadow: 0 2px 20px rgba(30, 144, 255, 0.15);
}

.navbar a, .nav a {
  color: #e0e6ed !important;
  transition: all 0.3s ease;
}

.navbar a:hover, .nav a:hover {
  color: var(--light-blue) !important;
  text-shadow: 0 0 10px rgba(77, 171, 255, 0.8);
}

/* Cards / Packages */
.package, .card, .panel, .well {
  background: rgba(17, 42, 69, 0.6) !important;
  border: 1px solid rgba(30, 144, 255, 0.25) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  overflow: hidden;
  position: relative;
}

.package:hover, .card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue) !important;
  box-shadow: var(--glow-strong);
}

.package::before, .card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
  transition: left 0.6s ease;
}

.package:hover::before, .card:hover::before {
  left: 100%;
}

/* Buttons */
.btn, button.btn-primary, .button {
  background: linear-gradient(135deg, var(--primary-blue), #0066cc) !important;
  border: 1px solid var(--light-blue) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
}

.btn:hover, button.btn-primary:hover, .button:hover {
  background: linear-gradient(135deg, var(--light-blue), var(--primary-blue)) !important;
  box-shadow: var(--glow-strong);
  transform: translateY(-2px);
}

/* Headings */
h1, h2, h3, h4 {
  color: #fff !important;
  text-shadow: 0 0 12px rgba(30, 144, 255, 0.4);
}

/* Sidebar */
.sidebar, aside {
  background: rgba(10, 25, 41, 0.7) !important;
  border: 1px solid rgba(30, 144, 255, 0.2) !important;
  border-radius: 12px;
  padding: 15px;
}

/* Inputs */
input, select, textarea {
  background: rgba(10, 25, 41, 0.8) !important;
  border: 1px solid rgba(30, 144, 255, 0.3) !important;
  color: #fff !important;
  border-radius: 6px !important;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--light-blue) !important;
  box-shadow: var(--glow) !important;
  outline: none;
}

/* Prices */
.price, .package-price {
  color: var(--light-blue) !important;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(77, 171, 255, 0.5);
}

/* ===== PLAYER COUNTER WIDGET ===== */
.player-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(17, 42, 69, 0.8);
  border: 1px solid rgba(30, 144, 255, 0.4);
  border-radius: 30px;
  padding: 8px 18px;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow);
  font-weight: 600;
  color: #fff;
}

.player-counter .pulse-dot {
  width: 10px;
  height: 10px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 2s infinite;
}

.player-counter .count {
  color: var(--light-blue);
  font-size: 16px;
  text-shadow: 0 0 8px rgba(77, 171, 255, 0.6);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Footer */
footer {
  background: rgba(5, 13, 24, 0.9) !important;
  border-top: 1px solid rgba(30, 144, 255, 0.3);
  margin-top: 40px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--deep-blue); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-blue), #0066cc);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--light-blue); }