@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Roboto:wght@300;400;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }


body {
  font-family: 'Roboto', sans-serif;
  background: radial-gradient(circle at top, #1e1e24, #121212);
  background-attachment: fixed;
  color: #e0e0e0;
  line-height: 1.6;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-title-center {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; 
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  flex-grow: 1;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 4000;
  border-bottom: 2px solid #ff4655;
}

.top-left {
  display: flex;
  align-items: center;
  width: 20%;
}

.club-logo {
  width: 45px;
  filter: drop-shadow(0 0 5px #ff4655);
}

.burger-container {
  width: 20%;
  display: flex;
  justify-content: flex-end;
}

.burger {
  cursor: pointer;
  padding: 10px;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ff4655;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: #0f0f0f;
  z-index: 4200;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.mobile-menu a {
  font-family: 'Rajdhani', sans-serif;
  width: 100%;
  max-width: 300px;
  padding: 15px;
  margin: 10px 0;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.mobile-menu a:hover {
  border-bottom: 2px solid #ff4655;
  background: #252525;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

.team-card {
  background: rgba(30, 30, 35, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 20px;
  border-left: 4px solid #ff4655;
  height: auto;
  min-height: 100px;
  width: 100%;
  overflow: hidden;
}

h3 { font-family: 'Rajdhani', sans-serif; color: #ff4655; margin-bottom: 10px; }

.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  list-style: none;
}

.player-item {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  border: 1px solid #FFFFFF;
}

.player-item.player {
  color: #FFFFFF;
  text-decoration: none;
}

.player-item.coach {
  color: #FFFFFF;
  text-decoration: none;
}

.player-item.leader { 
  border-color: #ffd700;
  color: #ffd700;
}

.player-item.co-leader {
  border-color: #00FFE1;
  color: #00FFE1;
}

footer {
  margin-top: auto;
  padding: 20px;
  text-align: center;
  background: transparent;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 70, 85, 0.2);
}

/* MOBILE OPTIMISATION */
@media (max-width: 600px) {
  .page-title-center { font-size: 0.9rem; }
  .top-left h1 { display: none; }

}

