/* Movie show styles extracted from template */

  .movie-show-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem 2rem;
    position: relative;
  }

  .back-button-container {
    margin-bottom: 2rem;
  }

  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
  }

  .back-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
  }

  .movie-header {
    margin-bottom: 2.5rem;
  }

  .movie-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.1;
  }

  .movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    color: #b3b3b3;
    font-size: 1rem;
  }

  .meta-item.year {
    font-weight: 600;
    color: #e5e5e5;
  }

  .meta-item.riders {
    font-size: 0.9rem;
  }

  .meta-item.brands {
    font-size: 0.9rem;
    color: var(--sport-accent);
    font-weight: 500;
  }

  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    margin-bottom: 2.5rem;
  }

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

  .cover-art-container {
    margin-bottom: 2.5rem;
  }

  .cover-art {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
  }

  .movie-section {
    margin-bottom: 2.5rem;
    max-width: 900px;
  }

  .entity-page .movie-section {
    max-width: none;
  }

  .movie-rows--entity {
    margin-top: 0;
    padding: 0;
  }

  .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
  }

  .section-content {
    color: #b3b3b3;
    line-height: 1.7;
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    .movie-show-container {
      padding: 1rem 1rem 1rem 1rem;
    }

    .movie-title {
      font-size: 2rem;
    }

    .back-link span {
      display: none;
    }

  }

  @media (max-width: 480px) {
    .movie-meta {
      font-size: 0.9rem;
    }
  }


