:root {
  --primary-color: #e50914;
  --secondary-color: #000;
  --bg-color: #121212;
  --text-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
}

main {
  padding-top: 120px;
}

/* Slider */
.hero-slider {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  height: 90vh;
}
.slides {
  position: relative;
  height: 100%;
}
.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
}
.slide.active {
  display: block;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.slide-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
}
.slide-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.slide-content a {
  text-decoration: none;
  padding: 15px 30px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 30px;
  transition: background .3s;
}
.slide-content a:hover {
  background: #b20710;
}
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 5;
}
.slider-arrows button {
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2em;
  padding: 10px;
  cursor: pointer;
  transition: background .3s;
}
.slider-arrows button:hover {
  background: var(--primary-color);
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.slider-dots button {
  border: none;
  background: #333;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s;
}
.slider-dots button.active,
.slider-dots button:hover {
  background: var(--primary-color);
}

/* Actualités */
#actualites {
  padding: 60px 40px;
}
#actualites h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 10px;
}
.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 30px;
}
.news-card {
  background: var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform .3s;
}
.news-card:hover {
  transform: translateY(-5px);
}
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-content {
  padding: 20px;
}
.news-content h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.news-content .meta {
  font-size: .9em;
  color: #aaa;
  margin-bottom: 10px;
}
.news-content p {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 15px;
}
.news-content a {
  color: var(--primary-color);
  font-weight: bold;
  transition: color .3s;
}
.news-content a:hover {
  color: var(--text-color);
}

/* Matchs */
#matchs {
  padding: 60px 40px;
}
#matchs h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 10px;
}
.matches-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.match-card {
  background: var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.status {
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: bold;
}
.match-header h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.match-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team {
  flex: 1;
  text-align: center;
}
.score {
  font-size: 2em;
  font-weight: bold;
}
.details {
  margin-top: 15px;
  font-size: .9em;
  color: #ccc;
  text-align: center;
}

/* Vidéos */
#videos {
  padding: 60px 40px;
}
#videos h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 10px;
}
.videos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 30px;
}
.video-card {
  background: var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform .3s;
}
.video-card:hover {
  transform: translateY(-5px);
}
.video-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.video-content {
  padding: 20px;
}
.video-content h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.video-content p {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 15px;
}
.video-content a {
  color: var(--primary-color);
  font-weight: bold;
  transition: color .3s;
}
.video-content a:hover {
  color: var(--text-color);
}

/* Stats */
#stats {
  padding: 60px 40px;
}
#stats h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 10px;
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
  text-align: center;
}
.stat-card {
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.stat-card h3 {
  font-size: 2em;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.stat-card p {
  font-size: 1em;
  color: #ccc;
}

/* Sponsors */
#sponsors {
  padding: 60px 40px;
}
#sponsors h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 10px;
}
.sponsors-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}
.sponsor {
  background: var(--secondary-color);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  transition: transform .3s;
}
.sponsor:hover {
  transform: scale(1.05);
}
.sponsor img {
  max-width: 150px;
  filter: grayscale(100%);
  transition: filter .3s;
  display: block;
  width: 100%;
}
.sponsor img:hover {
  filter: grayscale(0);
}
.sponsor-image-container {
  position: relative;
}
.sponsor-description {
  background: rgba(0,0,0,0.6);
  color: #ccc;
  font-size: .8em;
  padding: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2.5em;
  }
  .slide-content p {
    font-size: 1em;
  }
}

/* Footer styles moved to footer_accueil.css via @import */
@import url('../includes/footer_accueil.css');
  