:root {
  --primary-blue: #3B82F6;
  --primary-dark-blue: #1E3A8A;
  --primary-gold: #FCD34D;
  --dark-bg: #0F172A;
  --dark-bg-secondary: #1E293B;
  --dark-bg-tertiary: #334155;
  --text-light: #E2E8F0;
  --text-muted: #94A3B8;
  --border-color: rgba(59, 130, 246, 0.2);
  --border-color-hover: rgba(59, 130, 246, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  background: linear-gradient(to bottom, var(--dark-bg), var(--primary-dark-blue), var(--dark-bg));
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Starfield Background */
.starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  background-color: rgba(147, 197, 253, 0.8);
  border-radius: 50%;
  animation: twinkle 3s infinite;
  box-shadow: 0 0 10px rgba(147, 197, 253, 0.8);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.shooting-star {
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, rgba(252, 211, 77, 0.8), transparent);
  border-radius: 50%;
  animation: shoot 2s ease-in forwards;
}

@keyframes shoot {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100px) translateY(100px);
    opacity: 0;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo {
  height: 32px;
  width: auto;
  display: block; 
  font-size: 1.8rem;
}

.nav-brand .nav-logo {
  height: 30px;
  width: auto;
  display: block; 
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 1.5rem;
  height: 0.2rem;
  background-color: var(--primary-gold);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.8rem);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.8rem);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu a {
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--primary-blue);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* Scroll Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-2rem);
  transition: all 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(2rem);
  transition: all 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Team Card Fade Transition */
.team-card {
  animation: cardEnter 0.4s ease-out forwards;
}

.team-card.hidden {
  animation: cardExit 0.3s ease-out forwards;
}

.team-image {
  max-width: 50px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-left: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.5));
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(1rem);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes cardExit {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.95) translateY(1rem);
  }
}

/* Main Content */
main {
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 2rem;
  text-align: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1rem); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-blue), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary-blue), #60A5FA);
  color: white;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
}

.btn-secondary:hover {
  background-color: var(--primary-gold);
  color: var(--dark-bg);
  transform: scale(1.05);
}

.btn-contact {
  background: linear-gradient(to right, var(--primary-blue), #60A5FA);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  background: linear-gradient(to right, var(--primary-gold), #FBBF24);
  color: var(--dark-bg);
  text-decoration: none;
  display: inline-block;
}

.btn-large:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(252, 211, 77, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s;
}

.stat:hover {
  border-color: var(--border-color-hover);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* About Section */
.about {
  background: rgba(30, 41, 59, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-0.5rem);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.vision-box {
  background: linear-gradient(135deg, rgba(30, 59, 97, 0.4), rgba(88, 28, 135, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
}

.vision-box h3 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.vision-box p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Games Section */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.game-card-flip {
  perspective: 1000px;
  height: 280px;
  cursor: pointer;
}

.game-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.game-card-flip.flipped .game-card-inner {
  transform: rotateY(180deg);
}

.game-card-front,
.game-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.game-card-front {
  transition: all 0.3s;
}

.game-card-flip:hover .game-card-front {
  border-color: var(--border-color-hover);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.game-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(88, 28, 135, 0.3));
  border-color: var(--primary-blue);
}

.game-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-radius: 1rem;
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.discord-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.game-card-front h3,
.game-card-back h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.game-card-front p,
.game-card-back p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.btn-discord {
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(to right, var(--primary-gold), #FBBF24);
  color: var(--dark-bg);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 0.5rem;
}

.btn-discord:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(252, 211, 77, 0.3);
}

.more-games {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 59, 97, 0.3), rgba(88, 28, 135, 0.3));
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Teams Section */
.teams {
  background: rgba(30, 41, 59, 0.3);
}

.team-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid var(--border-color);
  background: rgba(30, 41, 59, 0.4);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.filter-btn:hover {
  border-color: var(--border-color-hover);
  background: rgba(59, 130, 246, 0.2);
}

.filter-btn.active {
  background: linear-gradient(to right, var(--primary-blue), #60A5FA);
  border-color: var(--primary-blue);
  color: white;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-0.5rem);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
}

.team-game-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.team-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.team-leader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.leader-info h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.leader-info .name {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.team-join-btn {
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  background: rgba(59, 130, 246, 0.2);
  color: var(--primary-blue);
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.team-join-btn:hover {
  background: rgba(59, 130, 246, 0.4);
  transform: scale(1.05);
}

.new-team-box {
  background: linear-gradient(135deg, rgba(30, 59, 97, 0.4), rgba(88, 28, 135, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
}

.new-team-box h3 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.new-team-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Community Section */
.community {
  background: rgba(30, 41, 59, 0.3);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-0.5rem);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta-box {
  background: linear-gradient(135deg, rgba(30, 59, 97, 0.5), rgba(88, 28, 135, 0.5));
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  position: relative;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 1.5rem;
  pointer-events: none;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  position: relative;
  z-index: 1;
}

.cta-box > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-box .btn-large {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.status-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.indicator {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact {
  background: rgba(30, 41, 59, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-0.5rem);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.faq-box {
  background: linear-gradient(135deg, rgba(30, 59, 97, 0.4), rgba(88, 28, 135, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 1.5rem;
}

.faq-box h3 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h4 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Impressum Section */
.impressum {
  background: rgba(30, 41, 59, 0.3);
}

.impressum-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 3rem;
}

.impressum-section {
  margin-bottom: 2.5rem;
}

.impressum-section:last-child {
  margin-bottom: 0;
}

.impressum-section h3 {
  font-size: 1.3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.impressum-section h4 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.impressum-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.impressum-section a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s;
}

.impressum-section a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.impressum-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1rem;
}

.impressum-content ul li {
  list-style: none;
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.impressum-content ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--primary-blue);
  text-shadow: 0 0 8px rgba(59, 130, 246, 0.7);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 2rem;
  text-align: center;
  margin-top: 5rem;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo {
  font-size: 1.5rem;
}

.footer-tagline {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .teams-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* Hidden class for filtering */
.hidden {
  display: none;
}
