/* Moga Followers - Clean & Professional Theme */

:root {
  /* Professional Palette */
  --color-bg-light: #f8fafc; /* Light Slate Gray background */
  --color-surface: #ffffff;
  --color-primary: #2563eb; /* Professional Blue */
  --color-secondary: #4f46e5; /* Indigo */
  --color-accent: #0ea5e9; /* Sky Blue */
  --color-success: #10b981;
  --color-text-main: #1e293b; /* Dark Slate for readability */
  --color-text-muted: #64748b;
  
  /* Gradients */
  --gradient-pro: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-glass-border: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(14, 165, 233, 0.2));
  
  /* Shadows (instead of glows) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* --- Clean Background --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent),
              radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.05), transparent);
  z-index: -2;
  pointer-events: none;
}

/* Remove Floating Orbs or make them extremely subtle */
.orb {
  display: none; /* Hide large orbs for cleanliness */
}

/* --- Typography --- */
.text-gradient {
  background: var(--gradient-pro);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: none; /* Remove shadow */
}

.text-gradient-gold {
  background: linear-gradient(135deg, #b45309, #d97706); /* Refined Amber/Gold */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Professional Cards --- */
.glass-card {
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
}

.glass-card::before {
  display: none; /* Remove the old glow border */
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* --- Buttons --- */
.btn-premium {
  background: var(--gradient-pro);
  background-size: 200% auto;
  color: white;
  font-weight: 600;
  border-radius: 8px; /* More professional rounded corners vs pill */
  border: none;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  animation: none; /* Remove pulse/shimmer for cleaner look */
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
  background-position: right center;
}

.btn-outline-premium {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.btn-outline-premium:hover {
  background: rgba(37, 99, 235, 0.05);
  box-shadow: var(--shadow-sm);
  text-shadow: none;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

/* --- Features & Stats --- */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.05);
}

.glass-card:hover .icon-box {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  background: none;
  -webkit-text-fill-color: initial;
  filter: none;
}

/* --- Navigation --- */
nav {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--shadow-sm) !important;
}

.nav-link {
    color: var(--color-text-main) !important;
}

.nav-link:hover {
  color: var(--color-primary) !important;
}

/* --- Trust Badges --- */
.trust-badge-container {
  display: inline-flex;
  gap: 2rem;
  padding: 1rem 2rem;
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  color: var(--color-text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item svg {
  color: var(--color-success);
  filter: none;
}

/* --- Animations --- */
.animate-float {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.pulse {
  animation: none; /* Remove for cleanliness */
}
