.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #181818;
  width: 90%;
  max-width: 1100px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.modal-header {
  position: relative;
  height: 60vh;
  min-height: 480px;
  background: #000;
}
.modal-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.header-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 4% 5%;
  background: linear-gradient(to top, #141414 0%, transparent 100%);
}
.modal-title {
  font-size: 3.5rem;
  margin: 0 0 1rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px #000;
}
.meta-info span {
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 4px;
  margin-right: 8px;
  font-size: 0.9rem;
}
.match {
  background: #46d369 !important;
  color: black;
  font-weight: bold;
}
.modal-body {
  padding: 2rem 5%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.modal-description p {
  line-height: 1.6;
  margin: 1rem 0;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.close-modal:hover {
  background: #e50914;
}
/* ────────────────────────────────────────────────
   Buttons-Bereich – hier die wichtigsten Änderungen
───────────────────────────────────────────────── */
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.5rem 0 2rem 0;
  align-items: center;
}
.btn {
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.btn-play .play-icon {
  font-size: 1.55rem;
  margin-right: 12px;
  font-weight: 900; /* dickeres Play-Symbol */
}
/* Mehr Infos Button */
.btn-more-info {
  background-color: rgba(109, 109, 110, 0.7);
  color: white;
  padding: 0.9rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;
}
.btn-more-info .info-icon {
  font-size: 1.3rem;
  margin-right: 10px;
}
.btn-more-info:hover,
.btn-more-info:focus {
  background-color: rgba(109, 109, 110, 1);
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}
/* ────────────────────────────────────────────────
   Buttons-Bereich – bereinigt & Netflix-2025/26 Style
───────────────────────────────────────────────── */
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 1.5rem 0 2.2rem 0;
  align-items: center;
}
/* Basis für ALLE Buttons */
.btn {
  border: none;
  border-radius: 4px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
}
/* Play-Button (Haupt-Button) */
.btn-play {
  background: #ffffff;
  color: #000000;
  padding: 0.88rem 2.25rem;
  min-width: 148px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
  letter-spacing: 0.3px;
}
.btn-play .play-icon {
  font-size: 1.6rem;
  margin-right: 12px;
  font-weight: 900;
}
.btn-play:hover,
.btn-play:focus-visible {
  background: #e50914;
  color: #ffffff;
  transform: translateY(-1px) scale(1.035);
  box-shadow:
    0 10px 30px rgba(229, 9, 20, 0.45),
    0 0 0 4px rgba(229, 9, 20, 0.20);
}
.btn-play:active {
  transform: translateY(1px) scale(0.975);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
/* Mehr Infos Button */
.btn-more-info {
  background: rgba(109, 109, 110, 0.7);
  color: #ffffff;
  padding: 0.88rem 1.9rem;
  border: 1px solid rgba(255,255,255,0.22);
  font-weight: 700;
  min-width: 140px;
}
.btn-more-info .info-icon {
  font-size: 1.35rem;
  margin-right: 10px;
}
.btn-more-info:hover,
.btn-more-info:focus-visible {
  background: rgba(109, 109, 110, 0.95);
  transform: translateY(-1px) scale(1.035);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.btn-more-info:active {
  transform: translateY(1px) scale(0.975);
}
/* Responsive Anpassung */
@media (max-width: 768px) {
  .modal-actions {
    gap: 10px;
  }
  .btn-play,
  .btn-more-info {
    padding: 0.8rem 1.7rem;
    font-size: 1.05rem;
    min-width: 120px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-title {
    font-size: 2.5rem;
  }
  .modal-header {
    height: 50vh;
  }
  .btn-play,
  .btn-more-info {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
  }
}