nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #222;
  padding: 0.5rem 1rem;
  position: relative;
}



.mainLogo {
  height: 40px;
}

.navbar {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.playerList {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 1rem;
  flex-grow: 1;             
}

.playerList li a {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.playerList li a:hover {
  color: #f0c000;
}

.aboutLink {
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.aboutLink:hover {
  color: #f0c000;
}


@media (max-width: 768px) {
  .menu {
    display: block;
  }

  .playerList {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    flex-direction: column;
    background-color: #333;
    border-radius: 8px;
    padding: 0.5rem 0;
    width: 150px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .playerList.open {
    display: flex;
  }

  .playerList li {
    padding: 0.5rem 1rem;
  }

  .playerList li:hover {
    background-color: #444;
  }
}
