 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #000000;
      background-image:url(image\Home.webp);
      color: #fff;
    }
    header {
      background-color: #d62828;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: rgb(255, 247, 0);
    }
    header input {
      padding: 5px;
      font-size: 16px;
    }
    nav a {
      color: white;
      margin-left: 15px;
      text-decoration: none;
      font-weight: bold;
    }
    .trending-bar {
      background-color: #7a7a7a;
      padding: 10px 20px;
      font-size: 14px;
      color: #ffcc00;
    }
    .movie-section {
      display: flex;
      padding: 30px 20px;
    }
    .movie-info {
      flex: 1;
    }
    .movie-info h1 {
      font-size: 40px;
      margin: 0;
    }
    .movie-info p {
      font-size: 16px;
      color: #ffffff;
    }
    .movie-buttons {
      margin: 15px 0;
    }
    .movie-buttons button {
      margin-right: 10px;
      padding: 10px 20px;
      background: #ffffff;
      border: none;
      font-weight: bold;
      cursor: pointer;
    }
    .movie-image {
      flex: 1;
      padding-left: 40px;
    }
    .movie-image img {
      width: 100%;
      border-radius: 10px;
    }
    .video-section {
      padding: 20px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .video-card {
      width: 240px;
      background-color: #222;
      padding: 10px;
      border-radius: 8px;
    }
    .video-card img {
      width: 100%;
      border-radius: 5px;
    }
    .video-card p {
      font-size: 14px;
      margin-top: 8px;
}
.container {
            width: 90%;
            margin: 10px auto;
          }
        .section {
            margin-bottom: 10px;
            text-align:left;
            color: #ffffff;
        }
        .section h2 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        a:hover{
        color:rgb(0, 255, 213);
        cursor:pointer;
        }
        .movies-row, .webseries-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: space-between;
        }
        .movie:hover img {
            transform: scale(1.08);
        }
        .movie, .webseries {
            background-color:rgba(255, 255, 255, 0);
            border-radius: 8px;
            width: 23%;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(88, 85, 85, 0.274);
        }
        .movie img, .webseries img {
            width: 100%;
            height: 180px;
            object-fit:fill;
            border-radius: 8px;
            cursor: pointer;
        }
        .movie p, .webseries p {
            padding: 60px;
            text-align: center;
            color: #000;
        }
        figure{
          color: #ffffffc6;
        }
        .btn-see-more {
            display:inline-block;
            background-color: #ff0303;
            color: #fff;
            padding: 10px 20px;
            text-decoration:none;
            border-radius: 5px;
            font-size: 16px;
            text-align: center;
        }
        .btn-see-more:hover {
            background-color: #ff3c00;
        }
.footer {
      padding:100px;
      background-color: #474242;
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
    }

    .footer-column {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .footer-column a {
      color: #ffffff;
      text-decoration: none;
      font-size: 20px;
    }
     .footer-link a {
      color: #e183d3;
      text-decoration: none;
      font-size:16px;
    }
    .footer-column a:hover {
      text-decoration: underline;
    }
    a:hover{
        color:rgb(0, 247, 255);
        cursor:pointer;
    }
    @media (max-width: 768px) {
      .footer {
        flex-direction: column;
        align-items: center;
        gap: 100px;
      }
    }
    