.navbar {
  background: #222;
  padding: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
  border-bottom: 2px solid #444;
  margin-bottom: 20px;
}

.navbar a {
  color: #eee;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 12px;
  border-radius: 6px;
  transition: background 0.3s;
}

.navbar a:hover {
  background: #444;
}

.navbar a.active {
  background: #666;
  color: #fff;
}

body {
  background: #111;
  color: #eee;
  font-family: Arial, sans-serif;
  margin: 50px;
}

h1, h2 {
  text-align: center;
  margin: 20px 0;
}

.mode-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mode-card {
  background: #222;
  border: 2px solid #444;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.mode-card img {
  width: 100%;
  border-radius: 8px;
}

.player-row {
  background: #222;
  padding: 8px;
  margin: 5px 0;
  border-radius: 6px;
}
.mode-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 20px;
}
