/* ProxyRanking.top - Enterprise SaaS CSS Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-accent: #0EA5E9;
  --color-dark: #0F172A;
  --color-light-bg: #F8FAFC;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light-bg);
  color: #334155;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Custom Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.03), 0 8px 10px -6px rgba(15, 23, 42, 0.02);
}

.glass-panel-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-panel-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 30px -5px rgba(37, 99, 235, 0.08), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
  border-color: rgba(147, 197, 253, 0.8);
}

/* RockHoster #1 Featured Glow Accent */
.rockhoster-card {
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%);
  border: 2px solid #3B82F6;
  box-shadow: 0 20px 30px -5px rgba(37, 99, 235, 0.15), 0 0 15px rgba(14, 165, 233, 0.1);
}

.rockhoster-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.3);
}

/* Custom Badges */
.badge-sponsored {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-editor {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
}

.badge-rank-1 {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-weight: 900;
}

/* 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;
}

/* Custom Table Design */
.rankings-table tr {
  transition: background-color 0.2s ease;
}
.rankings-table tr:hover {
  background-color: #F1F5F9;
}
.rankings-table th {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

/* Responsive Table Container */
.table-scroll {
  scrollbar-width: thin;
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.animate-pulse-glow {
  animation: pulseGlow 3s infinite ease-in-out;
}
