/* General Layout and Styling */
body {
  font-family: 'Orbitron', sans-serif;
  background-color: #111;
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav {
  width: 100%;
  padding: 10px;
  background-color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo img {
  height: 40px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

ul li {
  margin: 0 10px;
}

ul li a {
  color: #fff;
  text-decoration: none;
}

.roster-container {
  width: 80%;
  margin: 20px 0;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #00FF00; /* Green text for the team name */
}

.player-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.player-card-prestige {
  width: 220px;
  height: 400px;
  background-color: #222;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0 0 15px #00FF00; /* Green glow */
  padding: 10px;
  margin: 10px;
  border: 3px solid #0000FF; /* Blue border for Team Prestige Worldwide */
}

.team-logo-small-prestige {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.player-name-prestige {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #00FF00; /* Green text for player names */
  text-shadow: 0 0 8px #00FF00; /* Green text shadow */
}

.flag-icon-prestige {
  width: 45px;
  margin-bottom: 0.5rem;
}

.headshot-prestige {
  width: 100%;
  height: 58%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.player-info-prestige {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  width: 100%;
  z-index: 2;
  color: white;
}

.player-info-prestige p {
  margin: 5px 0;
  color: #00FF00; /* Green text for player information */
}

footer {
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}
