.movie-container {
  background: #262626;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  max-width: 900px;
  margin: 0 auto;
}

.movie-header {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.movie-poster {
  flex-shrink: 0;
}

.movie-poster img {
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.movie-poster-placeholder {
  width: 200px;
  height: 300px;
  background: #353535;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #606060;
  font-size: 14px;
}

.movie-info {
  flex: 1;
}

.movie-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.movie-meta {
  color: #888;
  margin-bottom: 20px;
}

.movie-meta span {
  margin-right: 15px;
}

.tmdb-link {
  display: inline-block;
  padding: 8px 16px;
  background: #01b4e4;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.tmdb-link:hover {
  background: #0099c4;
}

.letterboxd-link {
  display: inline-block;
  padding: 8px 16px;
  background: #00c030;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 8px;
}

.letterboxd-link:hover {
  background: #00a028;
}

.screenings-section {
  margin-top: 30px;
}

.screenings-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #353535;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hidden-toggle {
  font-size: 13px;
  font-weight: normal;
  color: #6a9a9a;
  cursor: pointer;
  user-select: none;
}

.hidden-toggle:hover {
  text-decoration: underline;
}

.screening-item.hidden-by-theatre {
  display: none;
}

.screening-list.show-hidden .screening-item.hidden-by-theatre {
  display: flex;
  opacity: 0.55;
}

.screening-list {
  list-style: none;
}

.screening-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #353535;
}

.screening-item:last-child {
  border-bottom: none;
}

.screening-date {
  width: 220px;
  font-weight: 500;
}

.screening-theatre {
  flex: 1;
  color: #888;
}

.screening-book {
  padding: 6px 12px;
  background: #4a7c7c;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
}

.screening-book:hover {
  background: #3d6868;
}

.screening-note {
  color: #888;
  font-size: 13px;
  font-style: italic;
}

.screening-book .short-text {
  display: none;
}

@media (max-width: 800px) {
  .movie-container {
    padding: 16px;
  }

  .movie-header {
    gap: 16px;
  }

  .movie-poster img {
    width: 100px;
  }

  .movie-poster-placeholder {
    width: 100px;
    height: 150px;
    font-size: 12px;
  }

  .movie-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .movie-meta {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .tmdb-link,
  .letterboxd-link {
    padding: 6px 12px;
    font-size: 13px;
  }

  .letterboxd-link {
    margin-left: 6px;
  }

  .screening-date {
    width: auto;
    min-width: 80px;
    text-align: left;
    line-height: 1.3;
    margin-right: 10px;
  }

  .screening-date .date-part {
    display: block;
  }

  .screening-date .time-part {
    display: block;
    font-weight: normal;
    font-size: 0.9em;
  }

  .screening-date .at-separator {
    display: none;
  }

  .screening-book .full-text {
    display: none;
  }

  .screening-book .short-text {
    display: inline;
  }
}
