.lineup-content {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    color: #f6f6f6;
  }
  
  .lineup-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #920000b7;
    text-transform: uppercase;
    text-align: center;
  }
  
  .lineup-content h3 {
    margin-top: -20px;
    text-align: center;
    color: #ccc;
    margin-bottom: 30px;
  }
  
  
  .movie-box h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .movie-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #BBBBBB;
    margin-bottom: -10px;
  }
  
  hr {
    border: none;
    border-top: 1px solid #444;
    margin: 20px 0;
  }
  
  .tv-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px auto;
  }
  
  .tv-frame {
    width: 500px;
    height: 300px;
    background: #222;
    border: 12px solid #4b0000;
    border-radius: 12px;
    box-shadow: 0 0 30px red;
    position: relative;
  }
  
  .tv-screen {
    width: 100%;
    height: 100%;
    background: black;
    overflow: hidden;
    border-radius: 4px;
  }
  
  .tv-frame::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: #900;
    top: 10px;
    right: 10px;
    border-radius: 50%;
  }
  

  .movie-heading {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .movie-title {

    text-decoration: none;
    color: #fff;
  }
  
  .play-trailer-btn {
    background: none;
    border: none;
    color: #9200009d;
    cursor: pointer;
    font-size: 1em;
    transition: transform 0.2s;
  }
  
  .play-trailer-btn:hover {
    transform: scale(1.1);
  }
  
