
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  background: var(--bleu-gradient);
  position: relative;
  padding: 3rem 0 3.5rem 0;
  overflow: hidden;
  border-bottom: 6px solid var(--jaune-orange);
}

.hero::after {
  content: "⚡";
  font-size: 260px;
  opacity: 0.06;
  position: absolute;
  bottom: -40px;
  right: -20px;
  pointer-events: none;
  font-weight: 900;
  color: var(--jaune-orange);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFF 60%, var(--jaune-orange) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-text .tagline {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255,255,240,0.9);
  border-left: 4px solid var(--jaune-orange);
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.badge-emission {
  background: var(--jaune-orange-gradient);
  padding: 0.6rem 1.4rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bleu);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(2px);
  display: inline-block;
}

.section-detail {
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}

.card-detail {
  background: var(--blanc);
  border-radius: 2rem;
  box-shadow: var(--shadow-sm);
  padding: 2rem 2.2rem;
  transition: var(--transition);
  border: 1px solid var(--gris-border);
  margin-bottom: 2.5rem;
}

.card-detail:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.grille-infos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  border-bottom: 1px solid var(--gris-border);
  padding-bottom: 1.8rem;
  margin-bottom: 1.8rem;
}

.info-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gris-pale);
  padding: 0.6rem 1.4rem;
  border-radius: 60px;
  font-weight: 500;
}

.info-pill i.emoji {
  font-size: 1.5rem;
}

.chaine-badge {
  background: var(--bleu);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.presentateur {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: #f0f3fe;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  margin: 1.5rem 0;
}

.avatar {
  background: var(--jaune-orange-gradient);
  width: 60px;
  height: 60px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--bleu);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.grid-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.rubrique {
  background: var(--gris-pale);
  border-radius: 1.5rem;
  padding: 1.6rem;
  transition: var(--transition);
  border-left: 6px solid var(--jaune-orange);
}

.rubrique h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rubrique p {
  color: #2c3e4e;
  margin-bottom: 1rem;
  font-weight: 500;
}

.liste-sports {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.sport-tag {
  background: white;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bleu);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--gris-border);
}

.timeline {
  margin-top: 2rem;
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--gris-border);
}

.timeline-item {
  display: flex;
  gap: 1.2rem;
  border-bottom: 1px dashed var(--gris-border);
  padding: 1rem 0;
}

.timeline-hour {
  font-weight: 500;
  font-size: 12px;
  min-width: 80px;
  color: var(--rouge);
}

.btn-replay {
  background: var(--bleu-gradient);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(10,44,117,0.3);
  font-size: 1rem;
}

.btn-replay:hover {
  transform: scale(1.02);
  background: var(--bleu);
  box-shadow: 0 10px 20px -5px rgba(10,44,117,0.5);
}

footer {
  background: #0e1b2f;
  color: #b0c4de;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  border-top: 4px solid var(--jaune-orange);
  font-size: 0.85rem;
}

@media (max-width: 750px) {
  .container {
    padding: 0 1.2rem;
  }
  .hero-text h1 {
    font-size: 2.3rem;
  }
  .card-detail {
    padding: 1.5rem;
  }
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
}