/* TARIFS SQUASH22 - Couleurs cohérentes avec le thème */

.pricing-hero {
  background: #000000; /* couleurNoir du thème */
  min-height: 100vh;
  padding: 6rem 0;
  color: #f8f9fa; /* couleurBlanc du thème */
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 6rem;
}

.pricing-header h1 {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #f5d300; /* couleur1 du thème */
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .pricing-header h1 {
    font-size: 3.2rem;
  }
}

.pricing-subtitle {
  font-size: 1.8rem;
  color: #08f7fe; /* couleur2 du thème */
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .pricing-subtitle {
    font-size: 1.4rem;
  }
}

/* Main Plans Section - 4 cartes */
.main-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
  align-items: stretch;
}

@media screen and (max-width: 1024px) {
  .main-plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .main-plans {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Pricing Cards - Couleurs thème Squash22 */
.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card.interclub {
  border-color: #08f7fe; /* couleur2 - bleu */
  background: rgba(8, 247, 254, 0.05);
}

.pricing-card.loisirs.featured {
  border-color: #f5d300; /* couleur1 - jaune */
  background: rgba(245, 211, 0, 0.05);
  transform: scale(1.02);
}

.pricing-card.abonnes {
  border-color: #fe53bb; /* couleur3 - rose */
  background: rgba(254, 83, 187, 0.05);
}

.pricing-card.recreatif {
  border-color: #555; /* couleurNeutre */
  background: rgba(85, 85, 85, 0.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.card-header {
  text-align: left;
  margin-bottom: 2rem;
}

.plan-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card-header h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #f8f9fa;
}

.plan-description {
  font-size: 1.2rem;
  color: #b0b0b0;
  line-height: 1.4;
}

/* Styles spécifiques pour les nouvelles sections */
.price-info {
  margin-bottom: 1.5rem;
}

.cotisation {
  font-size: 1.4rem;
  color: #f8f9fa;
  margin-bottom: 0.5rem;
}

.affiliation {
  font-size: 1.2rem;
  color: #08f7fe;
  margin-bottom: 0.5rem;
}

.note {
  font-size: 1.1rem;
  color: #fe53bb;
  font-style: italic;
}

.price-degressive h4 {
  font-size: 1.4rem;
  color: #f5d300;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.price-degressive ul,
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-degressive li,
.price-list li {
  font-size: 1.2rem;
  color: #f8f9fa;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.abonnements-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abonnement {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.abonnement-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.abonnement-icon {
  font-size: 1.4rem;
  min-width: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.abonnement.bronze {
  border-left: 3px solid #cd7f32;
}

.abonnement.silver {
  border-left: 3px solid #c0c0c0;
}

.abonnement.gold {
  border-left: 3px solid #ffd700;
}

.frais-inscription {
  background: rgba(8, 247, 254, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
  border-left: 3px solid #08f7fe;
  font-size: 1.1rem;
  line-height: 1.4;
}

.simple-text {
  font-size: 2rem;
  color: #555;
  text-align: left;
  display: block;
  margin: 2rem 0;
}

.cross-symbol {
  font-size: 2rem;
  color: #ff4444;
  font-weight: bold;
  display: inline-block;
}

/* Styles pour la carte récréatif */
.recreatif-tarifs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tarif-item {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 0.8rem;
  border-left: 3px solid #555;
}

.tarif-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.tarif-icon {
  font-size: 1.4rem;
  min-width: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tarif-header strong {
  font-size: 1.4rem;
  color: #f8f9fa;
}

.tarif-price {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.price-main {
  font-size: 2rem;
  font-weight: bold;
  color: #f8f9fa;
}

.price-note {
  font-size: 1.2rem;
  color: #b0b0b0;
  font-style: italic;
}

/* ===== STYLES POUR LES CARTES TARIFS SUR LA PAGE D'ACCUEIL ===== */

.tarifs-cards-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 6rem 0;
  min-height: 100vh;
}

.tarifs-cards-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tarifs-cards-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tarifs-cards-header h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #f5d300;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tarifs-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.tarif-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tarif-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 211, 0, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tarif-card.squash-card {
  border-left: 5px solid #90ee90;
}

.tarif-card.padel-card {
  border-left: 5px solid #87ceeb;
}

.tarif-card.boxes-card {
  border-left: 5px solid #40e0d0;
}

.tarif-card.location-card {
  border-left: 5px solid #c0c0c0;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: rgba(245, 211, 0, 0.1);
  border: 3px solid #f5d300;
}

/* Styles pour les icônes des sports */
.sport-icon-svg {
  width: 45px;
  height: 45px;
  color: #f5d300;
  fill: #f5d300;
}

.location-racket-icon {
  font-size: 3rem !important;
  color: #f5d300 !important;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.padel-icon {
  font-size: 3rem !important;
  color: #f5d300 !important;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.cercle-junior {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #40e0d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

.cercle-text {
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
}

.tarif-card h3 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.boxes-subtitle {
  text-align: center;
  color: #b0b0b0;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.tarif-schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.schedule-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(245, 211, 0, 0.2);
}

.schedule-item {
  color: #f8f9fa;
}

.schedule-item strong {
  color: #f5d300;
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.tarifs-table {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.tarifs-table h4 {
  color: #f5d300;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: bold;
}

.tarifs-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.tarifs-table th,
.tarifs-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tarifs-table th {
  background: rgba(245, 211, 0, 0.1);
  color: #f5d300;
  font-weight: bold;
  font-size: 1.2rem;
}

.tarifs-table td {
  color: #f8f9fa;
  font-size: 1.1rem;
}

.contact-info {
  background: rgba(8, 247, 254, 0.1);
  padding: 1.5rem;
  border-radius: 0.8rem;
  color: #08f7fe;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  border: 1px solid rgba(8, 247, 254, 0.3);
}

.annulation-note {
  background: rgba(254, 83, 187, 0.1);
  padding: 1rem;
  border-radius: 0.8rem;
  color: #fe53bb;
  font-size: 1rem;
  text-align: center;
  font-style: italic;
  border: 1px solid rgba(254, 83, 187, 0.3);
}

.boxes-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.boxes-duration,
.boxes-price {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(245, 211, 0, 0.2);
  color: #f8f9fa;
}

.boxes-duration strong,
.boxes-price strong {
  color: #f5d300;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

.boxes-price small {
  color: #b0b0b0;
  font-size: 1rem;
  font-style: italic;
}

.ecole-jeunes {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(245, 211, 0, 0.2);
  color: #f8f9fa;
}

.ecole-jeunes h4 {
  color: #f5d300;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.ecole-jeunes p {
  color: #f8f9fa;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.location-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(245, 211, 0, 0.2);
  color: #f8f9fa;
}

.location-item strong {
  color: #f5d300;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.member-info {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.member-info h4 {
  color: #f5d300;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.member-info p {
  color: #f8f9fa;
  font-size: 1.2rem;
  line-height: 1.5;
}

.nouveaute-section {
  background: linear-gradient(45deg, #f5d300, #ffa500);
  padding: 2rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(245, 211, 0, 0.3);
}

.nouveaute-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: center;
  justify-content: center;
}

.nouveaute-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.nouveaute-text {
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
}

.contact-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5d300;
}

.contact-details {
  text-align: center;
  color: #f8f9fa;
  font-size: 1.2rem;
  line-height: 1.5;
}

.contact-social {
  font-size: 1.6rem;
  color: #08f7fe;
}

/* ===== STYLES POUR LA VIDÉO DE FOND DU HERO ===== */

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto !important;
  height: calc(100vh - 66px) !important;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero_container {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 2;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: auto !important;
  height: auto !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tarifs-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tarifs-cards-header h2 {
    font-size: 2.2rem;
  }

  .tarif-schedule {
    grid-template-columns: 1fr;
  }

  .boxes-info {
    grid-template-columns: 1fr;
  }

  .contact-footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .nouveaute-content {
    flex-direction: column;
    gap: 1rem;
  }
}

.pricing-section {
  /* text-align: center; */
  margin-bottom: auto;
  padding: 2rem 0;
  flex-grow: 1;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.currency {
  font-size: 2rem;
  color: #08f7fe;
}

.amount {
  font-size: 4.8rem;
  font-weight: bold;
  color: #f8f9fa;
}

.period {
  font-size: 1.6rem;
  color: #b0b0b0;
}

.price-note {
  font-size: 1.2rem;
  color: #08f7fe;
  font-weight: 500;
}

.features-list {
  margin-bottom: 3rem;
}

.feature-group {
  margin-bottom: 2.5rem;
}

.feature-group h4 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #08f7fe;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-icon {
  font-size: 1.4rem;
  min-width: 2rem;
}

.feature-item span:last-child {
  font-size: 1.4rem;
  color: #f8f9fa;
}

.pricing-table {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  /* padding: 1rem; */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.table-row:last-child {
  border-bottom: none;
}

.table-row span {
  font-size: 1.3rem;
  color: #f8f9fa;
}

.table-header {
  font-weight: bold;
  color: #08f7fe !important;
  text-align: center;
}

.highlight {
  color: #f5d300 !important;
  font-weight: bold;
}

.subscription-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid;
  transition: all 0.3s ease;
}

.subscription-card.bronze {
  border-left-color: #cd7f32;
}

.subscription-card.bronze:hover {
  background: rgba(205, 127, 50, 0.1);
}

.subscription-card.silver {
  border-left-color: #c0c0c0;
}

.subscription-card.silver:hover {
  background: rgba(192, 192, 192, 0.1);
}

.subscription-card.gold {
  border-left-color: #ffd700;
}

.subscription-card.gold:hover {
  background: rgba(255, 215, 0, 0.1);
}

.sub-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sub-icon {
  font-size: 2rem;
}

.sub-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #f8f9fa;
}

.sub-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sub-price {
  font-size: 1.4rem;
  color: #08f7fe;
  font-weight: bold;
}

.sub-desc {
  font-size: 1.2rem;
  color: #b0b0b0;
}

.cta-button {
  width: 100%;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  margin-top: auto;
  align-self: flex-end;
}

.cta-button.primary {
  background: #f5d300;
  color: #000;
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 211, 0, 0.3);
}

.cta-button.interclub {
  background: #08f7fe;
  color: #000;
  border: 2px solid #08f7fe;
}

.cta-button.interclub:hover {
  background: transparent;
  color: #08f7fe;
}

.cta-button.abonnes {
  background: #fe53bb;
  color: #000;
  border: 2px solid #fe53bb;
}

.cta-button.abonnes:hover {
  background: transparent;
  color: #fe53bb;
}

.cta-button.recreatif {
  background: #555;
  color: #f8f9fa;
  border: 2px solid #555;
}

.cta-button.recreatif:hover {
  background: transparent;
  color: #555;
}

/* Features Comparison Table - Style comme capture */
.features-comparison {
  margin-top: 8rem;
}

.features-comparison h2 {
  font-size: 3.6rem;
  font-weight: bold;
  color: #f8f9fa;
  margin-bottom: 4rem;
  text-align: center;
}

.comparison-table {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: bold;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s ease;
}

.table-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.table-row.category-row {
  background: rgba(255, 255, 255, 0.08);
  font-weight: bold;
}

.table-row.last-row {
  border-bottom: none;
}

.feature-name {
  padding: 2rem 2rem;
  color: #f8f9fa;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.plan-column,
.player-column {
  padding: 2rem 1.5rem;
  color: #b0b0b0;
  font-size: 1.3rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  flex-direction: column;
  gap: 0.5rem;
}

.plan-column:last-child,
.player-column:last-child {
  border-right: none;
}

.checkmark {
  color: #08f7fe;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
}

/* Boutons d'inscription */
.inscription-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: 2px solid;
}

.inscription-button.membre {
  background: rgba(8, 247, 254, 0.1);
  color: #08f7fe;
  border-color: #08f7fe;
}

.inscription-button.membre:hover {
  background: #08f7fe;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 247, 254, 0.3);
}

.inscription-button.abonnement {
  background: rgba(254, 83, 187, 0.1);
  color: #fe53bb;
  border-color: #fe53bb;
}

.inscription-button.abonnement:hover {
  background: #fe53bb;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 83, 187, 0.3);
}

.button-icon {
  font-size: 1.4rem;
}

.button-text {
  font-size: 1.2rem;
}

.tarif-note {
  font-size: 1.1rem;
  color: #999;
  font-style: italic;
}

.table-header-row .feature-name {
  color: #f8f9fa;
  font-weight: bold;
  font-size: 1.5rem;
}

.table-header-row .plan-column,
.table-header-row .player-column {
  color: #f8f9fa;
  font-weight: bold;
  font-size: 1.3rem;
}

.table-header-row .interclub-col {
  color: #08f7fe;
}

.table-header-row .loisirs-col {
  color: #f5d300;
}

.table-header-row .abonnes-col {
  color: #fe53bb;
}

.table-header-row .recreatif-col {
  color: #555;
}

.category-row .feature-name {
  color: #f5d300;
  font-weight: bold;
}

.category-row .plan-column,
.category-row .player-column {
  color: #b0b0b0;
  font-weight: normal;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .comparison-table {
    font-size: 1.2rem;
  }

  .table-header-row,
  .table-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .feature-name {
    background: rgba(245, 211, 0, 0.1);
    font-weight: bold;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem !important;
    color: #f5d300 !important;
    padding: 1.5rem !important;
  }

  .plan-column,
  .player-column {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 1.5rem !important;
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
    color: #f8f9fa !important;
  }

  .plan-column:before,
  .player-column:before {
    content: attr(data-label) ": ";
    font-weight: bold;
    color: #08f7fe;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    background: rgba(8, 247, 254, 0.1);
    padding: 0.4rem 0.6rem;
    border-radius: 0.4rem;
    border-left: 3px solid #08f7fe;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .plan-column[data-label*="🔵"]:before {
    background: rgba(8, 247, 254, 0.15);
    border-left-color: #08f7fe;
  }

  .plan-column[data-label*="🟢"]:before {
    background: rgba(245, 211, 0, 0.15);
    border-left-color: #f5d300;
  }

  .plan-column[data-label*="🟡"]:before {
    background: rgba(254, 83, 187, 0.15);
    border-left-color: #fe53bb;
  }

  .player-column[data-label*="récréatif"]:before {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #888;
  }

  /* Styles pour les boutons d'inscription */
  .inscription-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid;
    margin-top: 1rem;
  }

  .inscription-button.membre {
    background: rgba(8, 247, 254, 0.1);
    border-color: #08f7fe;
    color: #08f7fe;
  }

  .inscription-button.membre:hover {
    background: #08f7fe;
    color: #000;
  }

  .inscription-button.abonnement {
    background: rgba(254, 83, 187, 0.1);
    border-color: #fe53bb;
    color: #fe53bb;
  }

  .inscription-button.abonnement:hover {
    background: #fe53bb;
    color: #fff;
  }
}

/* Responsive Final Adjustments */
@media screen and (max-width: 768px) {
  .pricing-container {
    padding: 0 1rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .features-comparison h2 {
    font-size: 2.8rem;
  }

  /* Additional mobile optimizations for comparison table */
  .comparison-table {
    margin: 1rem 0;
  }

  .table-row {
    padding: 0.5rem 0;
  }

  .feature-name {
    padding: 1rem !important;
    font-size: 1.1rem !important;
  }

  .plan-column:before,
  .player-column:before {
    font-size: 1rem !important;
    padding: 0.3rem 0.4rem !important;
    margin-bottom: 0.6rem !important;
  }
}

@media screen and (max-width: 480px) {
  .comparison-table {
    margin: 0.5rem 0;
  }

  .feature-name {
    padding: 0.8rem !important;
    font-size: 1rem !important;
  }

  .plan-column,
  .player-column {
    padding: 1rem !important;
    font-size: 1rem !important;
  }

  .plan-column:before,
  .player-column:before {
    font-size: 0.9rem !important;
    padding: 0.2rem 0.3rem !important;
    margin-bottom: 0.5rem !important;
  }

  .inscription-button {
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem !important;
  }
}

@media screen and (max-width: 480px) {
  .comparison-table {
    margin: 0.5rem 0;
  }

  .feature-name {
    padding: 0.8rem !important;
    font-size: 1rem !important;
  }

  .plan-column,
  .player-column {
    padding: 1rem !important;
    font-size: 1rem !important;
  }

  .plan-column:before,
  .player-column:before {
    font-size: 0.9rem !important;
    padding: 0.2rem 0.3rem !important;
    margin-bottom: 0.5rem !important;
  }

  .inscription-button {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.8rem !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.3rem !important;
  }
}

/* Hero Video Enhancements */

:root {
  --hero-height: calc(100vh - 66px) !important;
}

.hero-section-container {
  position: relative;
  top: 0 !important;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-fallback-content {
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.video-fallback-content p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Ensure video loads properly on mobile */
@media (max-width: 768px) {
  .hero-video {
    /* Force hardware acceleration for better mobile performance */
    transform: translateZ(0);
    will-change: transform;
  }
}

/* Override problematic WebKit media queries that prevent centering */
@media only screen and (-webkit-min-device-pixel-ratio: 0) {
  .hero_container {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: auto !important;
    height: auto !important;
    z-index: 2 !important;
  }
}

/* Additional centering fixes for all devices */
.hero_container {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: auto !important;
  height: auto !important;
  z-index: 2 !important;
}

/* Responsive text styles for hero container */
.hero_container h2 {
  font-size: 6em !important;
  margin: 0 !important;
  color: #f5d300 !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
  line-height: 1.1 !important;
}

.hero_container .subtitles2 {
  font-size: 2.4em !important;
  margin: 1em 3em !important;
  color: #f8f9fa !important;
  line-height: 1.3 !important;
}

.hero_container .cta {
  margin-top: 2em !important;
}

.hero_container .cta a {
  font-size: 1.4em !important;
  padding: 0.8em 2em !important;
  border-radius: 3em !important;
  background: #f5d300 !important;
  color: #000 !important;
  text-decoration: none !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  border: 2px solid #f5d300 !important;
}

.hero_container .cta a:hover {
  background: transparent !important;
  color: #f5d300 !important;
  border: 2px solid #f5d300 !important;
}

.section-separator {
  width: 100%;
  height: 1px;
  background: #f5d300;
  margin: 2rem 0;
}

/* Responsive breakpoints for hero text */
@media (max-width: 1200px) {
  .hero_container h2 {
    font-size: 5em !important;
  }
  .hero_container .subtitles2 {
    font-size: 2em !important;
    margin: 1em 2em !important;
  }
}

@media (max-width: 900px) {
  .hero_container h2 {
    font-size: 4.2em !important;
  }
  .hero_container .subtitles2 {
    font-size: 1.8em !important;
    margin: 1em 1.5em !important;
  }
  .hero_container .cta a {
    font-size: 1.3em !important;
    padding: 0.7em 1.8em !important;
  }
}

@media (max-width: 768px) {
  .hero_container h2 {
    font-size: 3.8em !important;
  }
  .hero_container .subtitles2 {
    font-size: 1.6em !important;
    margin: 1em 1em !important;
  }
  .hero_container .cta a {
    font-size: 1.2em !important;
    padding: 0.6em 1.5em !important;
  }
}

@media (max-width: 600px) {
  .hero_container h2 {
    font-size: 3.2em !important;
  }
  .hero_container .subtitles2 {
    font-size: 1.4em !important;
    margin: 1em 0.5em !important;
  }
  .hero_container .cta a {
    font-size: 1.1em !important;
    padding: 0.5em 1.2em !important;
  }
}

@media (max-width: 480px) {
  .hero_container {
    width: 80% !important;
  }
  .hero_container h2 {
    font-size: 3.2em !important;
  }
  .hero_container .subtitles2 {
    font-size: 1.8em !important;
    margin: 0.8em 0.3em !important;
  }
  .hero_container .cta a {
    font-size: 1em !important;
    padding: 0.4em 1em !important;
  }
}

@media (max-width: 360px) {
  .hero_container {
    width: 80% !important;
  }
  .hero_container h2 {
    font-size: 2.8em !important;
  }
  .hero_container .subtitles2 {
    font-size: 1.2em !important;
    margin: 0.6em 0.2em !important;
  }
  .hero_container .cta a {
    font-size: 0.9em !important;
    padding: 0.3em 0.8em !important;
  }
}
