/* Styles spécifiques pour la page Prix */

#prix_content {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Introduction */
.prix_intro {
  text-align: center;
  margin-bottom: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.prix_intro h2 {
  color: #D4AF37;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Sections de prix */
.prix_section {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.prix_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
}

.prix_section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* En-tête des sections */
.prix_header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.crown_icon {
  font-size: 48px;
  color: #D4AF37;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.prix_header h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.total_value {
  font-size: 32px;
  font-weight: bold;
  color: #D4AF37;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Détails des prix */
.prix_details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.prix_item {
  display: flex;
  align-items: center;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 5px solid #D4AF37;
}

.prix_item:hover {
  background: #fff;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
  transform: translateX(10px);
}

.prix_icon {
  font-size: 36px;
  color: #D4AF37;
  margin-right: 20px;
  min-width: 50px;
}

.prix_info h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.prix_amount {
  font-size: 24px;
  font-weight: bold;
  color: #D4AF37;
  margin-bottom: 10px;
}

.prix_info p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Grille des dauphines */
.runnerup_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.runnerup_item {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.runnerup_item:hover {
  border-color: #D4AF37;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.runnerup_item .position {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.runnerup_item .amount {
  font-size: 22px;
  font-weight: bold;
  color: #D4AF37;
}

/* Grille des prix additionnels */
.additional_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.additional_item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.additional_item:hover {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.award_icon {
  font-size: 32px;
  color: #D4AF37;
  margin-right: 15px;
  min-width: 40px;
}

.award_info h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.award_amount {
  font-size: 20px;
  font-weight: bold;
  color: #D4AF37;
  margin-bottom: 5px;
}

.award_info p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Résumé */
.prix_summary {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin: 40px 0;
}

.prix_summary h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #fff;
}

.summary_stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
}

.stat_item {
  text-align: center;
}

.stat_number {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.stat_label {
  font-size: 16px;
  opacity: 0.9;
}

.summary_text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Section participation */
.participation_section {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  margin-top: 40px;
}

.participation_section h3 {
  text-align: center;
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
}

.participation_info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.info_item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info_item:hover {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.info_icon {
  font-size: 32px;
  color: #D4AF37;
  margin-right: 20px;
  min-width: 50px;
}

.info_content h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.info_content p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

.participation_note {
  text-align: center;
  font-size: 16px;
  color: #666;
  font-style: italic;
  margin-top: 20px;
}
#center h1 {
  text-align: center;
  width: 100%;
  display: block;
}
/* Responsive */
@media (max-width: 768px) {
  .prix_intro {
    padding: 30px 20px;
  }
  
  .prix_intro h2 {
    font-size: 28px;
  }
  
  .intro-text {
    font-size: 16px;
  }
  
  .prix_section {
    padding: 30px 20px;
  }
  
  .prix_details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .prix_item {
    flex-direction: column;
    text-align: center;
  }
  
  .prix_icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .runnerup_grid {
    grid-template-columns: 1fr;
  }
  
  .additional_grid {
    grid-template-columns: 1fr;
  }
  
  .summary_stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .participation_info {
    grid-template-columns: 1fr;
  }
  
  .info_item {
    flex-direction: column;
    text-align: center;
  }
  
  .info_icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
