/* Font Poppins */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

/* Tajuk utama */
h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #0f172a;
  font-size: 2rem;
}

.title-highlight {
  color: #1d4ed8;
  font-weight: 600;
}

/* Statistik & Filter Box */
.statistik-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.statistik-box h2 {
  margin-top: 0;
  color: #ca8a04;
  font-size: 1.4rem;
}

.statistik-box p {
  margin: 0.4rem 0;
  font-size: 1rem;
}

.statistik-box label {
  font-weight: 500;
  display: block;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.statistik-box select {
  width: 100%;
  max-width: 300px;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
}

.statistik-box ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  list-style-type: disc;
  font-size: 0.95rem;
}

/* Kad Pasukan */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #0ea5e9;
}

.card p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card strong {
  font-weight: 600;
  color: #111;
}

.card img {
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  text-align: center;
  background: #1e293b;
  color: #fff;
  padding: 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .statistik-box, .card {
    padding: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }
}

/* Betulkan gaya <select> agar ikut Poppins */
.statistik-box select {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1rem;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  width: 100%;
  max-width: 300px;
}

.statistik-box select:hover {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.statistik-box select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
