.showtimes-container {
  text-align: center;
  margin: 2rem auto;
  max-width: 800px;
}

.showtime-date {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem;
  color: #fff;
}

.showtime-times {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.showtime-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #555;
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.showtime-btn:hover .showtime-label {
  opacity: 0;
}

.showtime-btn .hover-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.showtime-btn:hover .hover-label {
  opacity: 1;
}

@media (max-width: 480px) {
  .showtime-times {
    flex-direction: column;
    align-items: center;
  }

  .showtime-btn {
    width: 100%;
  }
}

