/*
.teams {
  margin-top: 30px;
  animation: fadeInCard 1s ease;
}

.teams h2 {
  color: #00ffe7;
  text-align: center;
  margin-bottom: 30px;
  animation: glow 5s infinite;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
  justify-items: center;
}

/* === Team Card === /
.team-card {
  background: #111;
  border: 1px solid #00f0ff;
  border-radius: 16px;
  padding: 25px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0, 255, 231, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 30px #00f0ff, 0 0 15px #ffcc00;
}
/* Team Card Active State - Uncomment if needed */
/*.team-card.active {
  background: #222;
  border-color: #00ffe7;
}/--

.team-grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #00f0ff, 0 0 15px #ffcc00;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
  justify-items: center;
}

.team-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 15px;
  border: 2px solid #00ffe7;
  filter: drop-shadow(0 0 10px #00ffe7);
}

.teams h3 {
  text-align: center;
  color: #00ffe7;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.teams p {
  text-align: center;
  color: #ccc;
  margin-bottom: 10px;
}

.teams h4 {
  color: #ffcc00;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.8);
  text-align: center;
  margin-top: 10px;
}

.teams ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  text-align: center;
}

.teams ul li {
  padding: 4px 0;
  color: #ccc;
  transition: color 0.3s;
}

.teams ul li:hover {
  color: #00ffe7;
}

/* === Centered Buttons Container === /
.button-container {
  margin-top: 40px;
  text-align: center;
}

.button-container a {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background: #00f0ff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
  animation: glow 6s infinite;
  box-shadow: 0 0 20px #00f0ff, 0 0 10px #ffcc00;
}

.button-container a:hover {
  background: #e0c10c;
  color: #fff;
}

/* Team Card - allow space for 3 player cards /
.team-card {
  background: #111;
  border: 1px solid #00f0ff;
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 510px;   /* enough space for 3 players /
  margin: 30px auto;   /* center it /
  box-shadow: 0 0 20px rgba(0, 255, 231, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* Player Grid - 3 per row /
/* === Player Grid === /
.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
  justify-items: center;
}

/* === Player Card === /
.player-card {
  background: #1e1e1e;
  border: 1px solid #00f0ff;
  border-radius: 12px;
  padding: 15px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px #00f0ff, 0 0 10px #ffcc00;
}

.team-header {
  text-align: center;
}

.team-header h3 {
  color: #00f0ff;
  font-size: 1.5rem;
  margin-top: 10px;
  text-shadow: 0 0 10px #00f0ff;
}

.team-header .slogan {
  color: #ffcc00;
  font-size: 0.95rem;
  font-style: italic;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.8);
}

/* Expand/Collapse Animation /
.team-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}

/* Expand when active /
.team-card.active .team-details {
  max-height: 1000px; /* adjust if needed /
  opacity: 1;
}

/* === Captain Highlight === /
.player-card.captain {
  border: 2px solid gold;
  box-shadow: 0 0 20px gold;
}
.player-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #00f0ff;
  margin-bottom: 10px;
  object-fit: cover;
}


/* === WhatsApp Button === /
.wa-link {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  background: #25D366;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.wa-link:hover {
  background: #1ebe5d;
  transform: scale(1.05);
} */

.notice {
  margin: 40px auto;
  max-width: 800px;
  padding: 20px;
  background: #1a1a1a;
  border: 1px solid #00ffe7;
  border-radius: 12px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  box-shadow: 0 0 15px rgba(0, 255, 231, 0.2);
  animation: fadeInCard 1s ease;
}

.notice h3, .notice p {
  margin-bottom: 15px;
}

.notice i {
  color: #ffcc00;
  margin-right: 8px;
}

.notice a {
  text-decoration: none;
  font-weight: bold;
  color: #00ffe7;
  padding: 6px 12px;
  background: rgba(0,255,231,0.1);
  border-radius: 8px;
  transition: 0.3s;
}
.notice a:hover {
  background: #00ffe7;
  color: #111;
  box-shadow: 0 0 15px #00ffe7;
}
@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 2;
    transform: translateY(0);
  }
}

/* Responsive: 2 per row on small screens, 1 on very small */
@media (max-width: 768px) {
  .player-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .player-grid {
    grid-template-columns: 1fr;
  }
}