  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
    height: 100%;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    color: #111;
  }
  body {
    min-height: 100vh;
    background: transparent;
  }

  /* NAVBAR GLASS */
  nav.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255 255 255 / 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }
  nav.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: color 0.3s ease;
  }
  nav.navbar a:first-child {
    margin-left: 0;
  }
  nav.navbar a:hover {
    color: #007bff;
  }

  /* CARROUSEL PLEIN ÉCRAN */
  section.carousel {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .carousel-slide {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0; left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

.carousel-caption {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0,0,0,0.5);
  padding: 8px 12px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  max-width: 70%;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease;
}

.carousel-caption:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-caption h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.carousel-caption p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

  /* CATALOGUE */
  main {
    max-width: 1000px;
    margin: 50px auto 100px;
    padding: 0 20px;
  }
  .catalogue {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    backdrop-filter: blur(4px);
  }
  .film-card a {
    text-decoration: none;
    color: #111;
    display: block;
    transition: transform 0.3s ease;
    overflow: hidden;
    background: #fff;
  }
  .film-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
	border-radius: 12px;
  }
  .film-card:hover img {
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    filter: brightness(1.05);
  }
  .film-info {
    margin: 12px;
  }
  .film-info h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
  }
  .film-info p {
    font-size: 0.95rem;
    color: #555;
  }

  /* FILTRES */
  .filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px auto 40px;
    max-width: 800px;
    padding: 20px;
    background: rgba(118, 160, 255, 0.1);
    backdrop-filter: blur(4.4px);
    border-radius: 16px;
    border: 1px solid rgba(118, 160, 255, 0.26);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }
  .filters label {
    font-weight: 600;
    color: #111;
    font-size: 1.1rem;
    text-align: center;
    align-content: center;
  }
  .filter-select,
  .search-bar {
    flex: 1;
    min-width: 160px;
    padding: 10px;
    font-size: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0,0,0,0.15);
    color: #111;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .filter-select:focus,
  .search-bar:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    outline: none;
  }
  .filters form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  /* PAGINATION */
  .pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 2rem;
  }
  .pagination .page-link,
  .pagination button {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.8);
    color: #111;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
  }
  .pagination .page-link:hover,
  .pagination button:hover {
    background: #007bff;
    color: white;
    transform: scale(1.05);
  }
  .pagination .page-link.active,
  .pagination button.active {
    background-color: #1280ff;
    color: white;
    pointer-events: none;
    box-shadow: 0 0 0 3px rgba(18, 128, 255, 0.3);
  }

  /* FOOTER */
  footer.footer-info {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
    background: rgba(118, 160, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 1rem;
    color: #333;
    backdrop-filter: blur(4.4px);
    border: 1px solid rgba(118, 160, 255, 0.26);
  }
  footer.footer-info p {
    margin: 0;
    color: #111;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .filters {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .filter-select,
    .search-bar {
      min-width: 200px;
      margin-bottom: 10px;
    }
  }