* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #1f1c2c, #928dab);
  color: #fff;
  text-align: center;
  line-height: 1.6;
  padding: 20px;
}

.header h1 {
  font-size: 2.5rem;
  margin: 20px 0 10px;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner {
  width: 90%;
  max-width: 500px;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.description {
  max-width: 800px;
  margin: 30px auto;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  font-size: 1.1rem;
}

.players h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
  color: #ffdf00;
}

.image-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.image-container img {
  width: 140px;
  height: 190px;
  border-radius: 12px;
  border: 3px solid #ffffff44;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.image-container img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.5);
}

.click-note {
  margin-top: 10px;
  font-style: italic;
  color: #d4ffea;
}


footer {
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  font-size: 0.95rem;
}

footer a {
  color: #6ee7ff;
  text-decoration: none;
  font-weight: bold;
}

footer button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ff4e50;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

footer button:hover {
  background-color: #ff1e2d;
}
