/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f6f6f6;
  color: #222;
}

/* BARRE NOIRE */
.main-header {
  background: #111;
  padding: 15px 0;
}

.top-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
}

.top-nav a {
  color: #e85420;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s;
}

.top-nav a:hover {
  color: #fff;
}

/* BANNIÈRE */
.banniere img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

/* CONTENU PRINCIPAL */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 40px;
}

.actus {
  flex: 2;
}

.sidebar {
  flex: 1;
  min-width: 300px;
}

/* CARDS */
.card {
  background: white;
  border-left: 5px solid #e85420;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.card h3 {
  color: #e85420;
  margin-bottom: 10px;
}

/* MATCHS */
.match-card {
  border-left: 5px solid #111;
}

/* FOOTER */
.site-footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px 10px;
  margin-top: 50px;
}

.sponsors img {
  height: 50px;
  margin: 0 15px;
}
