.movie-section {
  padding: 40px 0;
  background: #f5f5f5;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #2b4c8c;
}

.view-all {
  color: #2b4c8c;
  text-decoration: none;
  font-weight: 500;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

/* Coming Soon Section Specific Styles */
.coming-soon-section {
  background: #0a1527;
  padding: 40px 0;
}

.coming-soon-section .section-title {
  color: white;
}

.coming-soon-section .movie-card {
  background: rgba(255, 255, 255, 0.1);
}

.coming-soon-section .movie-title {
  color: white;
}

.coming-soon-section .movie-meta span {
  color: rgba(255, 255, 255, 0.7);
}

.coming-soon-section .book-ticket-btn {
  background: transparent;
  border: 2px solid white;
}

.coming-soon-section .book-ticket-btn:hover {
  background: white;
  color: #0a1527;
}
