body {
  margin: 0;
  background: #0b0b0b;
  color: #eee;
  font-family: 'Inter', sans-serif;
}

header {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 2px solid #c62828;
}

header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: #c62828;
  letter-spacing: 2px;
}

nav a {
  color: #eee;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover, nav a.active {
  color: #c62828;
}


main {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.match-card {
  border: 1px solid #333;
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.match-card h3 {
  color: #c62828;
  font-family: 'Oswald', sans-serif;
  margin: 0.2rem 0;
}

/* ROSTER */
.roster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.fighter {
  background: #141414;
  border-radius: 8px;
  border: 1px solid #333;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s;
}

.fighter:hover {
  transform: scale(1.03);
  border-color: #c62828;
}

.fighter img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.fighter h4 {
  font-family: 'Oswald', sans-serif;
  margin: 0.4rem 0;
  color: #fff;
}

.fighter p {
  font-size: 0.9rem;
  color: #aaa;
}

/* ARCHIVE */
.fight-story {
  border-left: 3px solid #c62828;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.fight-story h3 {
  margin-bottom: 0.3rem;
  color: #c62828;
}

.fight-story small {
  color: #aaa;
  font-size: 0.8rem;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #333;
  color: #666;
  font-size: 0.85rem;
  margin-top: 2rem;
}
