
        body {
            background-color: #141414;
            color: white;
            font-family: 'Montserrat', sans-serif;
        }

        /* nav bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
  }
  
  .navbar.transparent {
    background-color: transparent;
  }
  
  .navbar.solid {
    background-color: black;
  }
  
  .navbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .navbar-nav {
    margin-right: 20px;
  }
  
  .nav-item {
    margin-right: 15px;
    position: relative;
  }
  
  .nav-link {
    color: white;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: red;
  }
  
  .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: red;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -3px;
    left: 0;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .navbar-toggler-icon {
    filter: invert(1);
  }
  .dropdown-menu-dark {
  background-color: #1a1a1a;
  border: 1px solid #333;
  margin-top: 8px;
  padding: 10px 0;
  min-width: 230px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  }
  
  .dropdown-menu-dark .dropdown-item {
  color: #e5e5e5;
  padding: 8px 15px;
  transition: all 0.2s ease;
  }
  
  .dropdown-menu-dark .dropdown-item:hover {
  background-color: #333;
  color: #ff0000;
  }
  
  .dropdown-divider {
  border-top: 1px solid #333;
  margin: 5px 0;
  }
  
  .user-profile {
  padding: 10px 15px;
  cursor: default;
  }
  
  .user-profile:hover {
  background-color: transparent;
  }
  
  .profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
  }
  
  .profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
   /* Keep the hover underline but remove only the dropdown arrow */
   .dropdown-toggle::after {
    content: "" !important;
    border: none !important;
    width: 0 !important;
    height: 0 !important;
    vertical-align: 0 !important;
    margin-left: 0 !important;
  }
  
  /* This ensures the hover effect still works for dropdown items */
  .dropdown-toggle:hover::after {
    width: 100% !important;
    height: 2px !important;
    background: red !important;
    position: absolute !important;
    bottom: -3px !important;
    left: 0 !important;
  }
  
        .carousel {
            max-height: 750px;
            overflow: hidden;
        }

        .carousel img {
            object-fit: cover;
            height: 750px;
        }

        .container {
            padding: 10px;
            max-width: 95vw;
            margin-top: 0x;
        }
        /* top picks */
        .trending {
          padding: 20px;
          font-family: 'Montserrat', sans-serif !important;
          gap: 30px;
        }
        
        .trending-title {
          font-size: 40px;
          font-weight: bold;
          margin-bottom: 15px;
        }
        
        .movie-card {
          position: relative;
          width: 195px;
          height: 280px;
          border-radius: 10px;
        
          transition: transform 0.3s ease-in-out;
          cursor: pointer;
          margin-bottom: 20px;
          margin-left: 30px;
          margin-right: 30px;
        }
        
        .movie-card img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
          border-radius: 10px;
        
        }
        
        .movie-card:hover {
          transform: scale(1.1);
        }
        
        .number {
          position: absolute;
          top: -3px;
          left: -6px;
          font-size: 50px;
          font-weight: bold;
          color: black;
          text-shadow: -3px -3px 0 white, 3px -3px 0 white, -3px 3px 0 white, 3px 3px 0 white;
          z-index: 5;
        }
        
        @media (max-width: 576px) {
          .movie-card {
            width: 120px;
            height: 180px;
          }
        
          .number {
            font-size: 40px;
          }
        }
        .movie {
            position: relative;
            transition: transform 0.3s ease-in-out;
        }

        .movie img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 5px;
        }

        .movie:hover {
            transform: scale(1.2);
            z-index: 10;
        }

        .info {
            position: relative;
            background: rgba(0, 0, 0, 0.9);
            padding: 10px;
            border-radius: 0 0 5px 5px;
            display: none;
        }

        .movie:hover .info {
            display: block;
        }

        .info h5 {
            font-size: 16px;
            font-weight: bold;
        }

        .info p {
            font-size: 12px;
            color: #b3b3b3;
        }

        .actions {
            display: flex;
            gap: 10px;
        }

        .actions i {
            font-size: 18px;
            cursor: pointer;
            transition: color 0.3s;
            color: white;
        }

        .liked {
            color: red !important;
            transform: scale(1.2);
        }

        .title {
            font-size: 1.5rem;
            font-weight: bold;
            margin: 20px 0;
        }

        .card {
            width: 100%;
            height: 180px;
            border: none;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .card img {
            width: 100%;
            border-radius: 5px;
            transition: 0.3s ease;
            height: 180px;
            object-fit: cover;
        }

        .card .arrow-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(255, 0, 0, 0.8);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .card:hover img {
            border: 2px solid white;
            filter: brightness(0.7);
        }

        .card:hover .arrow-icon {
            opacity: 1;
        }

        .tag {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background-color: red;
            padding: 5px;
            font-size: 0.8rem;
            border-radius: 5px;
            color: white;
            z-index: 3;
        }

        .container {
            max-width: 95%;
        }

        .card {
            margin-bottom: 15px;
        }

        .movie-link {
            text-decoration: none;
            color: white;
            display: block;
        }
        .card {
            margin-bottom: 15px;
        }

        @media (max-width: 767px) {
            .info {
                display: none !important;
            }

            .movie:hover {
                transform: none !important;
            }
        }
        .footer {
            background: #0d0d0d;
            color: #f1f1f1;
            text-align: center;
            padding: 40px 0;
          
            box-shadow: 0px -2px 15px rgba(255, 255, 255, 0.1);
          }
          
          .footer-container {
            max-width: 1000px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            text-align: center;
            padding: 0 20px;
          }
          
          /* Branding & Logo */
          .footer-brand {
           
            min-width: 250px;
            margin-bottom: 15px;
          }
          
          .footer-brand h2 {
            font-size: 22px;
            color:#ee394c;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px; /* Space between logo and text */
          }
          
          .footer-logo {
            width: 30px; /* Smaller size for inline look */
            height: auto;
          }
          
          /* Navigation Links */
          .footer-links {
           
            min-width: 250px;
            margin-bottom: 15px;
          }
          
          .footer-links a {
            display: inline-block;
            color: #f1f1f1;
            text-decoration: none;
            margin: 8px 12px;
            font-size: 14px;
            transition: color 0.3s ease;
          }
          
          .footer-links a:hover {
            color:#dc3545;
          }
          
          /* Social Media Icons */
          .social-icons {
           
            min-width: 250px;
            margin-bottom: 15px;
          }
          
          .social-icons a {
            display: inline-block;
            margin: 0 8px;
            font-size: 20px;
            color: #f1f1f1;
            transition: color 0.3s ease, transform 0.3s ease;
          }
          
          .social-icons a:hover {
            color:red;
            transform: scale(1.3);
          }
          
          /* Copyright Section */
          .footer-copy {
            font-size: 12px;
            opacity: 0.7;
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 10px;
          }
          .main2 {
            background-color: #000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            font-family: Arial, sans-serif;
            color: #fff;
          }
         
          
          .carousel2 {
            width: 1000px;
            height: 400px;
            position: relative;
          }
          
          .images2 {
            width: 100%;
            height: 100%;
            perspective: 1000px;
            transform-style: preserve-3d;
            display: flex;
            justify-content: center;
            align-items: center;
          }
          
          .image2 {
            position: absolute;
            width: 200px;
            height: 300px;
            top: 50px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: all 0.5s;
          }
          
          .center2 {
            width: 260px;
            height: 360px;
            top: 20px;
            z-index: 5;
          }
          
          .image2 img {
            width: 100%;
            height: 100%;
          }
          
          /* Navigation Buttons */
          .nav-buttons2 {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
          }
          
          .nav-btn2 {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #ff0000; /* Red color */
            border: none;
            cursor: pointer;
            color: #fff;
            font-size: 20px;
          }