/* ==========================================================================
   ReliableProxies.site - Enterprise SaaS Styling & Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-500: #0284c7;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-900: #0f172a;
  
  --sponsor-gold: #f59e0b;
  --sponsor-bg: #fffbe6;
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(226, 232, 240, 0.8);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Glassmorphism Navigation */
.glass-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Custom Gradients */
.bg-gradient-hero {
  background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.12) 0%, rgba(37, 99, 235, 0.04) 50%, rgba(248, 250, 252, 0) 100%);
}

.bg-gradient-badge {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
}

.bg-gradient-sponsor {
  background: linear-gradient(135deg, #fffbf0 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
}

.text-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Featured Sponsor Card Highlight */
.sponsor-card-ring {
  position: relative;
  border: 2px solid #3b82f6;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.15), 0 8px 10px -6px rgba(37, 99, 235, 0.1);
}

.sponsor-card-ring::before {
  content: '★ OFFICIAL FEATURED #1 SPONSOR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 3px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
  z-index: 10;
  white-space: nowrap;
}

/* Comparison Table Styling */
.table-sticky-col {
  position: sticky;
  left: 0;
  background: #ffffff;
  z-index: 10;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Animations & Transitions */
.hover-lift {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.08);
}

/* Tool Interactive Result Containers */
.tool-output-box {
  background: #0f172a;
  color: #38bdf8;
  font-family: 'Courier New', Courier, monospace;
  border-radius: 0.5rem;
  padding: 1rem;
}

/* Breadcrumb nav */
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: #94a3b8;
}

/* Print Optimization */
@media print {
  .no-print {
    display: none !important;
  }
}
