#hero-animated {
	position: relative;
	overflow: hidden;
	padding: 80px 0;
	color: white;
}
.container-hero-overlay {

background: linear-gradient(10deg, #0a0a0a 0%, #1a1a1a 80%);
width: 70%;
margin: 0 auto;
padding: 40px;
border: 2px solid var(--gaming-primary);
clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);


}

#hero-animated {
	background: linear-gradient(30deg, rgba(0,0,0,1) 0%, rgba(19,4,59,1) 30%, rgb(22, 9, 45) 100%);
    
}

#hero-animated .stage {
	position: absolute;
	z-index: 0;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
}

#hero-animated .stage .rotate {
	position: relative;
	width: 100%;
	height: 100%;
	transform: rotate(-30deg);
}

#hero-animated .stage span {
	position: absolute;
	border-radius: 10px;
}

#hero-animated .stage span.s1 {
	background-color: rgb(39, 55, 55);
	box-shadow: 0 0 5px rgba(39, 55, 55, .7),
				0 0 10px rgba(85, 134, 134, 0.7),
				0 0 20px rgba(39, 55, 55, .7),
				0 0 30px rgba(41, 109, 109, 0.7);
}

#hero-animated .stage span.s2 {
	background-color: rgb(255, 255, 62);
	box-shadow: 0 0 5px rgba(255, 255, 62, .7),
				0 0 10px rgba(255, 175, 62, 0.7),
				0 0 20px rgba(255, 255, 62, .7),
				0 0 30px rgba(255, 255, 62, .7);
}

#hero-animated .container-hero {
	position: relative;
	z-index: 2; /* pour passer au-dessus de l'animation */
	text-align: center;
}

/* Styles for sponsors  */
/* SECTION SPONSORS – STYLE "CARTE BLANCHE" */

.sponsors-home-section.sponsors-classic {
  padding: 5rem 0;
  background: #f8f8fa; /* fond très clair */
}

/* Titre principal */

.sponsors-home-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sponsors-home-header .section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #111;
}

/* GRID */

.sponsors-grid-classic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* CARTE */

.sponsor-card-classic {
  list-style: none;
}

.sponsor-card-inner {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--gaming-primary);
  
}

/* Nom du sponsor (en haut) */

.sponsor-name-classic {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 1rem;
  text-align: center;
}

/* Zone logo : le logo occupe TOUT l'espace central */

.sponsor-logo-wrapper {
  width: 100%;
  height: 150px;           /* hauteur fixe comme sur ta capture */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sponsor-logo-classic {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;     /* on garde les proportions du logo */
}

/* Fallback si pas de logo */

.sponsor-logo-fallback {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: #e5093b;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Lien "LEUR SITE" en rouge, centré, bas de carte */

.sponsor-site-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5093b;
  text-decoration: none;
}

.sponsor-site-link:hover {
  text-decoration: underline;
}

/* Option : un peu plus d'importance aux platine / or */

.sponsor-platinum .sponsor-card-inner,
.sponsor-gold .sponsor-card-inner {
  border: 2px solid #e5093b;
}

/* Message si aucun sponsor */

.no-sponsors-home {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-top: 2rem;
}

/* FADE-IN simple (si tu actives le JS ci-dessous) */

.fade-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 768px) {
  .sponsors-home-header .section-title {
    font-size: 1.8rem;
  }

  .sponsor-logo-wrapper {
    height: 130px;
  }

  .container-hero-overlay {
    width: 90%;
    padding: 30px;
  }
}



/* Fin styles sponsors */
/*debut particules hero*/
.countdown-section {
  position: relative;
  overflow: hidden;
  background-color: #151912; /* couleur de fond de base */
}

/* Canvas particules en arrière-plan */
#countdown-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Le contenu passe par-dessus le canvas */
.countdown-section .container,
.countdown-section .countdown-wrapper {
  position: relative;
  z-index: 1;
}
