.btn-block{
    color:#ffffff;
}


.section-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.bg-cosmic-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-cosmic-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}

.table-dark {
  background-color: transparent;
}


.search-bar {
  display: flex;
  gap: 10px;
}

.search-bar input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
}

.search-bar button {
  padding: 12px 20px;
  background: #e50914;
  color: white;
  border: none;
  border-radius: 8px;
}

.segmented-toggle {
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #444;
}

.segmented-toggle button {
  background: transparent;
  border: none;
  padding: 8px 20px;
  color: white;
}

.segmented-toggle button.active {
  background: #e50914;
}

.movie-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.movie-card img {
  width: 100%;
  border-radius: 12px;
}

.movie-card:hover {
  transform: scale(1.05);
}

.movie-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.detail-panel {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
}