/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--netflix-light-gray);
}

.empty-state h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Video Player Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-modal.hidden {
  display: none;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  background-color: var(--netflix-black);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.video-modal-toolbar {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  min-height: 3.5rem;
  padding: 0.5rem 0.75rem;
}

.video-modal-close,
.video-modal-fullscreen {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--netflix-white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-modal-close {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}

.video-modal-fullscreen {
  border-radius: 0.35rem;
  padding: 0.45rem 0.7rem;
}

.video-modal-close:hover,
.video-modal-fullscreen:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-close:hover {
  transform: scale(1.1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

