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

:root {
  --bg-color: #F8F9FB;
  --card-bg: rgba(255, 255, 255, 0.9);
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --border-color: rgba(255, 255, 255, 0.5);
}

.dark {
  --bg-color: #0a0a0f;
  --card-bg: rgba(21, 21, 28, 0.7);
  --text-primary: #ffffff;
  --text-secondary: #94A3B8;
  --border-color: rgba(255, 255, 255, 0.05);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  margin: 0;
  padding-top: 80px; /* Offset for fixed navbar */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dark body {
  background-color: #0a0a0f;
  color: #ffffff;
}

.dark .glass-card {
  background: rgba(21, 21, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.dark ::-webkit-scrollbar-thumb {
  background: #334155;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Team Logos */
.team-logo-container {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
  border: 6px solid #F1F5F9;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
  overflow: hidden;
  position: relative;
}

.team-logo-container img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.team-logo-fallback {
  font-weight: 900;
  font-size: 2rem;
  color: #0F172A;
}

/* Footer Styles */
.footer-heading {
  font-size: 0.65rem;
  font-weight: 900;
  color: #9CA3AF;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-link:hover {
  color: white;
  transform: translateX(4px);
}

.sponsor-label {
  font-size: 10px;
  font-weight: 800;
  color: #CBD5E1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sponsor-logo {
  height: 45px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.sponsor-logo:hover {
  opacity: 1;
}

/* Decorative Footer Elements */
.footer-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
  pointer-events: none;
}

.glow-purple { background: #7C3AED; left: -250px; bottom: -250px; }
.glow-orange { background: #F59E0B; right: -250px; top: -100px; }
