body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  background-color: #f8f8f8;
  color: #111;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #002f6c;
  color: white;
  padding: 1em 2em;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.8em;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('https://images.unsplash.com/photo-1611765083536-9a21e6f3215a?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 4em 1em;
  font-family: 'Anton', sans-serif;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px #000;
}

.section {
  max-width: 1000px;
  margin: 3em auto;
  padding: 2em;
  background-color: white;
}

.section.dark {
  background-color: #e3f2fd;
}

h2 {
  font-size: 2em;
  color: #002f6c;
  border-left: 6px solid #007fff;
  padding-left: 0.5em;
  margin-bottom: 1em;
}

.card-grid {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  justify-content: center;
}

.player-card {
  background-color: white;
  border: 3px solid #004aad;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  padding: 1em;
}

.player-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.card-info h3 {
  margin: 0.5em 0 0.2em;
}

.footer {
  text-align: center;
  background-color: #002f6c;
  color: white;
  padding: 1.5em;
}
