:root {
  --netflix-red: #e50914;
  --black: #141414;
  --dark-grey: #181818;
  --light-grey: #808080;
  --white: #ffffff;
  --nav-bg: rgba(0, 0, 0, 0);
  --transition: all 0.3s ease;
  /* Theme tokens (dark by default) */
  --bg-primary: #141414;
  --bg-secondary: #181818;
  --text-primary: #ffffff;
  --text-secondary: #e5e5e5;
  --text-muted: #808080;
  --card-bg: #181818;
  --navbar-scrolled-bg: #141414;
  --modal-bg: #141414;
  --dropdown-bg: #141414;
  --search-bg: rgba(0,0,0,0.4);
  --border-color: rgba(255,255,255,0.1);
  --footer-bg: transparent;
}

/* ==================== LIGHT MODE ==================== */
body.light-mode {
  --bg-primary: #f5f5f5;
  --bg-secondary: #e8e8e8;
  --text-primary: #111111;
  --text-secondary: #333333;
  --text-muted: #555555;
  --card-bg: #dcdcdc;
  --navbar-scrolled-bg: #e0e0e0;
  --modal-bg: #f0f0f0;
  --dropdown-bg: #f0f0f0;
  --search-bg: rgba(200,200,200,0.7);
  --border-color: rgba(0,0,0,0.12);
  --footer-bg: #e0e0e0;
}

body.light-mode {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* Navbar in light mode */
body.light-mode .navbar {
  background: linear-gradient(to bottom, rgba(220,220,220,0.95) 10%, rgba(220,220,220,0));
}
body.light-mode .navbar.scrolled {
  background-color: var(--navbar-scrolled-bg);
}
body.light-mode .logo {
  color: var(--netflix-red);
}
body.light-mode .nav-links li a {
  color: #333;
}
body.light-mode .nav-links li a:hover,
body.light-mode .nav-links li a.active {
  color: #000;
}
body.light-mode .search-container {
  background: var(--search-bg);
  border-color: rgba(0,0,0,0.2);
}
body.light-mode .search-container:focus-within {
  border-color: #333;
  background: #fff;
}
body.light-mode #search-input {
  color: #000;
}

/* Cards in light mode */
body.light-mode .movie-card {
  background-color: var(--card-bg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
body.light-mode .card-info h3 {
  color: #fff; /* stays white over dark overlay on hover */
}

/* Section titles */
body.light-mode .section-title {
  color: #111;
}

/* Footer */
body.light-mode .footer {
  color: var(--text-muted);
  background: var(--footer-bg);
}
body.light-mode .footer-links li a {
  color: var(--text-muted);
}
body.light-mode .footer-links li a:hover {
  color: var(--text-primary);
}
body.light-mode .copyright {
  color: var(--text-muted);
}

/* Modal */
body.light-mode .modal-content {
  background-color: var(--modal-bg);
  color: var(--text-primary);
}
body.light-mode .modal-info h2 {
  color: var(--text-primary);
}
body.light-mode #modal-overview {
  color: var(--text-secondary);
}
body.light-mode .modal-actors {
  color: #555;
}
body.light-mode .legal-disclaimer {
  color: var(--text-muted);
  border-color: var(--border-color);
}
body.light-mode .close-btn {
  background: rgba(0,0,0,0.2);
  color: #111;
}

/* Tabs */
body.light-mode .tab-btn {
  color: #555;
}
body.light-mode .tab-btn:hover,
body.light-mode .tab-btn.active {
  color: #111;
}
body.light-mode .tabs-container {
  border-color: var(--border-color);
}

/* Filter Dropdowns */
body.light-mode .filter-btn {
  background: #fff;
  color: #111;
  border-color: rgba(0,0,0,0.3);
}
body.light-mode .filter-dropdown {
  background: var(--dropdown-bg);
  border-color: var(--border-color);
}
body.light-mode .filter-item {
  color: #444;
}
body.light-mode .filter-item:hover {
  background: rgba(0,0,0,0.05);
  color: #111;
}

/* Streaming links */
body.light-mode .streaming-link {
  background: rgba(0,0,0,0.08);
}
body.light-mode .streaming-link:hover {
  background: rgba(0,0,0,0.15);
}
body.light-mode .streaming-name {
  color: #111;
}

/* Empty/error messages */
body.light-mode .empty-list-msg,
body.light-mode .error-msg {
  color: #555;
}

/* Watchmode section */
body.light-mode .watchmode-section {
  border-color: var(--border-color);
}
body.light-mode .watchmode-title {
  color: #444;
}

/* Recommendations */
body.light-mode .recommendations-section {
  border-color: var(--border-color);
}
body.light-mode .recommendations-title {
  color: #111;
}
body.light-mode .recommendation-card {
  background: #ddd;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Theme toggle button */
.theme-toggle-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  transform: scale(1.1);
}
body.light-mode .theme-toggle-btn {
  border-color: rgba(0,0,0,0.3);
  color: #333;
}
body.light-mode .theme-toggle-btn:hover {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.6);
}

/* ==================== INFO PAGE LIGHT MODE OVERRIDES ==================== */
/* Override inline styles on info pages (about, help, faq, terms, cookies, legal) */
body.light-mode .navbar[style] {
  background-color: rgba(235, 235, 235, 0.97) !important;
}
body.light-mode main p[style],
body.light-mode main li[style] {
  color: #333 !important;
}
body.light-mode main h1[style],
body.light-mode main h2[style],
body.light-mode main h3[style] {
  color: #111 !important;
}
body.light-mode footer.footer[style] {
  background-color: #e8e8e8 !important;
  border-top: 1px solid #ccc !important;
}
body.light-mode footer.footer p[style] {
  color: #555 !important;
}
body.light-mode footer.footer a[style] {
  color: #555 !important;
}
body.light-mode footer.footer a[style]:hover {
  color: #111 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 10%,
    rgba(0, 0, 0, 0)
  );
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: var(--black);
}

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

.logo {
  color: var(--netflix-red);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-right: 40px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #e5e5e5;
  font-size: 14px;
  transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
}

.nav-right i {
  cursor: pointer;
}

.profile-box {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.profile-box img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

/* Hero */
.hero {
  height: 80vh;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),
    url("../assets/images/hero_banner.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-left: 4%;
  position: relative;
}

.hero-content {
  max-width: 600px;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-play {
  background-color: var(--white);
  color: var(--black);
}

.btn-play:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.btn-info {
  background-color: rgba(109, 109, 110, 0.7);
  color: var(--white);
}

.btn-info:hover {
  background-color: rgba(109, 109, 110, 0.4);
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background-image: linear-gradient(
    180deg,
    transparent,
    rgba(37, 37, 37, 0.61),
    #111
  );
}

/* Main Container */
.main-container {
  padding-top: 20px;
  position: relative;
  z-index: 10;
}

/* Movie Rows */
.movie-section {
  margin: 20px 0 20px 4%;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #e5e5e5;
}

.movie-row {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 20px 0;
  gap: 10px;
}

.movie-row::-webkit-scrollbar {
  display: none;
}

/* Movie Card */
.movie-card {
  min-width: 160px;
  height: 240px;
  background-color: var(--dark-grey);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 450ms;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-card:hover {
  transform: scale(1.1);
  z-index: 100;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .card-overlay {
  opacity: 1;
}

.card-info h3 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-info p {
  font-size: 0.75rem;
  color: #ccc;
}

.error-msg {
  color: var(--netflix-red);
  padding: 20px;
  font-style: italic;
}

/* Footer */
.footer {
  padding: 50px 0 20px;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--light-grey);
}

.social-links {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  font-size: 24px;
  color: var(--white);
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  gap: 15px;
}

.footer-links li {
  font-size: 13px;
  cursor: pointer;
}

.footer-links li:hover {
  text-decoration: underline;
}

.service-code {
  background: transparent;
  border: 1px solid var(--light-grey);
  color: var(--light-grey);
  padding: 7px;
  font-size: 13px;
  margin-bottom: 20px;
  cursor: pointer;
}

.service-code:hover {
  color: var(--white);
  border-color: var(--white);
}

.copyright {
  font-size: 11px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: var(--black);
  margin: 5% auto;
  width: 90%;
  max-width: 850px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  font-weight: bold;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-header-image {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.modal-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    var(--black) 5%,
    rgba(20, 20, 20, 0.6) 30%,
    transparent 100%
  );
}

.modal-info {
  padding: 0 40px 40px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
}

.modal-info h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.modal-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: #46d369; /* Netflix match color */
  font-weight: bold;
}

#modal-date,
#modal-runtime {
  color: var(--white);
  font-weight: normal;
}

.imdb-badge {
  background: #f5c518;
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  display: none; /* Shown only if exists */
}

.modal-actors {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 15px;
}

#modal-overview {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e5e5e5;
  max-width: 80%;
}

.modal-actions {
  display: flex;
  gap: 15px;
}

.btn-plus {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-plus:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}

.btn-red {
  background-color: var(--netflix-red);
  color: var(--white);
  border: none;
}

.btn-red:hover {
  background-color: #f40612;
}

.legal-disclaimer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: var(--light-grey);
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

/* Video Modal Extensions */
.video-modal-content {
  background-color: transparent;
  margin: 2% auto;
  width: 95%;
  max-width: 1000px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.close-video-btn {
  align-self: flex-end;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.video-legal {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Search Bar Styles */
.search-container {
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  padding: 5px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  margin-right: 15px;
}

.search-container:focus-within {
  border-color: #fff;
  background: #000;
}

#search-input {
  background: transparent;
  border: none;
  color: #fff;
  width: 0;
  padding: 0;
  outline: none;
  transition: width 0.3s ease;
  font-size: 0.9rem;
}

.search-container:focus-within #search-input,
#search-input:not(:placeholder-shown) {
  width: 200px;
  padding: 0 10px;
}

.search-icon {
  cursor: pointer;
  font-size: 1.1rem;
}

/* Search Results Grid */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px 4%;
}

.search-results-grid .movie-card {
  width: 100%;
}

/* My List Toggle Buttons */
.list-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.movie-card:hover .list-btn {
  opacity: 1;
}

.list-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

.list-btn.active {
  background: var(--netflix-red);
  border-color: var(--netflix-red);
}

.empty-list-msg {
  text-align: center;
  font-size: 1.3rem;
  color: #aaa;
  grid-column: 1 / -1;
  padding: 100px 0;
}

/* Watchmode Styles */
.watchmode-section {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.watchmode-title {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ccc;
}

.watchmode-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.streaming-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.streaming-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.streaming-logo {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  margin-right: 8px;
  object-fit: cover;
}

.streaming-name {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.streaming-type {
  font-size: 0.7rem;
  color: #aaa;
  margin-left: 5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .modal-content {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  
  .modal-header-image {
    height: 250px;
  }
  
  .modal-info h2 {
    font-size: 1.8rem;
  }
  
  #modal-overview {
    max-width: 100%;
  }
}

/* Recommendations Section */
.recommendations-section {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.recommendations-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 15px;
}

.recommendation-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, border 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.recommendation-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.recommendation-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.recommendation-info {
  padding: 8px;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recommendation-card:hover .recommendation-info {
  opacity: 1;
}

.recommendation-info h4 {
  font-size: 0.8rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recommendation-info p {
  font-size: 0.7rem;
  margin: 4px 0 0;
  color: #aaa;
}

.recommendation-info .star-icon {
  color: gold;
  margin-right: 2px;
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

/* Tabs Styling */
.tabs-container {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  padding-left: 4%;
}

.tab-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

.tab-btn:hover {
  color: #fff;
}

.tab-btn.active {
  color: #fff;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--netflix-red);
}
/* Filter Controls */
.filter-controls {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding: 0 4%;
  position: relative;
  z-index: 100;
  align-items: center;
}

.filter-group {
  position: relative;
}

.filter-btn {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.filter-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 220px;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  margin-top: 5px;
  border-radius: 4px;
}

.filter-dropdown.show {
  display: block;
  animation: fadeIn 0.2s ease;
}

.dropdown-content {
  padding: 10px 0;
}

.filter-item {
  padding: 8px 20px;
  font-size: 0.9rem;
  color: #aaa;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.filter-item.active {
  color: var(--netflix-red);
  font-weight: 700;
}

.filter-item.active::after {
  content: "✔";
  font-size: 0.8rem;
}

.clear-btn {
  background: transparent;
  color: #aaa;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.3s ease;
}

.clear-btn:hover {
  color: #fff;
}

/* Custom Scrollbar for Dropdown */
.filter-dropdown::-webkit-scrollbar {
  width: 6px;
}

.filter-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.filter-dropdown::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
