/* ==========================================================================
   SPORTS NAVIGATION STYLES
   ========================================================================== */

/* The main container covering the full width */
.sports-nav {
  display: flex;
  flex-direction: column;    /* Stacks LOBBY neatly over the sports menu row */
  align-items: center;
  gap: 15px;                 /* Space between LOBBY and the sports links */
  background-color: rgba(255, 255, 255, 0.1); /* Translucent frosted look */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.5rem 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Main Top Link (LOBBY) */
.nav-main-link {
  color: #00ffff;            /* Neon cyan accent */
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  transition: text-shadow 0.3s ease;
}

.nav-main-link:hover {
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

/* Sports Menu Row Container */
.sports-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 24px;                 /* Dynamic horizontal spacing between sports items */
  padding: 0;
  margin: 0;
}

/* Individual Sport Item Links */
.sports-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover state changing font color and revealing modern underline effect */
.sports-links a:hover {
  color: #00ffff;
}

.sports-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #00ffff;
  transition: width 0.3s ease;
}

.sports-links a:hover::after {
  width: 100%;
}

/* ==========================================================================
   RESPONSIVE LAYOUT (Mobile Screens)
   ========================================================================== */
@media (max-width: 600px) {
  .sports-links {
    flex-wrap: wrap;         /* Allows items to break cleanly onto multiple rows instead of overflowing */
    gap: 15px;
    padding: 0 15px;
  }
}