* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
  background: #00043b;
  color: white;
  font-family: 'Patrick Hand SC', cursive;
}

/* Navbar */
.navbar {
  background: #162067;
  border-bottom: 4px solid #00a2ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 26px;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-decoration: none;

}

.nav-buttons {
  display: flex;
  gap: 16px;
}

.nav-btn {
  text-decoration: none;
  background: #f1f1f1;
  color: #222;
  padding: 10px 28px;
  border-radius: 12px;
  border: 2px solid #999;
  font-size: 1.1rem;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.explore-page {
  width: 100%;
  min-height: 100vh;
  padding: 40px 50px 60px;
}

/* Hero */
.explore-hero {
  display: flex;
  justify-content: center;
  margin: 10px 0 40px;
}

.hero-title-box {
  background: #67c6ef;
  border: 3px solid #8e8e8e;
  border-radius: 20px;
  width: min(520px, 100%);
  text-align: center;
  padding: 22px 20px;
}

.hero-title-box h1 {
  color: #111;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Controls */
.controls-section {
  margin-bottom: 34px;
}

.search-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}

.search-bar {
  width: 240px;
  max-width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 3px solid #8f8f8f;
  outline: none;
  font-size: 1.1rem;
  text-align: center;
  background: #efefef;
  color: #111;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 1.3rem;
}

.filter-buttons {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #e6323f;
  color: white;
  border: 3px solid white;
  border-radius: 14px;
  padding: 12px 28px;
  min-width: 135px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
}

/* Grid */
.players-section {
  margin-top: 34px;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 24px;
}

.player-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.player-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
}

.player-name {
  margin-top: 10px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: white;
  min-height: 2.8em;
}

/* Placeholder Player Colors */
.placeholder-purple {
  background: #73359e;
}

.placeholder-yellow {
  background: #efb300;
}

.placeholder-green {
  background: #078942;
}

.placeholder-red {
  background: #df1f2d;
}

.placeholder-gray {
  background: #9e9e9e;
}

.placeholder-blue {
  background: #1a76c9;
}

.placeholder-orange {
  background: #f27600;
}

.placeholder-pink {
  background: #d61d57;
}

/* RESPONSIVE */
/* @media (max-width: 1100px) {
  .players-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 800px) {
  .explore-page {
    padding: 30px 24px 50px;
  }

  .players-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title-box h1 {
    font-size: 2.2rem;
  }

  .search-row {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .navbar {
    flex-direction: column;
    gap: 16px;
  }

  .nav-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .players-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-buttons {
    gap: 14px;
  }

  .filter-btn {
    min-width: 110px;
    padding: 10px 18px;
  }
} */