/* ============================================
   CINEMA PORTAL - MODERN DESIGN
   ============================================ */

:root {
  /* Color Palette */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --card-gradient: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);

  --bg-dark: #0f0f1e;
  --bg-darker: #0a0a14;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.08);

  --text-primary: #ffffff;
  --text-secondary: #b8b8d1;
  --text-muted: #7c7c9a;

  --accent-purple: #667eea;
  --accent-pink: #f5576c;
  --accent-blue: #4facfe;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.3);

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* LIGHT THEME */
html.light-theme {
  --bg-dark: #f5f7fa;
  --bg-darker: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.9);
  --card-hover: rgba(255, 255, 255, 1);

  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted: #718096;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.2);
}

html.light-theme body::before {
  background:
    radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(79, 172, 254, 0.06) 0%, transparent 50%);
}

/* Light theme specific overrides */
html.light-theme .navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

html.light-theme .navbar-brand {
  filter: none;
}

html.light-theme .nav-link {
  color: var(--text-secondary) !important;
}

html.light-theme .nav-link:hover {
  color: var(--text-primary) !important;
  background: rgba(102, 126, 234, 0.1);
}

html.light-theme .footer {
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

html.light-theme .footer h6 {
  color: var(--text-primary) !important;
}

html.light-theme .footer a {
  color: var(--text-secondary) !important;
}

html.light-theme .footer a:hover {
  color: var(--accent-purple) !important;
}

html.light-theme .social-icon {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  color: var(--text-primary);
}

html.light-theme .social-icon:hover {
  background: var(--primary-gradient);
  color: white;
}

html.light-theme .movie-rating {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

html.light-theme .movie-card {
  background: var(--bg-darker);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html.light-theme .movie-card:hover {
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 20px rgba(102, 126, 234, 0.2);
}

html.light-theme #filters-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

html.light-theme .glass-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

html.light-theme .movie-info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

html.light-theme .form-select {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text-primary);
}

html.light-theme .form-select:focus {
  background: rgba(255, 255, 255, 1);
  border-color: var(--accent-purple);
  color: var(--text-primary);
}

html.light-theme .page-link {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text-primary);
}

html.light-theme .page-link:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: var(--accent-purple);
  color: var(--text-primary);
}

html.light-theme .badge.bg-info {
  background: rgba(79, 172, 254, 0.15) !important;
  color: #2563eb !important;
  border: 1px solid rgba(79, 172, 254, 0.3);
}

html.light-theme .genre-badge {
  background: rgba(102, 126, 234, 0.1);
  color: #5b21b6;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

html.light-theme .genre-badge:hover {
  background: rgba(102, 126, 234, 0.2);
}

html.light-theme .btn-outline-secondary {
  color: var(--text-secondary);
  border-color: rgba(0, 0, 0, 0.2);
}

html.light-theme .btn-outline-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
}

html.light-theme #toggle-filters {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
}

html.light-theme #toggle-filters:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: var(--accent-purple);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(79, 172, 254, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

a {
  color: var(--accent-purple);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-blue);
}

/* ============================================
   NAVBAR STYLES
   ============================================ */

.navbar {
  background: rgba(15, 15, 30, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary) !important;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: var(--text-primary) !important;
  background: var(--card-bg);
}

/* ============================================
   MOVIE CARDS
   ============================================ */

.movie-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-sm);
}

.movie-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
  pointer-events: none;
}

.movie-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(102, 126, 234, 0.3);
}

.movie-card:hover::before {
  opacity: 0.1;
}

.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  display: block;
}

.movie-card:hover .movie-poster {
  transform: scale(1.05);
}

.movie-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 2;
}

.movie-card:hover .movie-overlay {
  transform: translateY(0);
}

.movie-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.movie-rating .star {
  color: #ffc107;
}

.movie-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.5rem 0 0.25rem;
  line-height: 1.3;
}

.movie-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--accent-purple);
  border: 2px solid var(--accent-purple);
}

.btn-outline-primary:hover {
  background: var(--accent-purple);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
}

/* ============================================
   FORMS & INPUTS
   ============================================ */

.form-control, .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  color: var(--text-primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-select option {
  background: var(--bg-darker);
  color: var(--text-primary);
}

/* Tom Select Customization */
.ts-wrapper .ts-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 0.5rem !important;
  color: var(--text-primary) !important;
}

.ts-dropdown {
  background: var(--bg-darker) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  box-shadow: var(--shadow-lg) !important;
}

.ts-dropdown .option {
  color: var(--text-primary) !important;
  padding: 0.75rem 1rem !important;
}

.ts-dropdown .option:hover {
  background: rgba(102, 126, 234, 0.2) !important;
}

/* ============================================
   BADGES & TAGS
   ============================================ */

.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}

.badge.bg-info {
  background: rgba(79, 172, 254, 0.2) !important;
  color: var(--accent-blue) !important;
  border: 1px solid rgba(79, 172, 254, 0.3);
}

.genre-badge {
  background: rgba(102, 126, 234, 0.15);
  color: var(--accent-purple);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(102, 126, 234, 0.3);
  transition: var(--transition-smooth);
  display: inline-block;
  margin: 0.25rem;
}

.genre-badge:hover {
  background: rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
  gap: 0.5rem;
}

.page-link {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: var(--transition-smooth);
}

.page-link:hover {
  background: var(--card-hover);
  color: var(--text-primary);
  border-color: var(--accent-purple);
  transform: translateY(-2px);
}

.page-item.active .page-link {
  background: var(--primary-gradient);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.page-item.disabled .page-link {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.05);
}

/* ============================================
   FILTER PANEL
   ============================================ */

#filters-panel {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

#toggle-filters {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

#toggle-filters:hover {
  background: var(--card-hover);
  border-color: var(--accent-purple);
  transform: translateY(-2px);
}

/* ============================================
   SEARCH BAR
   ============================================ */

.search-input .form-control {
  border-radius: 12px 0 0 12px;
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-right: none;
}

.search-input .btn {
  border-radius: 0 12px 12px 0;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

/* ============================================
   MOVIE DETAIL PAGE
   ============================================ */

#player-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#player-container .playerjs {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border-radius: 20px;
  overflow: hidden;
}

.movie-info-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.movie-poster-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  background: var(--card-bg);
}

.movie-poster-detail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.movie-poster-container:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.movie-poster-container:hover .movie-poster-detail {
  transform: scale(1.05);
}

.voice-selector {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.voice-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.voice-btn:hover, .voice-btn.active {
  background: var(--primary-gradient);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0 1.5rem;
  margin-top: 5rem;
  transition: var(--transition-smooth);
}

.footer-links a {
  color: var(--text-secondary);
  margin: 0 1rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-purple);
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   UTILITIES
   ============================================ */

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 2rem 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  .movie-card {
    margin-bottom: 1rem;
  }

  .navbar-collapse {
    background: rgba(15, 15, 30, 0.98);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Mobile */
@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  .movie-card {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  /* Search bar mobile fixes */
  .search-input {
    max-width: 100% !important;
    padding: 0 15px;
  }

  .search-input .form-control {
    border-radius: 16px 0 0 16px !important;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    border-right: none !important;
  }

  .search-input .btn {
    width: auto;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0;
    border-radius: 0 16px 16px 0 !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
  }

  /* Button icon styling */
  .search-input .btn-primary i {
    font-size: 1.2rem;
  }

  /* Filters button */
  #toggle-filters {
    border-radius: 16px !important;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
  }

  #filters-panel {
    padding: 1rem;
  }

  .movie-info-card {
    padding: 1.5rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-links {
    flex-direction: column;
    text-align: center;
  }

  .footer-links a {
    margin: 0.5rem 0;
    display: block;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .movie-title {
    font-size: 0.9rem;
  }

  .movie-subtitle {
    font-size: 0.75rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-in {
  animation: slideIn 0.6s ease-out;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: rgba(102, 126, 234, 0.3);
  color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #7c8ff5 0%, #8659b3 100%);
}
