body {
    margin: 0;
    background-color: #111;
    font-family: Arial, sans-serif;
    color: #fff;
  }
  
  .container {
    width: 95%;
    margin: 0 auto;
  }
  
  header {
    background-color: #111;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 24px;
    color: red;
    font-weight: bold;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
  }
  
  .banner {
    background: url('../images/movies/movie-banner.jpg') no-repeat center;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }
  
  .banner h1 {
    font-size: 26px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
  }
  
  .section {
    margin-top: 30px;
  }
  
  .section h2 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .movies {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .movie {
    position: relative;
    width: 140px;
    overflow: hidden;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .movie img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
  }
  
  .movie:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.3);
    z-index: 1;
  }
  
  .label {
    position: absolute;
    top: 5px;
    left: 5px;
    background: red;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: bold;
  }
  