* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0084ff;
  --primary-dark: #0066cc;
  --primary-light: #4da6ff;
  --secondary-color: #ff00cc;
  --background-dark: #181818;
  --background-card: #181818;
  --background-elevated: #1a1a2e;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #6b7280;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 20px rgba(0, 132, 255, 0.3);
  --blur-glass: blur(20px);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.6;
}

/* ==========================================
   ADVANCED PROGRESS BAR
   ========================================== */

#progressBarContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(18, 18, 18, 0.3);
  z-index: 9999;
  overflow: hidden;
}

#progressBar {
  height: 100%;
  width: 0;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    var(--primary-color) 100%
  );
  background-size: 200% 100%;
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  animation: shimmer 2s infinite;
  position: relative;
}

#progressGlow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 132, 255, 0.5) 50%,
    transparent 100%
  );
  filter: blur(8px);
  opacity: 0;
  animation: glowPulse 3s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* ==========================================
   PREMIUM HEADER
   ========================================== */

.premium-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s var(--transition-smooth);
}

.premium-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.premium-header.scrolled::before {
  opacity: 1;
}

.header-container {
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
}

/* ==========================================
   BRAND LOGO WITH GLOW EFFECT
   ========================================== */

.brand-logo {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10;
  transition: transform 0.3s var(--transition-smooth);
}

.brand-logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 35px;
  width: auto;
  position: relative;
  z-index: 2;
  transition: filter 0.3s;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(0, 132, 255, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

/* ==========================================
   ADVANCED SEARCH MODULE
   ========================================== */

.search-module {
  flex: 1;
  max-width: 700px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.search-wrapper {
  position: relative;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 16;
}

.search-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--background-elevated),
    var(--background-dark)
  );
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.search-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity 0.3s;
}

.search-toggle:hover::before {
  opacity: 1;
}

.search-icon-btn {
  font-size: 18px;
  transition: transform 0.3s;
}

.search-toggle:hover .search-icon-btn {
  transform: scale(1.1);
}

/* Search Input Wrapper */
.search-input-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: #181818;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  border: 2px solid transparent;
  transition: all 0.4s var(--transition-smooth);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 5;
}

.search-input-wrapper.expanded {
  width: 300px;
  border-top: 1.5px solid #68e7fd;
  border-bottom: 1.5px solid #68e7fd;
  border-left: 1.5px solid #68e7fd;
  border-right: 8px solid #181818;
}

.search-prefix-icon {
  color: var(--text-secondary);
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.search-input-wrapper.expanded .search-prefix-icon {
  opacity: 1;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.3s;
}

.search-input-wrapper.expanded .search-input {
  opacity: 1;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-clear {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  flex-shrink: 0;
}

.search-input-wrapper.expanded .search-clear {
  opacity: 1;
}

.search-clear:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: scale(1.1);
}

/* Search Filters */
.search-filters {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.search-input-wrapper.expanded .search-filters {
  opacity: 1;
  max-height: 60px;
}

.filter-chip {
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.filter-chip:hover {
  border-color: var(--primary-color);
  background: rgba(0, 132, 255, 0.1);
  color: var(--text-primary);
}

.filter-chip.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* ==========================================
   SEARCH RESULTS PANEL
   ========================================== */

.search-results-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: 300px;
  max-height: 600px;
  background: #181818;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s var(--transition-smooth);
  overflow: hidden;
  backdrop-filter: var(--blur-glass);
}

.search-results-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Search Stats */
.search-stats {
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: rgba(0, 132, 255, 0.05);
}

.stats-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.stats-time {
  font-size: 12px;
  color: var(--text-muted);
}

/* Results Container */
.results-container {
  max-height: 400px;
  overflow-y: auto;
}

/* =========================================
   Hide scrollbar — Results Container
   ========================================= */

.results-container {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.results-container::-webkit-scrollbar {
  width: 1px;
  height: 0;
  display: none;
}

.results-container::-webkit-scrollbar {
  width: 1px;
}

.results-container::-webkit-scrollbar-track {
  background: transparent;
}

.results-container::-webkit-scrollbar-thumb {
  background: rgba(0, 132, 255, 0.3);
  border-radius: 10px;
}

.results-container::-webkit-scrollbar-thumb:hover {
  background: rgba(32, 32, 32, 0.5);
}

/* Search Result Item */
.search-result-item {
  display: flex;
  gap: 0.7rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.459);
  padding: 0px 8px;
  padding-top: 10px;
  padding-bottom: 6px;
}

.search-result-item:first-child {
  padding-top: 8px;      
  border-top: none;
}

.search-result-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 132, 255, 0.05),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.search-result-item:hover::before {
  transform: translateX(100%);
}

.result-poster {
  width: 60px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.result-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.search-result-item:hover .result-poster img {
  transform: scale(1.1);
}

.result-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.result-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.search-result-item:hover .result-title {
  color: var(--primary-light);
}

/* =========================================
   Result Meta — Micro Accent Elegance
   ========================================= */

.result-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.25;
}

.item-meta-ser {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.item-meta-ser i {
  font-size: 0.7rem;
  opacity: 0.7;
  transform: translateY(-0.4px);
}

.result-rating {
  position: relative;
  font-weight: 600;
  color: #fbbf24;
  padding-bottom: 2px;
}

.result-rating::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(251, 191, 36, 0.6),
    rgba(251, 191, 36, 0)
  );
}

.result-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.genre-item {
  padding: 0.05rem 0.4rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 2px solid rgba(102, 126, 234, 0.6);
  border-radius: 4px;
  white-space: nowrap;
}

/* Recent Searches */
.recent-searches {
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--border-color);
}

.recent-header {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.recent-header i {
  color: var(--primary-color);
}

.clear-history {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s;
}

.clear-history:hover {
  color: #ef4444;
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.recent-item {
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  color: var(--text-secondary);
}

.recent-item:hover {
  background: rgba(0, 132, 255, 0.1);
  color: var(--text-primary);
  padding-left: 1rem;
}

/* Trending Searches */
.trending-searches {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-color);
}

.trending-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.trending-header i {
  color: #ff6b35;
}

.trending-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.trending-tag {
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(255, 0, 204, 0.1)
  );
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  color: var(--text-primary);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.trending-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.2),
    rgba(255, 0, 204, 0.2)
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Show All Section */
.show-all-section {
  border-top: 1px solid var(--border-color);
  border-radius: 10px;
  background: rgba(0, 132, 255, 0.03);
}

.show-all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.45rem;
  background: rgb(24, 24, 24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.show-all-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  transform: translateX(-100%);
  transition: transform 0.6s;
    opacity: 0.2;
}

.show-all-btn:hover::before {
  transform: translateX(100%);
  opacity: 0.3;
}

.show-all-btn i {
  transition: transform 0.3s;
}

/* Empty State */
.search-empty {
  padding: 3rem 1.5rem;
  text-align: center;
}

.empty-icon {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.empty-text {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==========================================
   HEADER ACTIONS
   ========================================== */

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--background-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}

.action-btn:hover {
  background: var(--background-card);
  border-color: var(--primary-color);
  color: var(--text-primary);
  transform: scale(1.05);
}

.notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid var(--background-dark);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.user-profile-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
  cursor: pointer;
}

.user-profile-btn:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.profile-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  border: 2px solid var(--background-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ==========================================
   NOTIFICATION PANEL
   ========================================== */

.notification-panel {
  position: fixed;
  top: 70px;
  right: -350px;
  width: 350px;
  max-height: 500px;
  background: var(--background-elevated);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  transition: right 0.3s var(--transition-smooth);
  z-index: 999;
  overflow: hidden;
}

.notification-panel.active {
  right: 2rem;
}

.notification-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.mark-all-read {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.3s;
}

.mark-all-read:hover {
  color: var(--primary-light);
}

.notification-list {
  max-height: 400px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s;
  cursor: pointer;
}

.notification-item:hover {
  background: rgba(0, 132, 255, 0.05);
}

.notification-item.unread {
  background: rgba(0, 132, 255, 0.08);
}

.notification-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.notification-content {
  flex: 1;
}

.notification-text {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.notification-time {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================
   ENHANCED INTRO SCREEN
   ========================================== */

.intro-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.5s forwards;
}

.intro-screen.fade-out {
  animation: fadeOut 0.8s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.intro-content {
  text-align: center;
  position: relative;
}

.intro-logo-wrapper {
  position: relative;
  margin-bottom: 2rem;
  animation: logoSlideDown 1s ease-out;
}

@keyframes logoSlideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.intro-logo {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 132, 255, 0.5));
}

.logo-particles {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(0, 132, 255, 0.3) 0%,
    transparent 70%
  );
  filter: blur(20px);
  animation: particlePulse 3s infinite;
}

@keyframes particlePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.intro-title {
  width: 280px;
  height: auto;
  margin-bottom: 1rem;
  animation: titleSlideUp 1s 0.3s ease-out both;
}

@keyframes titleSlideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.intro-tagline {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 1s 0.6s ease-out both;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.intro-loader {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
  animation: fadeInUp 1s 0.9s ease-out both;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 10px;
  animation: loaderProgress 2s ease-out forwards;
}

@keyframes loaderProgress {
  to {
    width: 100%;
  }
}

.skip-intro {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.skip-intro:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateX(-5px);
}

/* ==========================================
   SCROLLBAR STYLES
   ========================================== */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 132, 255, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 132, 255, 0.5);
}

html {
  scrollbar-color: rgba(0, 132, 255, 0.3) transparent;
  scrollbar-width: thin;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes slideInFromTop {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-result-item {
  animation: slideInFromBottom 0.3s ease-out;
}

.search-result-item:nth-child(1) {
  animation-delay: 0.05s;
}
.search-result-item:nth-child(2) {
  animation-delay: 0.1s;
}
.search-result-item:nth-child(3) {
  animation-delay: 0.15s;
}
.search-result-item:nth-child(4) {
  animation-delay: 0.2s;
}
.search-result-item:nth-child(5) {
  animation-delay: 0.25s;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.no-scroll {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.blur-background {
  filter: blur(5px);
  pointer-events: none;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   Base (default): 350px - 570px
   ========================================== */

/* ------------------------------------------
   Tiny devices (max-width: 299px)
   ------------------------------------------ */
@media (max-width: 299px) {
  /* Header */
  .header-container {
    padding: 6px 8px;
    gap: 6px;
  }

  /* Logo */
  .logo-img {
    height: 22px;
  }

  /* Search */
  .search-toggle {
    width: 32px;
    height: 32px;
  }

  .search-icon-btn {
    font-size: 14px;
  }

  .search-input-wrapper {
    width: 32px;
    height: 32px;
    padding: 0 0.6rem;
  }

  .search-input-wrapper.expanded {
   width: 180px;
  }

  .search-prefix-icon {
    font-size: 14px;
  }

  .search-input {
    font-size: 12px;
  }

  .search-input::placeholder {
    font-size: 11px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 180px;
    right: -8px;
    max-height: 70vh;
    border-radius: 12px;
  }

  .results-container {
    max-height: 35vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 0.6rem 0.8rem;
  }

  .stats-count {
    font-size: 12px;
  }

  .stats-time {
    font-size: 10px;
  }

  /* Result Items */
  .search-result-item {
    gap: 0.5rem;
    padding: 8px 6px;
    padding-top: 8px;
    padding-bottom: 5px;
  }

  .result-poster {
    width: 42px;
    height: 63px;
    border-radius: 6px;
  }

  .result-title {
    font-size: 12px;
  }

  .result-meta {
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  .item-meta-ser i {
    font-size: 0.6rem;
  }

  .result-genres {
    gap: 0.25rem;
    margin-top: 0.3rem;
  }

  .genre-item {
    font-size: 0.65rem;
    padding: 0.03rem 0.3rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 0.35rem;
    padding: 0.5rem 0;
  }

  .filter-chip {
    padding: 0.3rem 0.6rem;
    font-size: 11px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 0.6rem 0.8rem;
  }

  .recent-header,
  .trending-header {
    font-size: 11px;
    margin-bottom: 0.4rem;
  }

  .recent-item {
    padding: 0.45rem 0.55rem;
    font-size: 12px;
  }

  .trending-tag {
    padding: 0.35rem 0.7rem;
    font-size: 11px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 0.35rem;
    font-size: 12px;
  }

  /* Empty State */
  .search-empty {
    padding: 2rem 1rem;
  }

  .empty-icon {
    font-size: 36px;
  }

  .empty-title {
    font-size: 14px;
  }

  .empty-text {
    font-size: 12px;
  }

  /* Header Actions */
  .header-actions {
    gap: 0.4rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 32px;
    height: 32px;
  }

  .notification-badge {
    width: 14px;
    height: 14px;
    font-size: 8px;
    top: -1px;
    right: -1px;
  }

  .profile-status {
    width: 8px;
    height: 8px;
    bottom: 1px;
    right: 1px;
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle span {
    width: 18px;
    height: 1.5px;
  }

  /* Notification Panel */
  .notification-panel {
    width: calc(100vw - 16px);
    right: calc(-100vw + 16px);
    max-height: 60vh;
  }

  .notification-panel.active {
    right: 0.5rem;
  }

  .notification-header {
    padding: 0.8rem;
  }

  .notification-header h3 {
    font-size: 14px;
  }

  .mark-all-read {
    font-size: 11px;
  }

  .notification-item {
    gap: 0.6rem;
    padding: 0.7rem 0.8rem;
  }

  .notification-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .notification-text {
    font-size: 12px;
  }

  .notification-time {
    font-size: 10px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 100px;
  }

  .intro-title {
    width: 160px;
  }

  .intro-tagline {
    font-size: 12px;
    margin-bottom: 1.5rem;
  }

  .intro-loader {
    width: 140px;
    height: 3px;
  }

  .skip-intro {
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 12px;
  }
}

/* ------------------------------------------
   Small phones (max-width: 350px)
   ------------------------------------------ */
@media (max-width: 350px) {
  /* Header */
  .header-container {
    padding: 8px 10px;
    gap: 8px;
  }

  /* Logo */
  .logo-img {
    height: 26px;
  }

  /* Search */
  .search-toggle {
    width: 36px;
    height: 36px;
  }

  .search-icon-btn {
    font-size: 15px;
  }

  .search-input-wrapper {
    width: 36px;
    height: 36px;
    padding: 0 0.75rem;
  }

  .search-input-wrapper.expanded {
    width: 220px;
  }

  .search-prefix-icon {
    font-size: 15px;
  }

  .search-input {
    font-size: 13px;
  }

  .search-input::placeholder {
    font-size: 12px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 220px;
    max-height: 75vh;
    border-radius: 14px;
  }

  .results-container {
    max-height: 40vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 0.7rem 1rem;
  }

  .stats-count {
    font-size: 13px;
  }

  .stats-time {
    font-size: 11px;
  }

  /* Result Items */
  .search-result-item {
    gap: 0.6rem;
    padding: 10px 7px;
    padding-top: 9px;
    padding-bottom: 5px;
  }

  .result-poster {
    width: 50px;
    height: 75px;
    border-radius: 7px;
  }

  .result-title {
    font-size: 13px;
  }

  .result-meta {
    font-size: 0.75rem;
    gap: 0.6rem;
  }

  .item-meta-ser i {
    font-size: 0.65rem;
  }

  .result-genres {
    gap: 0.3rem;
    margin-top: 0.35rem;
  }

  .genre-item {
    font-size: 0.7rem;
    padding: 0.04rem 0.35rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 0.4rem;
    padding: 0.6rem 0;
  }

  .filter-chip {
    padding: 0.35rem 0.75rem;
    font-size: 12px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 0.7rem 1rem;
  }

  .recent-header,
  .trending-header {
    font-size: 12px;
    margin-bottom: 0.5rem;
  }

  .recent-item {
    padding: 0.5rem 0.65rem;
    font-size: 13px;
  }

  .trending-tag {
    padding: 0.4rem 0.85rem;
    font-size: 12px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 0.4rem;
    font-size: 13px;
  }

  /* Empty State */
  .search-empty {
    padding: 2.5rem 1.25rem;
  }

  .empty-icon {
    font-size: 42px;
  }

  .empty-title {
    font-size: 16px;
  }

  .empty-text {
    font-size: 13px;
  }

  /* Header Actions */
  .header-actions {
    gap: 0.5rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 36px;
    height: 36px;
  }

  .notification-badge {
    width: 15px;
    height: 15px;
    font-size: 9px;
  }

  .profile-status {
    width: 9px;
    height: 9px;
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }

  /* Notification Panel */
  .notification-panel {
    width: calc(100vw - 20px);
    right: calc(-100vw + 20px);
    max-height: 65vh;
  }

  .notification-panel.active {
    right: 0.75rem;
  }

  .notification-header {
    padding: 1rem;
  }

  .notification-header h3 {
    font-size: 16px;
  }

  .mark-all-read {
    font-size: 12px;
  }

  .notification-item {
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .notification-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .notification-text {
    font-size: 13px;
  }

  .notification-time {
    font-size: 11px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 130px;
  }

  .intro-title {
    width: 200px;
  }

  .intro-tagline {
    font-size: 14px;
    margin-bottom: 1.75rem;
  }

  .intro-loader {
    width: 160px;
    height: 3px;
  }

  .skip-intro {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.6rem 1.25rem;
    font-size: 13px;
  }
}

/* ------------------------------------------
   Large phones (min-width: 570px)
   ------------------------------------------ */
@media (min-width: 570px) {
  /* Header */
  .header-container {
    padding: 8px 20px;
    gap: 12px;
  }

  /* Logo */
  .logo-img {
    height: 40px;
  }

  /* Search */
  .search-toggle {
    width: 44px;
    height: 44px;
  }

  .search-icon-btn {
    font-size: 19px;
  }

  .search-input-wrapper {
    width: 44px;
    height: 44px;
    padding: 0 1.1rem;
  }

  .search-input-wrapper.expanded {
    width: 360px;
  }

  .search-prefix-icon {
    font-size: 19px;
  }

  .search-input {
    font-size: 16px;
  }

  .search-input::placeholder {
    font-size: 14px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 360px;
    max-height: 65vh;
  }

  .results-container {
    max-height: 45vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 1.1rem 1.4rem;
  }

  .stats-count {
    font-size: 15px;
  }

  .stats-time {
    font-size: 13px;
  }

  /* Result Items */
  .search-result-item {
    gap: 0.85rem;
    padding: 12px 10px;
    padding-top: 11px;
    padding-bottom: 7px;
  }

  .result-poster {
    width: 68px;
    height: 102px;
    border-radius: 9px;
  }

  .result-title {
    font-size: 16px;
  }

  .result-meta {
    font-size: 0.875rem;
    gap: 0.95rem;
  }

  .item-meta-ser i {
    font-size: 0.75rem;
  }

  .result-genres {
    gap: 0.4rem;
    margin-top: 0.5rem;
  }

  .genre-item {
    font-size: 0.78rem;
    padding: 0.06rem 0.45rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 0.6rem;
    padding: 0.85rem 0;
  }

  .filter-chip {
    padding: 0.45rem 1rem;
    font-size: 14px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 1rem 1.4rem;
  }

  .recent-header,
  .trending-header {
    font-size: 14px;
    margin-bottom: 0.65rem;
  }

  .recent-item {
    padding: 0.7rem 0.9rem;
    font-size: 15px;
  }

  .trending-tag {
    padding: 0.55rem 1.1rem;
    font-size: 14px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 0.5rem;
    font-size: 16px;
  }

  /* Empty State */
  .search-empty {
    padding: 3.5rem 2rem;
  }

  .empty-icon {
    font-size: 54px;
  }

  .empty-title {
    font-size: 20px;
  }

  .empty-text {
    font-size: 15px;
  }

  /* Header Actions */
  .header-actions {
    gap: 0.9rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 44px;
    height: 44px;
  }

  .notification-badge {
    width: 19px;
    height: 19px;
    font-size: 11px;
  }

  .profile-status {
    width: 13px;
    height: 13px;
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle span {
    width: 26px;
    height: 2.5px;
  }

  /* Notification Panel */
  .notification-panel {
    width: 380px;
    right: -380px;
    max-height: 55vh;
    top: 75px;
  }

  .notification-panel.active {
    right: 2.5rem;
  }

  .notification-header {
    padding: 1.4rem;
  }

  .notification-header h3 {
    font-size: 20px;
  }

  .mark-all-read {
    font-size: 14px;
  }

  .notification-item {
    gap: 1.1rem;
    padding: 1.1rem 1.4rem;
  }

  .notification-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .notification-text {
    font-size: 15px;
  }

  .notification-time {
    font-size: 13px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 200px;
  }

  .intro-title {
    width: 320px;
  }

  .intro-tagline {
    font-size: 18px;
    margin-bottom: 2.5rem;
  }

  .intro-loader {
    width: 240px;
    height: 5px;
  }

  .skip-intro {
    bottom: 2.5rem;
    right: 2.5rem;
    padding: 0.85rem 1.75rem;
    font-size: 15px;
  }
}

/* ------------------------------------------
   Tablets (min-width: 760px)
   ------------------------------------------ */
@media (min-width: 760px) {
  /* Header */
  .header-container {
    padding: 8px 28px;
    gap: 16px;
  }

  /* Logo */
  .logo-img {
    height: 44px;
  }

  /* Search */
  .search-module {
    max-width: 500px;
  }

  .search-toggle {
    width: 46px;
    height: 46px;
  }

  .search-icon-btn {
    font-size: 20px;
  }

  .search-input-wrapper {
    width: 46px;
    height: 46px;
    padding: 0 1.2rem;
  }

  .search-input-wrapper.expanded {
    width: 420px;
  }

  .search-prefix-icon {
    font-size: 20px;
  }

  .search-input {
    font-size: 16px;
  }

  .search-input::placeholder {
    font-size: 14px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 420px;
    max-height: 70vh;
  }

  .results-container {
    max-height: 50vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 1.15rem 1.5rem;
  }

  .stats-count {
    font-size: 15px;
  }

  .stats-time {
    font-size: 13px;
  }

  /* Result Items */
  .search-result-item {
    gap: 1rem;
    padding: 14px 12px;
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .result-poster {
    width: 75px;
    height: 112px;
    border-radius: 10px;
  }

  .result-title {
    font-size: 16px;
  }

  .result-meta {
    font-size: 0.875rem;
    gap: 1rem;
  }

  .item-meta-ser i {
    font-size: 0.75rem;
  }

  .result-genres {
    gap: 0.45rem;
    margin-top: 0.55rem;
  }

  .genre-item {
    font-size: 0.8rem;
    padding: 0.07rem 0.5rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 0.65rem;
    padding: 0.9rem 0;
  }

  .filter-chip {
    padding: 0.5rem 1.1rem;
    font-size: 14px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 1.1rem 1.5rem;
  }

  .recent-header,
  .trending-header {
    font-size: 14px;
    margin-bottom: 0.7rem;
  }

  .recent-item {
    padding: 0.75rem 1rem;
    font-size: 15px;
  }

  .trending-tag {
    padding: 0.6rem 1.2rem;
    font-size: 14px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 0.55rem;
    font-size: 16px;
  }

  /* Empty State */
  .search-empty {
    padding: 4rem 2.5rem;
  }

  .empty-icon {
    font-size: 60px;
  }

  .empty-title {
    font-size: 22px;
  }

  .empty-text {
    font-size: 15px;
  }

  /* Header Actions */
  .header-actions {
    gap: 1rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 46px;
    height: 46px;
  }

  .notification-badge {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .profile-status {
    width: 14px;
    height: 14px;
  }

  /* Notification Panel */
  .notification-panel {
    width: 400px;
    right: -400px;
    max-height: 60vh;
    top: 80px;
  }

  .notification-panel.active {
    right: 3rem;
  }

  .notification-header {
    padding: 1.5rem;
  }

  .notification-header h3 {
    font-size: 20px;
  }

  .mark-all-read {
    font-size: 14px;
  }

  .notification-item {
    gap: 1.15rem;
    padding: 1.15rem 1.5rem;
  }

  .notification-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .notification-text {
    font-size: 15px;
  }

  .notification-time {
    font-size: 13px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 220px;
  }

  .intro-title {
    width: 350px;
  }

  .intro-tagline {
    font-size: 19px;
    margin-bottom: 2.75rem;
  }

  .intro-loader {
    width: 260px;
    height: 5px;
  }

  .skip-intro {
    bottom: 2.75rem;
    right: 2.75rem;
    padding: 0.9rem 1.9rem;
    font-size: 15px;
  }
}

/* ------------------------------------------
   Small laptops (min-width: 990px)
   ------------------------------------------ */
@media (min-width: 990px) {
  /* Header */
  .header-container {
    padding: 10px 36px;
    gap: 18px;
    margin: 0 auto;
  }

  /* Logo */
  .logo-img {
    height: 48px;
  }

  /* Search */
  .search-module {
    max-width: 600px;
  }

  .search-toggle {
    width: 48px;
    height: 48px;
  }

  .search-icon-btn {
    font-size: 21px;
  }

  .search-input-wrapper {
    width: 48px;
    height: 48px;
    padding: 0 1.3rem;
  }

  .search-input-wrapper.expanded {
    width: 480px;
  }

  .search-prefix-icon {
    font-size: 21px;
  }

  .search-input {
    font-size: 17px;
  }

  .search-input::placeholder {
    font-size: 15px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 480px;
    max-height: 75vh;
  }

  .results-container {
    max-height: 55vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 1.25rem 1.6rem;
  }

  .stats-count {
    font-size: 16px;
  }

  .stats-time {
    font-size: 14px;
  }

  /* Result Items */
  .search-result-item {
    gap: 1.1rem;
    padding: 16px 14px;
    padding-top: 14px;
    padding-bottom: 9px;
  }

  .result-poster {
    width: 82px;
    height: 123px;
    border-radius: 11px;
  }

  .result-title {
    font-size: 17px;
  }

  .result-meta {
    font-size: 0.9rem;
    gap: 1.1rem;
  }

  .item-meta-ser i {
    font-size: 0.78rem;
  }

  .result-genres {
    gap: 0.5rem;
    margin-top: 0.6rem;
  }

  .genre-item {
    font-size: 0.82rem;
    padding: 0.08rem 0.55rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 0.7rem;
    padding: 1rem 0;
  }

  .filter-chip {
    padding: 0.55rem 1.2rem;
    font-size: 15px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 1.2rem 1.6rem;
  }

  .recent-header,
  .trending-header {
    font-size: 15px;
    margin-bottom: 0.75rem;
  }

  .recent-item {
    padding: 0.8rem 1.1rem;
    font-size: 16px;
  }

  .trending-tag {
    padding: 0.65rem 1.3rem;
    font-size: 15px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 0.6rem;
    font-size: 17px;
  }

  /* Empty State */
  .search-empty {
    padding: 4.5rem 3rem;
  }

  .empty-icon {
    font-size: 66px;
  }

  .empty-title {
    font-size: 24px;
  }

  .empty-text {
    font-size: 16px;
  }

  /* Header Actions */
  .header-actions {
    gap: 1.1rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 48px;
    height: 48px;
  }

  .notification-badge {
    width: 21px;
    height: 21px;
    font-size: 12px;
  }

  .profile-status {
    width: 15px;
    height: 15px;
  }

  /* Notification Panel */
  .notification-panel {
    width: 420px;
    right: -420px;
    max-height: 65vh;
    top: 85px;
  }

  .notification-panel.active {
    right: 3.5rem;
  }

  .notification-header {
    padding: 1.6rem;
  }

  .notification-header h3 {
    font-size: 21px;
  }

  .mark-all-read {
    font-size: 15px;
  }

  .notification-item {
    gap: 1.2rem;
    padding: 1.2rem 1.6rem;
  }

  .notification-icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .notification-text {
    font-size: 16px;
  }

  .notification-time {
    font-size: 14px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 240px;
  }

  .intro-title {
    width: 380px;
  }

  .intro-tagline {
    font-size: 20px;
    margin-bottom: 3rem;
  }

  .intro-loader {
    width: 280px;
    height: 5px;
  }

  .skip-intro {
    bottom: 3rem;
    right: 3rem;
    padding: 0.95rem 2rem;
    font-size: 16px;
  }
}

/* ------------------------------------------
   Desktops (min-width: 1200px)
   ------------------------------------------ */
@media (min-width: 1200px) {
  /* Header */
  .header-container {
    padding: 10px 48px;
    gap: 18px;
  }

  /* Logo */
  .logo-img {
    height: 52px;
  }

  /* Search */
  .search-module {
    max-width: 700px;
  }

  .search-toggle {
    width: 50px;
    height: 50px;
  }

  .search-icon-btn {
    font-size: 22px;
  }

  .search-input-wrapper {
    width: 50px;
    height: 50px;
    padding: 0 1.4rem;
  }

  .search-input-wrapper.expanded {
    width: 550px;
  }

  .search-prefix-icon {
    font-size: 22px;
  }

  .search-input {
    font-size: 18px;
  }

  .search-input::placeholder {
    font-size: 16px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 550px;
    max-height: 80vh;
  }

  .results-container {
    max-height: 60vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 1.35rem 1.8rem;
  }

  .stats-count {
    font-size: 17px;
  }

  .stats-time {
    font-size: 15px;
  }

  /* Result Items */
  .search-result-item {
    gap: 1.2rem;
    padding: 18px 16px;
    padding-top: 16px;
    padding-bottom: 10px;
  }

  .result-poster {
    width: 90px;
    height: 135px;
    border-radius: 12px;
  }

  .result-title {
    font-size: 18px;
  }

  .result-meta {
    font-size: 0.95rem;
    gap: 1.2rem;
  }

  .item-meta-ser i {
    font-size: 0.8rem;
  }

  .result-genres {
    gap: 0.55rem;
    margin-top: 0.65rem;
  }

  .genre-item {
    font-size: 0.85rem;
    padding: 0.1rem 0.6rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 0.75rem;
    padding: 1.1rem 0;
  }

  .filter-chip {
    padding: 0.6rem 1.3rem;
    font-size: 16px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 1.3rem 1.8rem;
  }

  .recent-header,
  .trending-header {
    font-size: 16px;
    margin-bottom: 0.85rem;
  }

  .recent-item {
    padding: 0.85rem 1.2rem;
    font-size: 17px;
  }

  .trending-tag {
    padding: 0.7rem 1.4rem;
    font-size: 16px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 0.65rem;
    font-size: 18px;
  }

  /* Empty State */
  .search-empty {
    padding: 5rem 3.5rem;
  }

  .empty-icon {
    font-size: 72px;
  }

  .empty-title {
    font-size: 26px;
  }

  .empty-text {
    font-size: 17px;
  }

  /* Header Actions */
  .header-actions {
    gap: 1.2rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 50px;
    height: 50px;
  }

  .notification-badge {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .profile-status {
    width: 16px;
    height: 16px;
  }

  /* Notification Panel */
  .notification-panel {
    width: 450px;
    right: -450px;
    max-height: 70vh;
    top: 90px;
  }

  .notification-panel.active {
    right: 4rem;
  }

  .notification-header {
    padding: 1.75rem;
  }

  .notification-header h3 {
    font-size: 22px;
  }

  .mark-all-read {
    font-size: 16px;
  }

  .notification-item {
    gap: 1.3rem;
    padding: 1.3rem 1.75rem;
  }

  .notification-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .notification-text {
    font-size: 17px;
  }

  .notification-time {
    font-size: 15px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 260px;
  }

  .intro-title {
    width: 420px;
  }

  .intro-tagline {
    font-size: 22px;
    margin-bottom: 3.25rem;
  }

  .intro-loader {
    width: 300px;
    height: 6px;
  }

  .skip-intro {
    bottom: 3.25rem;
    right: 3.25rem;
    padding: 1rem 2.1rem;
    font-size: 17px;
  }
}

/* ------------------------------------------
   Large desktops (min-width: 1400px)
   ------------------------------------------ */
@media (min-width: 1400px) {
  /* Header */
  .header-container {
    padding: 12px 50px;
    gap: 18px;
  }

  /* Logo */
  .logo-img {
    height: 56px;
  }

  /* Search */
  .search-module {
    max-width: 800px;
  }

  .search-toggle {
    width: 52px;
    height: 52px;
  }

  .search-icon-btn {
    font-size: 23px;
  }

  .search-input-wrapper {
    width: 52px;
    height: 52px;
    padding: 0 1.5rem;
  }

  .search-input-wrapper.expanded {
    width: 620px;
  }

  .search-prefix-icon {
    font-size: 23px;
  }

  .search-input {
    font-size: 19px;
  }

  .search-input::placeholder {
    font-size: 17px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 620px;
    max-height: 85vh;
  }

  .results-container {
    max-height: 65vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 1.5rem 2rem;
  }

  .stats-count {
    font-size: 18px;
  }

  .stats-time {
    font-size: 16px;
  }

  /* Result Items */
  .search-result-item {
    gap: 1.3rem;
    padding: 20px 18px;
    padding-top: 18px;
    padding-bottom: 11px;
  }

  .result-poster {
    width: 98px;
    height: 147px;
    border-radius: 13px;
  }

  .result-title {
    font-size: 19px;
  }

  .result-meta {
    font-size: 1rem;
    gap: 1.3rem;
  }

  .item-meta-ser i {
    font-size: 0.82rem;
  }

  .result-genres {
    gap: 0.6rem;
    margin-top: 0.7rem;
  }

  .genre-item {
    font-size: 0.88rem;
    padding: 0.12rem 0.65rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 0.8rem;
    padding: 1.2rem 0;
  }

  .filter-chip {
    padding: 0.65rem 1.4rem;
    font-size: 17px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 1.4rem 2rem;
  }

  .recent-header,
  .trending-header {
    font-size: 17px;
    margin-bottom: 0.9rem;
  }

  .recent-item {
    padding: 0.9rem 1.3rem;
    font-size: 18px;
  }

  .trending-tag {
    padding: 0.75rem 1.5rem;
    font-size: 17px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 0.7rem;
    font-size: 19px;
  }

  /* Empty State */
  .search-empty {
    padding: 5.5rem 4rem;
  }

  .empty-icon {
    font-size: 78px;
  }

  .empty-title {
    font-size: 28px;
  }

  .empty-text {
    font-size: 18px;
  }

  /* Header Actions */
  .header-actions {
    gap: 1.3rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 52px;
    height: 52px;
  }

  .notification-badge {
    width: 23px;
    height: 23px;
    font-size: 13px;
  }

  .profile-status {
    width: 17px;
    height: 17px;
  }

  /* Notification Panel */
  .notification-panel {
    width: 480px;
    right: -480px;
    max-height: 75vh;
    top: 95px;
  }

  .notification-panel.active {
    right: 4.5rem;
  }

  .notification-header {
    padding: 1.9rem;
  }

  .notification-header h3 {
    font-size: 23px;
  }

  .mark-all-read {
    font-size: 17px;
  }

  .notification-item {
    gap: 1.4rem;
    padding: 1.4rem 1.9rem;
  }

  .notification-icon {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }

  .notification-text {
    font-size: 18px;
  }

  .notification-time {
    font-size: 16px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 280px;
  }

  .intro-title {
    width: 460px;
  }

  .intro-tagline {
    font-size: 24px;
    margin-bottom: 3.5rem;
  }

  .intro-loader {
    width: 320px;
    height: 6px;
  }

  .skip-intro {
    bottom: 3.5rem;
    right: 3.5rem;
    padding: 1.05rem 2.2rem;
    font-size: 18px;
  }
}

/* ------------------------------------------
   Extra large desktops (min-width: 1600px)
   ------------------------------------------ */
@media (min-width: 1600px) {
  /* Header */
  .header-container {
    padding: 12px 60px;
    gap: 20px;
  }

  /* Logo */
  .logo-img {
    height: 60px;
  }

  /* Search */
  .search-module {
    max-width: 900px;
  }

  .search-toggle {
    width: 54px;
    height: 54px;
  }

  .search-icon-btn {
    font-size: 24px;
  }

  .search-input-wrapper {
    width: 54px;
    height: 54px;
    padding: 0 1.6rem;
  }

  .search-input-wrapper.expanded {
    width: 680px;
  }

  .search-prefix-icon {
    font-size: 24px;
  }

  .search-input {
    font-size: 20px;
  }

  .search-input::placeholder {
    font-size: 18px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 680px;
    max-height: 90vh;
  }

  .results-container {
    max-height: 70vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 1.6rem 2.2rem;
  }

  .stats-count {
    font-size: 19px;
  }

  .stats-time {
    font-size: 17px;
  }

  /* Result Items */
  .search-result-item {
    gap: 1.4rem;
    padding: 22px 20px;
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .result-poster {
    width: 106px;
    height: 159px;
    border-radius: 14px;
  }

  .result-title {
    font-size: 20px;
  }

  .result-meta {
    font-size: 1.05rem;
    gap: 1.4rem;
  }

  .item-meta-ser i {
    font-size: 0.85rem;
  }

  .result-genres {
    gap: 0.65rem;
    margin-top: 0.75rem;
  }

  .genre-item {
    font-size: 0.9rem;
    padding: 0.14rem 0.7rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 0.85rem;
    padding: 1.3rem 0;
  }

  .filter-chip {
    padding: 0.7rem 1.5rem;
    font-size: 18px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 1.5rem 2.2rem;
  }

  .recent-header,
  .trending-header {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .recent-item {
    padding: 0.95rem 1.4rem;
    font-size: 19px;
  }

  .trending-tag {
    padding: 0.8rem 1.6rem;
    font-size: 18px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 0.75rem;
    font-size: 20px;
  }

  /* Empty State */
  .search-empty {
    padding: 6rem 4.5rem;
  }

  .empty-icon {
    font-size: 84px;
  }

  .empty-title {
    font-size: 30px;
  }

  .empty-text {
    font-size: 19px;
  }

  /* Header Actions */
  .header-actions {
    gap: 1.4rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 54px;
    height: 54px;
  }

  .notification-badge {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .profile-status {
    width: 18px;
    height: 18px;
  }

  /* Notification Panel */
  .notification-panel {
    width: 520px;
    right: -520px;
    max-height: 80vh;
    top: 100px;
  }

  .notification-panel.active {
    right: 5rem;
  }

  .notification-header {
    padding: 2rem;
  }

  .notification-header h3 {
    font-size: 24px;
  }

  .mark-all-read {
    font-size: 18px;
  }

  .notification-item {
    gap: 1.5rem;
    padding: 1.5rem 2rem;
  }

  .notification-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .notification-text {
    font-size: 19px;
  }

  .notification-time {
    font-size: 17px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 300px;
  }

  .intro-title {
    width: 500px;
  }

  .intro-tagline {
    font-size: 26px;
    margin-bottom: 3.75rem;
  }

  .intro-loader {
    width: 340px;
    height: 6px;
  }

  .skip-intro {
    bottom: 3.75rem;
    right: 3.75rem;
    padding: 1.1rem 2.3rem;
    font-size: 19px;
  }
}

/* ------------------------------------------
   Full HD (min-width: 1900px)
   ------------------------------------------ */
@media (min-width: 1900px) {
  .header-container {
    padding: 14px 70px;
    gap: 22px;
  }

  .logo-img {
    height: 64px;
  }

  .search-module {
    max-width: 1000px;
  }

  .search-toggle {
    width: 56px;
    height: 56px;
  }

  .search-icon-btn {
    font-size: 25px;
  }

  .search-input-wrapper {
    width: 56px;
    height: 56px;
    padding: 0 1.7rem;
  }

  .search-input-wrapper.expanded {
    width: 750px;
  }

  .search-prefix-icon {
    font-size: 25px;
  }

  .search-input {
    font-size: 21px;
  }

  .search-input::placeholder {
    font-size: 19px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 750px;
    max-height: 85vh;
  }

  .results-container {
    max-height: 65vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 1.7rem 2.4rem;
  }

  .stats-count {
    font-size: 20px;
  }

  .stats-time {
    font-size: 18px;
  }

  /* Result Items */
  .search-result-item {
    gap: 1.5rem;
    padding: 24px 22px;
    padding-top: 22px;
    padding-bottom: 13px;
  }

  .result-poster {
    width: 114px;
    height: 171px;
    border-radius: 15px;
  }

  .result-title {
    font-size: 21px;
  }

  .result-meta {
    font-size: 1.1rem;
    gap: 1.5rem;
  }

  .item-meta-ser i {
    font-size: 0.88rem;
  }

  .result-genres {
    gap: 0.7rem;
    margin-top: 0.8rem;
  }

  .genre-item {
    font-size: 0.92rem;
    padding: 0.16rem 0.75rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 0.9rem;
    padding: 1.4rem 0;
  }

  .filter-chip {
    padding: 0.75rem 1.6rem;
    font-size: 19px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 1.6rem 2.4rem;
  }

  .recent-header,
  .trending-header {
    font-size: 19px;
    margin-bottom: 1.1rem;
  }

  .recent-item {
    padding: 1rem 1.5rem;
    font-size: 20px;
  }

  .trending-tag {
    padding: 0.85rem 1.7rem;
    font-size: 19px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 0.8rem;
    font-size: 21px;
  }

  /* Empty State */
  .search-empty {
    padding: 6.5rem 5rem;
  }

  .empty-icon {
    font-size: 90px;
  }

  .empty-title {
    font-size: 32px;
  }

  .empty-text {
    font-size: 20px;
  }

  /* Header Actions */
  .header-actions {
    gap: 1.5rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 56px;
    height: 56px;
  }

  .notification-badge {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }

  .profile-status {
    width: 19px;
    height: 19px;
  }

  /* Notification Panel */
  .notification-panel {
    width: 560px;
    right: -560px;
    max-height: 85vh;
    top: 105px;
  }

  .notification-panel.active {
    right: 5.5rem;
  }

  .notification-header {
    padding: 2.1rem;
  }

  .notification-header h3 {
    font-size: 25px;
  }

  .mark-all-read {
    font-size: 19px;
  }

  .notification-item {
    gap: 1.6rem;
    padding: 1.6rem 2.1rem;
  }

  .notification-icon {
    width: 52px;
    height: 52px;
    font-size: 23px;
  }

  .notification-text {
    font-size: 20px;
  }

  .notification-time {
    font-size: 18px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 320px;
  }

  .intro-title {
    width: 540px;
  }

  .intro-tagline {
    font-size: 28px;
    margin-bottom: 4rem;
  }

  .intro-loader {
    width: 360px;
    height: 6px;
  }

  .skip-intro {
    bottom: 4rem;
    right: 4rem;
    padding: 1.15rem 2.4rem;
    font-size: 20px;
  }
}

/* ------------------------------------------
   2K/QHD (min-width: 2500px)
   ------------------------------------------ */
@media (min-width: 2500px) {
  .header-container {
    padding: 16px 80px;
    gap: 25px;
  }

  .logo-img {
    height: 72px;
  }

  .search-module {
    max-width: 1200px;
  }

  .search-toggle {
    width: 60px;
    height: 60px;
  }

  .search-icon-btn {
    font-size: 27px;
  }

  .search-input-wrapper {
    width: 60px;
    height: 60px;
    padding: 0 1.8rem;
  }

  .search-input-wrapper.expanded {
    width: 900px;
  }

  .search-prefix-icon {
    font-size: 27px;
  }

  .search-input {
    font-size: 23px;
  }

  .search-input::placeholder {
    font-size: 21px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 900px;
    max-height: 90vh;
    border-radius: 20px;
  }

  .results-container {
    max-height: 70vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 1.9rem 2.8rem;
  }

  .stats-count {
    font-size: 22px;
  }

  .stats-time {
    font-size: 20px;
  }

  /* Result Items */
  .search-result-item {
    gap: 1.7rem;
    padding: 28px 26px;
    padding-top: 26px;
    padding-bottom: 15px;
  }

  .result-poster {
    width: 130px;
    height: 195px;
    border-radius: 17px;
  }

  .result-title {
    font-size: 24px;
  }

  .result-meta {
    font-size: 1.25rem;
    gap: 1.7rem;
  }

  .item-meta-ser i {
    font-size: 1rem;
  }

  .result-genres {
    gap: 0.8rem;
    margin-top: 0.9rem;
  }

  .genre-item {
    font-size: 1.05rem;
    padding: 0.2rem 0.9rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 1rem;
    padding: 1.6rem 0;
  }

  .filter-chip {
    padding: 0.85rem 1.8rem;
    font-size: 21px;
    border-radius: 25px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 1.8rem 2.8rem;
  }

  .recent-header,
  .trending-header {
    font-size: 21px;
    margin-bottom: 1.2rem;
  }

  .recent-item {
    padding: 1.1rem 1.7rem;
    font-size: 22px;
    border-radius: 10px;
  }

  .trending-tag {
    padding: 0.95rem 1.9rem;
    font-size: 21px;
    border-radius: 25px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 0.9rem;
    font-size: 23px;
  }

  /* Empty State */
  .search-empty {
    padding: 7.5rem 6rem;
  }

  .empty-icon {
    font-size: 102px;
  }

  .empty-title {
    font-size: 36px;
  }

  .empty-text {
    font-size: 23px;
  }

  /* Header Actions */
  .header-actions {
    gap: 1.7rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 60px;
    height: 60px;
  }

  .notification-badge {
    width: 27px;
    height: 27px;
    font-size: 15px;
  }

  .profile-status {
    width: 21px;
    height: 21px;
  }

  /* Notification Panel */
  .notification-panel {
    width: 640px;
    right: -640px;
    max-height: 90vh;
    top: 115px;
    border-radius: 20px;
  }

  .notification-panel.active {
    right: 6rem;
  }

  .notification-header {
    padding: 2.3rem;
  }

  .notification-header h3 {
    font-size: 27px;
  }

  .mark-all-read {
    font-size: 21px;
  }

  .notification-item {
    gap: 1.8rem;
    padding: 1.8rem 2.3rem;
  }

  .notification-icon {
    width: 56px;
    height: 56px;
    font-size: 25px;
  }

  .notification-text {
    font-size: 22px;
  }

  .notification-time {
    font-size: 20px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 360px;
  }

  .intro-title {
    width: 600px;
  }

  .intro-tagline {
    font-size: 32px;
    margin-bottom: 4.5rem;
  }

  .intro-loader {
    width: 400px;
    height: 7px;
  }

  .skip-intro {
    bottom: 4.5rem;
    right: 4.5rem;
    padding: 1.25rem 2.6rem;
    font-size: 22px;
  }
}

/* ------------------------------------------
   4K (min-width: 3800px)
   ------------------------------------------ */
@media (min-width: 3800px) {
  .header-container {
    padding: 18px 90px;
    gap: 26px;
  }

  .logo-img {
    height: 84px;
  }

  .search-module {
    max-width: 1500px;
  }

  .search-toggle {
    width: 68px;
    height: 68px;
  }

  .search-icon-btn {
    font-size: 31px;
  }

  .search-input-wrapper {
    width: 68px;
    height: 68px;
    padding: 0 2rem;
  }

  .search-input-wrapper.expanded {
    width: 1100px;
  }

  .search-prefix-icon {
    font-size: 31px;
  }

  .search-input {
    font-size: 27px;
  }

  .search-input::placeholder {
    font-size: 25px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 1100px;
    max-height: 90vh;
    border-radius: 24px;
  }

  .results-container {
    max-height: 75vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 2.2rem 3.2rem;
  }

  .stats-count {
    font-size: 26px;
  }

  .stats-time {
    font-size: 24px;
  }

  /* Result Items */
  .search-result-item {
    gap: 2rem;
    padding: 34px 30px;
    padding-top: 32px;
    padding-bottom: 18px;
  }

  .result-poster {
    width: 156px;
    height: 234px;
    border-radius: 20px;
  }

  .result-title {
    font-size: 29px;
  }

  .result-meta {
    font-size: 1.5rem;
    gap: 2rem;
  }

  .item-meta-ser i {
    font-size: 1.2rem;
  }

  .result-genres {
    gap: 0.95rem;
    margin-top: 1.1rem;
  }

  .genre-item {
    font-size: 1.25rem;
    padding: 0.25rem 1.1rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 1.2rem;
    padding: 2rem 0;
  }

  .filter-chip {
    padding: 1rem 2.2rem;
    font-size: 25px;
    border-radius: 30px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 2.2rem 3.2rem;
  }

  .recent-header,
  .trending-header {
    font-size: 25px;
    margin-bottom: 1.4rem;
  }

  .recent-item {
    padding: 1.3rem 2rem;
    font-size: 26px;
    border-radius: 12px;
  }

  .trending-tag {
    padding: 1.1rem 2.3rem;
    font-size: 25px;
    border-radius: 30px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 1.1rem;
    font-size: 27px;
  }

  /* Empty State */
  .search-empty {
    padding: 9rem 7.5rem;
  }

  .empty-icon {
    font-size: 120px;
  }

  .empty-title {
    font-size: 42px;
  }

  .empty-text {
    font-size: 27px;
  }

  /* Header Actions */
  .header-actions {
    gap: 2rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 68px;
    height: 68px;
  }

  .notification-badge {
    width: 31px;
    height: 31px;
    font-size: 17px;
  }

  .profile-status {
    width: 25px;
    height: 25px;
  }

  /* Notification Panel */
  .notification-panel {
    width: 780px;
    right: -780px;
    max-height: 90vh;
    top: 130px;
    border-radius: 24px;
  }

  .notification-panel.active {
    right: 7rem;
  }

  .notification-header {
    padding: 2.7rem;
  }

  .notification-header h3 {
    font-size: 31px;
  }

  .mark-all-read {
    font-size: 25px;
  }

  .notification-item {
    gap: 2.2rem;
    padding: 2.2rem 2.7rem;
  }

  .notification-icon {
    width: 64px;
    height: 64px;
    font-size: 29px;
  }

  .notification-text {
    font-size: 26px;
  }

  .notification-time {
    font-size: 24px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 420px;
  }

  .intro-title {
    width: 700px;
  }

  .intro-tagline {
    font-size: 38px;
    margin-bottom: 5rem;
  }

  .intro-loader {
    width: 460px;
    height: 8px;
  }

  .skip-intro {
    bottom: 5rem;
    right: 5rem;
    padding: 1.4rem 3rem;
    font-size: 26px;
  }
}

/* ------------------------------------------
   Ultra-wide/8K (min-width: 5100px)
   ------------------------------------------ */
@media (min-width: 5100px) {
  .header-container {
    padding: 30px 100px;
    gap: 30px;
  }

  .logo-img {
    height: 100px;
  }

  .search-module {
    max-width: 2000px;
  }

  .search-toggle {
    width: 80px;
    height: 80px;
  }

  .search-icon-btn {
    font-size: 37px;
  }

  .search-input-wrapper {
    width: 80px;
    height: 80px;
    padding: 0 2.4rem;
  }

  .search-input-wrapper.expanded {
    width: 1400px;
  }

  .search-prefix-icon {
    font-size: 37px;
  }

  .search-input {
    font-size: 32px;
  }

  .search-input::placeholder {
    font-size: 30px;
  }

  /* Search Results Panel */
  .search-results-panel {
    width: 1400px;
    max-height: 90vh;
    border-radius: 28px;
  }

  .results-container {
    max-height: 80vh;
  }

  /* Search Stats */
  .search-stats {
    padding: 2.6rem 4rem;
  }

  .stats-count {
    font-size: 31px;
  }

  .stats-time {
    font-size: 29px;
  }

  /* Result Items */
  .search-result-item {
    gap: 2.4rem;
    padding: 40px 36px;
    padding-top: 38px;
    padding-bottom: 22px;
  }

  .result-poster {
    width: 190px;
    height: 285px;
    border-radius: 24px;
  }

  .result-title {
    font-size: 35px;
  }

  .result-meta {
    font-size: 1.8rem;
    gap: 2.4rem;
  }

  .item-meta-ser i {
    font-size: 1.45rem;
  }

  .result-genres {
    gap: 1.15rem;
    margin-top: 1.4rem;
  }

  .genre-item {
    font-size: 1.5rem;
    padding: 0.3rem 1.4rem;
  }

  /* Filter Chips */
  .search-filters {
    gap: 1.5rem;
    padding: 2.4rem 0;
  }

  .filter-chip {
    padding: 1.2rem 2.6rem;
    font-size: 30px;
    border-radius: 35px;
  }

  /* Recent & Trending */
  .recent-searches,
  .trending-searches {
    padding: 2.6rem 4rem;
  }

  .recent-header,
  .trending-header {
    font-size: 30px;
    margin-bottom: 1.7rem;
  }

  .recent-item {
    padding: 1.5rem 2.4rem;
    font-size: 31px;
    border-radius: 14px;
  }

  .trending-tag {
    padding: 1.3rem 2.8rem;
    font-size: 30px;
    border-radius: 35px;
  }

  /* Show All Button */
  .show-all-btn {
    padding: 1.3rem;
    font-size: 32px;
  }

  /* Empty State */
  .search-empty {
    padding: 11rem 10rem;
  }

  .empty-icon {
    font-size: 144px;
  }

  .empty-title {
    font-size: 50px;
  }

  .empty-text {
    font-size: 32px;
  }

  /* Header Actions */
  .header-actions {
    gap: 2.4rem;
  }

  .action-btn,
  .user-profile-btn {
    width: 80px;
    height: 80px;
  }

  .notification-badge {
    width: 37px;
    height: 37px;
    font-size: 20px;
  }

  .profile-status {
    width: 30px;
    height: 30px;
  }

  /* Notification Panel */
  .notification-panel {
    width: 960px;
    right: -960px;
    max-height: 90vh;
    top: 150px;
    border-radius: 28px;
  }

  .notification-panel.active {
    right: 9rem;
  }

  .notification-header {
    padding: 3.2rem;
  }

  .notification-header h3 {
    font-size: 37px;
  }

  .mark-all-read {
    font-size: 30px;
  }

  .notification-item {
    gap: 2.6rem;
    padding: 2.6rem 3.2rem;
  }

  .notification-icon {
    width: 76px;
    height: 76px;
    font-size: 35px;
  }

  .notification-text {
    font-size: 31px;
  }

  .notification-time {
    font-size: 29px;
  }

  /* Intro Screen */
  .intro-logo {
    width: 500px;
  }

  .intro-title {
    width: 840px;
  }

  .intro-tagline {
    font-size: 46px;
    margin-bottom: 6rem;
  }

  .intro-loader {
    width: 540px;
    height: 9px;
  }

  .skip-intro {
    bottom: 6rem;
    right: 6rem;
    padding: 1.6rem 3.6rem;
    font-size: 31px;
  }
}