@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

:root {
  --primary: #e74c3c;
  --secondary: #2c3e50;
  --accent: #f39c12;
  --light: #ecf0f1;
  --dark: #1a2530;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

@font-face {
    font-family: w;
    src: url(./fonts/WanoQuin-ExtraBold.otf);
}

body {
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.6;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.preloader-logo {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
}

.logo-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(243, 156, 18, 0.3);
  border-radius: 50%;
  animation: rotate 4s linear infinite;
}

.logo-circle-inner {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border: 3px solid rgba(231, 76, 60, 0.5);
  border-radius: 50%;
  animation: rotate 3s linear infinite reverse;
}

.basketball-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  color: var(--accent);
  animation: pulse 2s infinite;
}

.loading-text {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--light);
  margin-bottom: 15px;
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

/* Navigation Styles */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(26, 37, 48, 0.95);
  padding: 15px 5%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  font-family: w;
}

.logo span {
  color: var(--primary);
  font-family: w;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  cursor: pointer;
}

/* Section Styles */
section {
  min-height: 100vh;
  padding: 100px 10% 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-family: w;
  font-size: 3.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
}

.section-title span {
  color: var(--primary);
  font-family: w;
}

.section-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Home Section */
#home {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  text-align: center;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  font-family: w;
}
.hero-title span {
  font-family: w;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--accent);
  font-weight: 600;
}

/* Effet de scintillement pour tous les boutons */
.scintillant {
  position: relative;
  overflow: hidden;
}

.scintillant::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.scintillant:hover::before {
  transform: translateX(100%);
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary);
  color: var(--light);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.cta-button:hover {
  background: var(--accent);
  color: #1a2530;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-button:hover::before {
  transform: translateX(100%);
}

.basketball-bg {
  position: absolute;
  opacity: 0.05;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background-image: radial-gradient(
      circle,
      rgba(231, 76, 60, 0.1) 2px,
      transparent 2px
    ),
    radial-gradient(circle, rgba(231, 76, 60, 0.1) 1px, transparent 1px);
  background-size: 80px 80px, 40px 40px;
  background-position: 0 0, 40px 40px;
  z-index: 1;
}

/* Lecteur Musical */
.music-player {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 350px;
  background: rgba(44, 62, 80, 0.9);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 50;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.player-title {
  font-size: 1.2rem;
  color: var(--accent);
}

.player-close {
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.player-close:hover {
  color: var(--primary);
}

.track-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.album-cover {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.track-details {
  flex: 1;
}

.track-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.artist-name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.control-btn.play-pause {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  background: var(--primary);
}

.control-btn:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.control-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.control-btn:hover::before {
  transform: translateX(100%);
}

.progress-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 6px;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
}

.progress-bar-music {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 5px;
  transition: width 0.1s linear;
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-icon {
  color: var(--accent);
}

.volume-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.2);
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

.playlist {
  margin-top: 20px;
  max-height: 200px;
  overflow-y: auto;
}

.playlist-title {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.playlist-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.playlist-item:hover {
  background: rgba(0, 0, 0, 0.2);
}

.playlist-item.active {
  background: rgba(231, 76, 60, 0.2);
  border-left: 3px solid var(--primary);
}

.playlist-item-cover {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: linear-gradient(45deg, #3498db, #9b59b6);
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.playlist-item-info {
  flex: 1;
}

.playlist-item-name {
  font-size: 0.9rem;
}

.playlist-item-artist {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Evenement Section */

#evenement {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2530 100%);
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.slider {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Images de fond séparées du HTML */

.slide-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("media/mlk15.png");
}

.slide-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("media/momo-bas.jpg");
}

.slide-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("media/mamzy.jpg");
}

.slide-4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("media/tsering.jpg");
}
.slide-5 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("media/tour4.jpg");
}
.slide-6 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("media/benali.jpg");
}
.slide-7 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("media/pub.jpg");
}
.slide-8 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("media/mlk16.jpg");
}
.slide-9 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("media/mlk26.jpg");
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.slide-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: white;
}

.slide-date {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.2rem;
}

.slide-description {
  margin-top: 10px;
  color: #eee;
  max-width: 600px;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(26, 37, 48, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
}

.slider-arrow.left {
  left: 20px;
}

.slider-arrow.right {
  right: 20px;
}

/* Planning Section */

#planning {
  background: linear-gradient(135deg, #1a2530 0%, var(--secondary) 100%);
  min-height: 100vh;
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#planning h4 {
  color: #e74c3c;
  font-family: w;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
}

.poules-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.poule {
  background: rgba(44, 62, 80, 0.8);
  border-radius: 15px;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.poule:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.poule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent);
}

.poule-title {
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0;
}

.poule-stage {
  background: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.match-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.match {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 4px solid var(--accent);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.match:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: translateX(5px);
}

.teams {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 600;
}

.team {
  display: flex;
  align-items: center;
  width: 40%;
}

.team.home {
  justify-content: flex-start;
}

.team.away {
  justify-content: flex-end;
}

.team-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
}

.vs {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.match-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.match-date {
  display: flex;
  align-items: center;
}

.match-date i {
  margin-right: 8px;
  color: var(--primary);
}

.match-location {
  display: flex;
  align-items: center;
}

.match-location i {
  margin-right: 8px;
  color: var(--primary);
}

.match-status {
  background: rgba(243, 156, 18, 0.2);
  color: var(--accent);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  margin-top: 10px;
  align-self: flex-start;
}


/* Nouvelle Section Vidéo */
#videos {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2530 100%);
}

.video-slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-slider {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.video-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 10;
}

.video-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
}

.video-info {
  display: flex;
  justify-content: space-between;
  color: var(--accent);
  font-size: 1.1rem;
}

.video-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.video-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.video-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(26, 37, 48, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}

.video-arrow:hover {
  background: var(--primary);
}

.video-arrow.left {
  left: 20px;
}

.video-arrow.right {
  right: 20px;
}

/*Contact Section */

#contact {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2530 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.contact-text h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-form {
  background: rgba(44, 62, 80, 0.6);
  padding: 40px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--light);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.3);
}

.submit-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--accent);
  color: #1a2530;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* Footer */
footer {
  background: var(--dark);
  padding: 40px 10%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer p {
  color: #e74c3c;
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.social-link:hover::before {
  transform: translateX(100%);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .slider-container {
    height: 400px;
  }

  .music-player {
    width: 300px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 101;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(26, 37, 48, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .slider-container {
    height: 350px;
  }

  .poules-container {
    grid-template-columns: 1fr;
  }

  .music-player {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 680px) {
    .music-player {
        display: none;
    }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .slider-container {
    height: 300px;
  }

  .slide-content {
    padding: 20px;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .team {
    flex-direction: column;
    text-align: center;
  }

  .team-logo {
    margin: 5px auto;
  }
  .contact-container {
    display: block;
  }
  .contact-form {
    margin-top: 18px;
  }

}


/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
