.accueil-body {
    background: linear-gradient(to bottom right, #071d49, #0c3d8d);
    color: white;
    font-family: "Open Sans", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .accueil-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 1rem;
    gap: 3rem;
    text-align: center;
    position: relative;
  }
  
  .accueil-block {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .accueil-block:nth-child(2) {
    animation-delay: 0.2s;
  }
  .accueil-block:nth-child(3) {
    animation-delay: 0.4s;
  }
  .accueil-block:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .accueil-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .accueil-btn {
    display: inline-block;
    background: linear-gradient(to right, #9bcbeb 50%, #f18608 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #000;
    font-weight: bold;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background-position 0.4s ease, color 0.3s ease;
    text-decoration: none;
  }
  
  .accueil-btn:hover {
    background-position: left bottom;
    color: #071d49;
  }
  
  .accueil-block::before {
    content: "🏀";
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: bounce 1.2s infinite ease-in-out alternate;
  }
  
  @keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
  }
  .hero-intro {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
  }
  
  .intro-heading {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
  
  .intro-text {
    font-size: 1.2rem;
    color: #ddd;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
  }
  
  .stats-section, .a-la-une-section {
    margin-top: 3rem;
  }
  
  .stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f18608;
    display: block;
  }
  
  .stat-label {
    font-size: 1rem;
    color: #fff;
  }
  
  .a-la-une-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .actu-card {
    background: white;
    color: #071d49;
    padding: 1rem 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
/*.side-info {
  position: fixed;
  top: 30%;
  width: 140px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  z-index: 10;
  color: white;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.side-info.left {
  left: 10px;
  text-align: center;
}

.side-info.right {
  right: 10px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f18608;
}

.actu-mini {
  background: white;
  color: #071d49;
  margin: 0.5rem 0;
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.85rem;
}
  