
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      transition: background-color 0.3s ease; /* Efek transisi untuk perubahan mode tema */
      margin-bottom: 50px;
      padding-bottom: 50px; /* Sesuaikan dengan tinggi footer */
}
} 

    /* Gaya untuk mode tema terang */
    body.light-mode {
      background-color: #fff;
      color: #333;
    }

    /* Gaya untuk mode tema gelap */
    body.dark-mode {
      background-color: #333;
      color: red;
    }

    header {
      background-color: #333;
      color: #fff;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .info-banner {
      background-color: #4CAF50;
      color: #000;
      padding: 10px;
      text-align: center;
      font-size: 12px;
    }

    .logo {
      font-size: 1.5rem;
    }

    nav {
      display: flex;
      align-items: center;
    }

    .menu-icon {
      font-size: 1.5rem;
      cursor: pointer;
      color: #fff;
    }

    .movie-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      padding: 10px;
    }

    .movie {
      background-color: #eee;
      padding: 1px;
      text-align: center;
      margin: 1px;
      max-width: 300px;
    }

    .movie img {
  width: 100%;
  height: 260px; /* Gantilah dengan tinggi yang diinginkan atau gunakan max-height */
  object-fit: cover;
  margin-bottom: 10px;
}

    
    .movie h3 {
      font-size: 13px;
      height: auto;
      
    }

    @media (max-width: 767px) { .movie-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; } .movie { max-width: 100%; box-sizing: border-box; }

      .nav-list {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100vw;
        height: 100%;
        max-width: 70vw;
        width: 100%;
        background-color: #fff;
        z-index: 2;
        transition: right 0.3s ease;
      }

      .nav-list.active {
        right: 0;
      }

      .nav-list li {
        padding: 10px;
        text-align: center;
        border-bottom: 1px solid #555;
        color: #333;
        text-decoration: none;
      }

      .nav-list li a {
        text-decoration: none;
        color: #333;
      }

      .nav-list li:last-child {
        border-bottom: none;
      }

      .close-icon {
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
      }
    }

    @media (min-width: 768px) {
  .movie-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    justify-content: center;
  }

  .movie {
    
    box-sizing: border-box;
  }

      .nav-list {
        list-style-type: none;
        display: flex;
        align-items: center;
      }

      .nav-list ul {
        display: flex;
      }

      .nav-list li {
        margin-right: 20px;
      }

      .nav-list a {
        text-decoration: none;
        color: #fff;
      }

      .menu-icon {
        display: none;
      }

      .close-icon {
        display: none;
      }
    }

    footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #333;
      color: #fff;
      padding: 10px;
      text-align: center;
      font-size: 12px;
    }

    .movie a {
      text-decoration: none;
      color: #333;
    }

/* Tambahkan gaya untuk efek bayangan saat dihover */
.movie {
  position: relative;
}

.movie img {
  transition: transform 0.3s ease;
}

.movie:hover img {
  transform: scale(1.05); /* Sesuaikan besaran perbesaran sesuai kebutuhan */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Sesuaikan efek bayangan sesuai kebutuhan */
}
.movie img {
  outline: none;
}

/* Menghapus tampilan biru pada saat diklik */
.movie a,
.movie h3 a {
  color: inherit;
  text-decoration: none;
}

/* Tambahkan gaya untuk efek bayangan saat dihover */
.movie {
  position: relative;
}

.movie img {
  transition: transform 0.3s ease;
}

.movie:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.movie img {
  outline: none;
}
/* Membuat seleksi warna link menjadi transparan */
.movie a,
.movie h3 a {
  color: inherit;
  text-decoration: none;
}

/* Menonaktifkan gaya seleksi default pada link */
.movie a,
.movie h3 a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: #fff;
}



/* Gaya CSS untuk tampilan lebar */
.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Media query untuk menyempitkan tampilan pada lebar layar kurang dari 650px */
@media only screen and (max-width: 650px) {
  .container {
    width: 90%;
  }
}
