
body {

  background-color: black;
  color: white;
  font-family: 'Montserrat', sans-serif !important;
}
/* 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;
  }
   .dropdown-toggle::after {
    content: "" !important;
    border: none !important;
    width: 0 !important;
    height: 0 !important;
    vertical-align: 0 !important;
    margin-left: 0 !important;
  }
  

  .dropdown-toggle:hover::after {
    width: 100% !important;
    height: 2px !important;
    background: red !important;
    position: absolute !important;
    bottom: -3px !important;
    left: 0 !important;
  }
  
.header {
    margin-bottom: 30px;
    text-align: center;
}

.search {
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
}

.search input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 40px 10px 15px;
    border-radius: 5px;
}



.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.genre-card {
    height: 180px;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

.genre-card:hover {
    transform: translateY(-5px);
}

.genre-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.genre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.genre-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.8);
}

.trending {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e50914;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
}
.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; 
  }
  
  .footer-logo {
    width: 30px; 
    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;
  }
  