.acteurs-netflix {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.acteur-netflix {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
}

.acteur-img-netflix {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ff2a2a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  margin-bottom: 12px;
}

.acteur-role {
  color: #aaa;
  font-size: 0.95em;
}

.btn-info {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #ff2a2a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
  transition: background-color 0.3s;
}

.btn-info:hover {
  background-color: #cc0000;
}

.info-container {
  margin: 40px auto;
  max-width: 800px;
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(255, 42, 42, 0.2);
  position: relative;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #ff2a2a;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.3s;
}

.btn-close:hover {
  color: #fff;
}

.info-content h2 {
  color: #ff2a2a;
  margin-bottom: 15px;
  font-size: 1.8em;
}

.info-content h3 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info-content p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.info-content ul {
  color: #ccc;
  padding-left: 20px;
}

.info-content li {
  margin-bottom: 8px;
}