body {
      background-color: #141414;
      color: #fff;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    .navbar {
      background-color: #000;
    }

    .navbar-brand {
      color: #e50914;
      font-size: 2rem;
      font-weight: bold;
    }

    .carousel-row {
      margin-bottom: 2rem;
    }

    .carousel-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .movie-row {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .movie-card {
      flex: 0 0 auto;
      margin-right: 10px;
      width: 300px;
      transition: transform 0.3s;
      cursor: pointer;
    }

    .movie-card:hover {
      transform: scale(1.1);
    }

    .movie-card img {
      width: 100%;
      border-radius: 6px;
    }

    .footer {
      background-color: #111;
      padding: 2rem 1rem;
      color: #888;
      text-align: center;
    }