body {
  margin: 0;
  font-family: "Arial Black", Arial, sans-serif;
  background: #0F5717;
  color: #fff;
}

/* TOP BAR */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #ffcc00;
  border-bottom: 4px solid #b30000;
}

.logo {
  font-size: 20px;
  color: #b30000;
  letter-spacing: 2px;
  text-shadow: 1px 1px #fff;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #0b5d1e;
  font-weight: bold;
}

nav a:hover {
  color: #b30000;
}

/* HERO */
.hero {
  text-align: center;
  padding: 50px 20px;
  background: rgba(0,0,0,0.4);
  border-bottom: 3px solid #ffcc00;
}

.hero h1 {
  font-size: 42px;
  color: #ffcc00;
  text-shadow: 2px 2px #b30000;
}

.hero p {
  color: #fff;
  opacity: 0.9;
}

/* SECTIONS */
.section {
  padding: 40px 20px;
}

.section h2 {
  background: #b30000;
  display: inline-block;
  padding: 6px 12px;
  border: 2px solid #ffcc00;
  color: #fff;
  margin-bottom: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
    break-after: always;
}

/* CARDS */
.card {
  background: #fff;
  color: #000;
  border: 3px solid #ffcc00;
  text-align: center;
  padding: 10px;
  transform: rotate(-1deg);
  transition: 0.2s ease;
}

.card:nth-child(even) {
  transform: rotate(1deg);
}

.card:hover {
  transform: scale(1.05) rotate(0deg);
  border-color: #b30000;
}

.card img {
  width: 100%;
  height: auto;
  max-height: 250px; /* optional cap */
}

/* CHAMPIONS */
.champion {
  background: #ffcc00;
  color: #000;
}

/* NEWS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.news-card {
  background: #0b0b0b;
  border: 2px solid #ffcc00;
  padding: 15px;
}

.news-card h3 {
  color: #ffcc00;
}

.news-card .date {
  font-size: 12px;
  color: #0b5d1e;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  background: #b30000;
  border-top: 3px solid #ffcc00;
}