    /* Héro spécifique Ballon d'Or */
    /*
    .ballondor-hero {
      background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(99, 195, 255, 0.2) 100%);
      border-bottom: 1px solid rgba(255, 215, 0, 0.15);
      position: relative;
      overflow: hidden;
    }

    .ballondor-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,5 L60,35 L90,35 L65,55 L75,85 L50,70 L25,85 L35,55 L10,35 L40,35 Z' fill='rgba(255,215,0,0.05)'/%3E%3C/svg%3E");
      opacity: 0.3;
      z-index: 1;
      pointer-events: none;
    }
    
    .ballondor-hero .hero-content {
      position: relative;
      z-index: 2;
    }
    */
    
    /* Styles pour les cartes de joueurs */
    .players-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 20px;
    }
    
    @media (min-width: 768px) {
      .players-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .players-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .player-card {
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 25px;
      transition: var(--transition);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .player-card:hover {
      border-color: var(--c-accent);
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .player-card.featured {
      border: 2px solid #FFD700;
      background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(99, 195, 255, 0.1) 100%);
    }
    
    .player-avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin-bottom: 20px;
      border: 3px solid var(--c-accent);
      object-fit: cover;
      background: white;
      padding: 5px;
    }
    
    .player-name {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--c-accent);
    }
    
    .player-role {
      color: var(--c-text-dim);
      font-size: 0.95rem;
      margin-bottom: 15px;
      line-height: 1.4;
    }
    
    .player-odds {
      font-size: 1.8rem;
      font-weight: 800;
      color: #FFD700;
      margin: 15px 0;
    }
    
    .player-stats {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 15px 0;
      flex-wrap: wrap;
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-value {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--c-accent);
    }
    
    .stat-label {
      font-size: 0.8rem;
      color: var(--c-text-dim);
      margin-top: 4px;
    }
    
    /* Layout deux colonnes pour la présentation */
    .two-columns-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }
    
    @media (min-width: 768px) {
      .two-columns-layout {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .presentation-content h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--c-accent);
      line-height: 1.2;
    }
    
    .presentation-content p {
      color: var(--c-text-dim);
      line-height: 1.6;
      margin-bottom: 15px;
      font-size: 1.05rem;
    }
    
    .presentation-image {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .trophy-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 215, 0, 0.3);
    }
    
    /* Badge favori */
    .favorite-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: linear-gradient(135deg, #FFD700, #FFA500);
      color: #000;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 1;
    }
    
    /* Chronomètre */
    .timer-container {
      display: inline-flex;
      align-items: center;
      margin-left: 10px;
      position: relative;
    }
    
    .timer-icon {
      width: 20px;
      height: 20px;
      border: 2px solid var(--c-accent);
      border-radius: 50%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: help;
      transition: var(--transition);
    }
    
    .timer-icon:hover {
      border-color: var(--c-accent-2);
      transform: scale(1.1);
    }
    
    .timer-hand {
      position: absolute;
      width: 2px;
      height: 8px;
      background: var(--c-accent);
      top: 3px;
      left: 50%;
      transform-origin: bottom center;
      transform: translateX(-50%) rotate(0deg);
      animation: rotateHand 1s linear infinite;
    }
    
    .timer-tooltip {
      position: absolute;
      bottom: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--c-card);
      border: 1px solid var(--glass-border);
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 0.9rem;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow);
      z-index: 1000;
      pointer-events: none;
      text-align: center;
      min-width: 250px;
    }
    
    .timer-container:hover .timer-tooltip {
      opacity: 1;
      visibility: visible;
    }
    
    @keyframes rotateHand {
      from { transform: translateX(-50%) rotate(0deg); }
      to { transform: translateX(-50%) rotate(360deg); }
    }
    
    /* Responsive spécifique */
    @media (max-width: 480px) {
      .player-card {
        padding: 20px 15px;
      }
      
      .player-avatar {
        width: 100px;
        height: 100px;
      }
      
      .player-name {
        font-size: 1.2rem;
      }
      
      .player-odds {
        font-size: 1.5rem;
      }
    }
    
    /* Highlight lien */
    .highlight-link {
      color: var(--c-accent);
      font-weight: 600;
      transition: var(--transition);
      display: inline-block;
      position: relative;
    }
    
    .highlight-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--c-accent);
      transition: var(--transition);
    }
    
    .highlight-link:hover {
      color: white;
    }
    
    .highlight-link:hover::after {
      width: 100%;
    }

/* Conteneur verre amélioré */
.cta-glass {
  display: flex;
  justify-content: center;
  margin: 30px 0 25px; /* Réduit la marge pour rapprocher du texte */
  position: relative;
}

/* Bouton style verre TRANSPARENT - Taille réduite */
.btn-glass-primary {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px; /* Légèrement réduit */
  padding: 0;
  position: relative;
  display: inline-block;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.15), /* Ombre plus douce */
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 280px; /* Réduit de 340px à 280px */
  max-width: 420px; /* Réduit de 500px à 420px */
  overflow: visible !important;
  text-decoration: none !important;
  color: white !important;
}

/* Effet de bordure intérieure */
.btn-glass-primary::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 13px; /* Adapté au nouveau radius */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0) 30%
  );
  pointer-events: none;
  z-index: 1;
}

.btn-glass-primary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px); /* Légèrement réduit */
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-glass-primary:active {
  transform: translateY(-1px);
}

/* Contenu du bouton verre - Taille réduite */
.btn-glass-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px; /* Réduit de 20px/30px à 16px/24px */
  gap: 16px; /* Réduit de 20px à 16px */
  position: relative;
}

.btn-glass-text {
  flex: 1;
  text-align: center;
  font-size: 1.15rem; /* Réduit de 1.3rem à 1.15rem */
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* Timer style verre transparent - Taille réduite */
.glass-timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: help;
  z-index: 1000;
}

.glass-timer {
  width: 30px; /* Réduit de 36px à 30px */
  height: 30px; /* Réduit de 36px à 30px */
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  box-shadow: 
    0 0 8px rgba(255, 255, 255, 0.08),
    inset 0 0 6px rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.btn-glass-primary:hover .glass-timer {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 0 12px rgba(255, 255, 255, 0.12),
    inset 0 0 8px rgba(255, 255, 255, 0.06);
}

.glass-timer-hand {
  position: absolute;
  width: 2px;
  height: 12px; /* Réduit de 14px à 12px */
  background: rgba(255, 255, 255, 0.8);
  top: 4px; /* Ajusté pour le cercle plus petit */
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg);
  border-radius: 1px;
  animation: glass-timer-rotate 1s linear infinite;
  transition: all 0.3s ease;
}

/* Tooltip du timer - Taille réduite */
.glass-timer-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: rgb(9, 9, 9);
  padding: 10px 15px; /* Réduit de 12px/18px à 10px/15px */
  border-radius: 8px;
  font-size: 0.8rem; /* Réduit de 0.85rem à 0.8rem */
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 9999;
  pointer-events: none;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 220px; /* Réduit de 260px à 220px */
  max-width: 280px; /* Réduit de 320px à 280px */
  margin-bottom: 10px;
}

.glass-timer-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.7) transparent transparent transparent;
}

.glass-timer-container:hover .glass-timer-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}

/* Flèche du bouton - taille réduite */
.btn-glass-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.btn-glass-primary:hover .btn-glass-arrow {
  transform: translateX(4px); /* Réduit de 5px à 4px */
  color: rgba(255, 255, 255, 0.9);
}

.btn-glass-arrow svg {
  width: 18px; /* Réduit de 20px à 18px */
  height: 18px; /* Réduit de 20px à 18px */
}

/* Animation du timer */
@keyframes glass-timer-rotate {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* Alternative : Effet de brillance plus subtil sans dépassement */
.btn-glass-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 10%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.05) 30%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  border-radius: 14px;
  pointer-events: none;
  z-index: 1;
  transition: background-position 0.8s ease;
}

.btn-glass-primary:hover::before {
  background-position: 100% 0;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-glass {
    margin: 25px 0 20px;
  }
  
  .btn-glass-primary {
    min-width: 250px;
    max-width: 85vw;
  }
  
  .btn-glass-content {
    padding: 14px 20px;
    gap: 14px;
  }
  
  .btn-glass-text {
    font-size: 1.05rem;
  }
  
  .glass-timer {
    width: 28px;
    height: 28px;
  }
  
  .glass-timer-hand {
    height: 10px;
    top: 3px;
  }
  
  .glass-timer-tooltip {
    min-width: 200px;
    font-size: 0.75rem;
    white-space: normal;
    max-width: 240px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .btn-glass-primary {
    min-width: 240px;
  }
  
  .btn-glass-content {
    padding: 14px 20px;
    gap: 0; /* Pas d'espace entre les éléments */
    justify-content: space-between; /* Espace entre texte et flèche */
    flex-direction: row; /* Horizontal */
  }
  
  .btn-glass-text {
    font-size: 1.05rem;
    order: 0; /* Réinitialise l'ordre */
    text-align: center;
    flex: 1; /* Prend tout l'espace disponible */
    margin-right: 12px; /* Espace entre le texte et la flèche */
  }
  
  /* Cacher le timer sur mobile */
  .glass-timer-container {
    display: none !important;
  }
  
  .btn-glass-arrow {
    order: 0; /* Réinitialise l'ordre */
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .glass-timer-tooltip {
    display: none !important; /* Cacher aussi le tooltip */
  }
}

.btn-glass-primary {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-glass-primary {
    width: 100%;
}








.glass-timer-container {
  position: relative; /* nécessaire pour le tooltip */
  display: inline-block; /* s'adapte à son contenu */
}

.glass-timer-tooltip {
  position: absolute;
  bottom: 100%; /* au-dessus du timer */
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 6px;
  white-space: normal; /* permet le retour à la ligne si nécessaire */
  max-width: 300px; /* limite la largeur si texte très long */
  text-align: center;
  z-index: 10;
  font-size: 0.875rem;
  display: none; /* affiché au survol */
}

.glass-timer-container:hover .glass-timer-tooltip {
  display: block;
}
