
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(135deg, #0a0a0f, #11001f);
  color: #e0e0e0;
  overflow-x: hidden;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(18, 18, 34, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header img {
  height: 60px;
}
nav a {
  color: #b3a7ff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: #8f7fff;
}
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}
.hero, .about, .players, .contact {
  text-align: center;
}
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.player {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}
.player:hover {
  transform: translateY(-5px);
}
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
}
/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}
.cta-button {
  margin-top: 2rem;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  background: linear-gradient(to right, #9f5afd, #5f44ff);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(95, 68, 255, 0.4);
}

.match-history {
  text-align: center;
}
.match-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.match-list li {
  margin: 1rem auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
}
.match-result {
  font-weight: 500;
}
.match-icon {
  font-size: 1.2rem;
  width: 24px;
  height: 24px;
}
.match-icon.win {
  color: #52ffb2;
}
.match-icon.loss {
  color: #ff7a7a;
}
