/* OCTAGON Premium WHMCS Theme Styles */
:root {
  --premium-navy: #050810;
  --premium-blue: #3b82f6;
  --premium-slate: #0f172a;
  --premium-accent: #3b82f6;
  --text-dim: #94a3b8;
  --border-premium: rgba(255, 255, 255, 0.08);
}

body {
  background-color: var(--premium-navy);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.text-gradient {
  background: linear-gradient(to bottom right, #ffffff 50%, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-premium-primary {
  background-color: var(--premium-blue);
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.btn-premium-primary:hover {
  opacity: 0.9;
  color: white;
}

.btn-premium-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.btn-premium-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.badge-premium {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--premium-blue);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Background Glow */
.bg-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
