@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Orbitron:wght@700;900&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  /* Core Colors — FIFA 2026 inspired: green + red + gold */
  --stadium-dark: #0a120a;
  --stadium-darker: #050907;
  --pitch-green: #1b5e20;
  --pitch-green-light: #2e7d32;
  --fifa-red: #c4161c;
  --fifa-red-glow: rgba(196, 22, 28, 0.4);
  --fifa-red-deep: #8b0000;
  --fifa-orange: #ff6b00;
  --fifa-orange-glow: rgba(255, 107, 0, 0.4);
  --fifa-blue: #002395;
  --fifa-blue-glow: rgba(0, 35, 149, 0.4);
  
  /* Accents */
  --emerald: #00c853;
  --emerald-glow: rgba(0, 200, 83, 0.4);
  --gold: #ffd600;
  --gold-light: #fff176;
  --gold-glow: rgba(255, 214, 0, 0.4);
  
  /* Lighting */
  --floodlight: #ffffffee;
  --floodlight-soft: rgba(255, 255, 255, 0.08);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-hover: rgba(255, 255, 255, 0.2);
  
  /* Typography */
  --text-primary: #f5f5f5;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--stadium-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fixed Video Background — visible across all pages */
.page-bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  z-index: -2;
  object-fit: cover;
  pointer-events: none;
}

/* Dark overlay on top of video */
.page-bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(ellipse at 15% 25%, rgba(196,22,28,0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 75%, rgba(0,200,83,0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 10%, rgba(255,165,0,0.06) 0%, transparent 35%),
    linear-gradient(180deg, rgba(10,18,10,0.55) 0%, rgba(13,40,24,0.4) 50%, rgba(10,18,10,0.6) 100%);
  pointer-events: none;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
}

.subheading {
  font-family: 'Rajdhani', sans-serif;
}

/* Glassmorphism Utility */
.glass-panel {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

/* Utilities */
.hidden {
  opacity: 0;
  pointer-events: none;
}

#main-site.hidden {
  display: none;
}

#main-site {
  transition: opacity 0.8s ease;
}

.visible {
  opacity: 1;
  pointer-events: auto;
}
