:root {
  /* Moderne Farbpalette */
  --bg-primary: #0a0b0f;
  --bg-secondary: #121418;
  --bg-tertiary: #1a1d24;
  --bg-surface: #212530;
  --bg-elevated: #282c38;
  --text-primary: #ffffff;
  --text-secondary: #a1a8b6;
  --text-muted: #6b7280;
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-success: #10b981;
  --accent-warning: #f59e0b;
  --accent-error: #ef4444;
  --accent-cyan: #06b6d4;
  --accent-pink: #ec4899;
  --accent-emerald: #059669;
  --accent-orange: #ea580c;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.12);
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.5);
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 16px;
  --radius-xl: 24px;
  
  /* Kompatibilität mit alten Variablen */
  --bg-darkest: var(--bg-primary);
  --bg-darker: var(--bg-secondary);
  --bg-dark: var(--bg-tertiary);
  --bg-medium: var(--bg-surface);
  --bg-light: var(--bg-elevated);
  --text-color: var(--text-primary);
  --card-bg: var(--bg-elevated);
  --accent-color: var(--accent-primary);
  --active-nav: var(--accent-primary);
  --section-watch: var(--bg-primary);
  --section-search: var(--bg-tertiary);
  --section-popular: var(--bg-secondary);
  --section-ki: var(--bg-surface);
  --section-releases: #1a1d23;
  --section-statistics: #1e2328;
  --section-set: var(--bg-elevated);
  --stats-purple: #8b5cf6;
  --stats-blue: #3b82f6;
  --stats-green: #10b981;
  --stats-orange: #f59e0b;
  --stats-red: #ef4444;
  --stats-pink: #ec4899;
}

html.light-mode {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f1f3f4;
  --bg-surface: #ffffff;
  --bg-elevated: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.1);
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* Light mode Kompatibilität */
  --bg-darkest: #ffffff;
  --bg-darker: #f8f9fa;
  --bg-dark: #f1f3f4;
  --bg-medium: #ffffff;
  --bg-light: #ffffff;
  --text-color: #1f2937;
  --card-bg: #ffffff;
  --accent-color: var(--accent-primary);
  --active-nav: var(--accent-primary);
  --section-statistics: #f0f2f7;
  --stats-purple: #7c3aed;
  --stats-blue: #2563eb;
  --stats-green: #059669;
  --stats-orange: #d97706;
  --stats-red: #dc2626;
  --stats-pink: #db2777;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%) !important;
  color: var(--text-color);
  display: flex;
  min-height: 100vh;
  box-sizing: border-box;
  flex-direction: column;
  scroll-behavior: smooth;
  overflow-x: hidden;
  line-height: 1.6;
  font-feature-settings: "liga" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Content breiter und nutzt mehr Platz */
.content {
  flex-grow: 1;
  padding: 24px 32px 88px 32px;
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 88px);
}

/* ============ VIDEO BACKGROUND ============ */
.dynamic-video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
  transform: translateZ(0);
}

#video-background-container {
  width: 100%;
  height: 100%;
  position: relative;
}

#video-background-container iframe {
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
  pointer-events: none;
  opacity: 0.25;
  filter: blur(1px) grayscale(20%);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

html.light-mode #video-background-container iframe {
  opacity: 0.15;
  filter: blur(1px) grayscale(50%);
}

.video-info-overlay {
  position: fixed;
  bottom: 88px;
  right: 20px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 16px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
  font-size: 0.85em;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  pointer-events: auto;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow-large);
}

.video-info-overlay:hover,
.video-info-overlay.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-info-overlay span {
  color: white;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.video-controls {
  display: flex;
  gap: 6px;
}

.video-controls button {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1em;
  padding: 6px 8px;
  border-radius: var(--radius-small);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  box-shadow: var(--shadow-small);
}

.video-controls button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Navigation modernisiert */
nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  width: 100vw;
  background: rgba(18, 20, 24, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--border-medium);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: var(--shadow-large);
}

nav .menu-item {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5em;
  color: var(--text-muted);
  background: none;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  padding: 0;
  font-weight: 500;
  position: relative;
}

nav .menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 var(--radius-small) var(--radius-small);
}

nav .menu-item.active {
  color: var(--active-nav);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(168, 85, 247, 0.08));
}

nav .menu-item.active::before {
  width: 60%;
}

nav .menu-item:hover {
  color: var(--accent-color);
  background: rgba(99, 102, 241, 0.08);
  transform: translateY(-2px);
}

nav .menu-item span {
  font-size: 0.65em;
  margin-top: 4px;
  font-weight: 500;
  display: block;
  letter-spacing: 0.5px;
}



/* Floating Action Button mit smoothem Gradient */
.fab {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 25%, #a855f7 50%, #d946ef 75%, #ec4899 100%);
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 1.4em;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 25%, #c084fc 50%, #e879f9 75%, #f472b6 100%);
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-medium);
  border-left: 4px solid;
  border-left-color: #10b981;
  padding: 16px 20px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(20px) saturate(180%);
  transform: translateX(400px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  min-width: 250px;
}

.toast.show {
  transform: translateX(0);
}

.toast.error {
  border-left-color: #ef4444;
}

.toast.warning {
  border-left-color: #f59e0b;
}

/* Sections deutlich breiter mit Glassmorphism */
.section {
  width: 100%;
  max-width: 1400px;
  min-height: 400px;
  padding: 32px;
  border-radius: var(--radius-large);
  margin: 16px auto 24px auto;
  display: block;
  scroll-margin-top: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    var(--shadow-medium),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
  text-align: center;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4f46e5 20%, #7c3aed 50%, #a855f7 80%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section.active::before {
  opacity: 1;
}

.section.active {
  box-shadow: 
    0 0 40px rgba(99, 102, 241, 0.2), 
    var(--shadow-large),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-4px);
}

/* Section backgrounds */
#watchlist.section { background: rgba(10, 11, 15, 0.85); }
#search.section { background: rgba(26, 29, 36, 0.85); }
#popular.section { background: rgba(18, 20, 24, 0.85); }
#recommendations.section { background: rgba(33, 37, 48, 0.85); }
#releases.section { background: rgba(26, 29, 35, 0.85); }
#statistics.section { background: rgba(30, 35, 40, 0.85); }
#settings.section { background: rgba(40, 44, 56, 0.85); }

html.light-mode #watchlist.section { background: rgba(255, 255, 255, 0.9); }
html.light-mode #search.section { background: rgba(241, 243, 244, 0.9); }
html.light-mode #popular.section { background: rgba(248, 249, 250, 0.9); }
html.light-mode #recommendations.section { background: rgba(255, 255, 255, 0.9); }
html.light-mode #releases.section { background: rgba(240, 242, 245, 0.9); }
html.light-mode #statistics.section { background: rgba(240, 242, 247, 0.9); }
html.light-mode #settings.section { background: rgba(255, 255, 255, 0.9); }

h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--text-color), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  text-align: center;
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  border-radius: 1px;
}

/* Filter breiter */
.filters {
  margin: 16px auto 24px auto;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px) saturate(180%);
  border-radius: var(--radius-medium);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-small);
  width: 100%;
}

.filters label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.filters select {
  background: var(--card-bg);
  color: var(--text-color);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-small);
  padding: 8px 12px;
  margin-left: 8px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.filters select:hover {
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.filters select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Such-Eingabefeld breiter */
#search-input {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 500px;
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-small);
  border: 1px solid var(--border-medium);
  background: var(--card-bg);
  color: var(--text-color);
  font-size: 1rem;
  transition: all 0.2s ease;
  position: relative;
}

#search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}

/* Content Container ohne Begrenzung */
#watchlist-wrapper,
#search-results,
#popular-results,
#recommendation-results,
#releases-results {
  width: 100%;
  margin: 0 auto;
}



/* ============ STATISTICS STYLES ============ */
.stats-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0 auto 40px auto;
  justify-items: center;
  width: 100%;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px) saturate(180%);
  padding: 24px;
  border-radius: var(--radius-medium);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-small);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 2.2em;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2em;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8em;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

.charts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin: 0 auto 32px auto;
  align-items: start;
  justify-items: center;
  width: 100%;
}

.chart-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px) saturate(180%);
  padding: 20px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
  height: 350px;
  max-height: 350px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  width: 100%;
}

.chart-wrapper:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.chart-wrapper h3 {
  margin: 0 0 16px 0;
  font-size: 1.1em;
  color: var(--accent-color);
  font-weight: 600;
  text-align: center;
}

.chart-wrapper canvas {
  max-width: 100% !important;
  max-height: 280px !important;
  height: 280px !important;
  width: auto !important;
}

#genreChart, #typeChart {
  max-height: 280px !important;
  max-width: 100% !important;
}

.yearly-review {
  background: rgba(139, 92, 246, 0.05);
  backdrop-filter: blur(15px) saturate(180%);
  padding: 24px;
  border-radius: var(--radius-large);
  margin: 0 auto 32px auto;
  border: 2px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
  width: 100%;
}

.yearly-review h2 {
  color: var(--stats-purple);
  margin: 0 0 20px 0;
  text-align: center;
  font-weight: 700;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: transform 0.3s ease;
  text-align: left;
}

.review-card:hover {
  transform: translateY(-2px);
}

.review-card h4 {
  color: var(--stats-purple);
  margin: 0 0 16px 0;
  font-weight: 600;
}

#yearly-summary p {
  margin: 8px 0;
  font-size: 1.1em;
}

#yearly-summary strong {
  color: var(--stats-purple);
  font-size: 1.3em;
  font-weight: 700;
}

.detailed-stats {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px) saturate(180%);
  padding: 24px;
  border-radius: var(--radius-large);
  margin: 0 auto 20px auto;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-small);
  width: 100%;
}

.stats-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
  padding-bottom: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 2px solid #444;
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.tab-btn.active {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  border-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.tab-btn:hover:not(.active) {
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.tab-content {
  display: none;
  text-align: left;
}

.tab-content.active {
  display: block;
}

.genre-stat-item, .year-stat-item, .favorite-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  transition: background 0.2s ease;
}

.genre-stat-item:hover, .year-stat-item:hover, .favorite-item:hover {
  background: rgba(99, 102, 241, 0.05);
}

.genre-stat-item:last-child, .year-stat-item:last-child, .favorite-item:last-child {
  border-bottom: none;
}

.stat-bar {
  width: 100px;
  height: 8px;
  background: #333;
  border-radius: var(--radius-small);
  overflow: hidden;
  margin: 0 12px;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  transition: width 0.5s ease;
}

/* Grid List deutlich breiter mit Loading Animation */
.grid-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  width: 100%;
  margin: 0 auto 16px auto;
  justify-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px) saturate(180%);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  width: 140px;
  border: 1px solid var(--border-subtle);
  position: relative;
  font-size: 0.9em;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  perspective: 1000px;
}

/* Shimmer Loading Animation */
.card.loading {
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.05) 25%, 
    rgba(99, 102, 241, 0.1) 50%, 
    rgba(255, 255, 255, 0.05) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(168, 85, 247, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: rotateY(5deg) rotateX(2deg) translateY(-8px);
  transform-style: preserve-3d;
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.05);
}

.card img {
  width: 80px;
  height: 120px;
  border-radius: var(--radius-small);
  margin-bottom: 10px;
  background: var(--bg-tertiary);
  box-shadow: var(--shadow-small);
  object-fit: cover;
  transition: all 0.3s ease;
}

.card .info {
  flex: 1;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}

/* Quick Actions Menu */
.quick-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: var(--radius-small);
  padding: 4px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
  display: flex;
  gap: 2px;
}

.card:hover .quick-actions {
  opacity: 1;
  transform: scale(1);
}

.quick-action-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-size: 0.7em;
  transition: all 0.2s ease;
}

.quick-action-btn:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  transform: scale(1.1);
}

.card h3 {
  margin: 6px 0 4px 0;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
}

/* Rating Stars */
.rating-stars {
  display: inline-flex;
  gap: 2px;
  margin: 4px 0;
}

.star {
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  transform-origin: center;
  font-size: 0.8em;
}

.star:hover,
.star.filled {
  color: #ffd700;
  transform: scale(1.2);
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
}

.star:hover ~ .star {
  transform: scale(0.8);
}

/* Genre Tags */
.genre-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 6px;
  justify-content: center;
}

.genre-tag {
  background: linear-gradient(45deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  color: white;
  padding: 2px 6px;
  border-radius: var(--radius-xl);
  font-size: 0.6em;
  font-weight: 500;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.genre-tag:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Progress Bar für Serien */
.series-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.stars {
  color: #f5c518;
  letter-spacing: 1px;
  filter: drop-shadow(0 1px 2px rgba(245, 197, 24, 0.3));
}

.small {
  font-size: 0.8em;
  color: var(--text-secondary);
}

/* Releases breiter */
.releases-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px auto 0 auto;
  width: 100%;
}

.release-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px) saturate(180%);
  border-radius: var(--radius-medium);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: var(--shadow-small);
}

.release-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
}

.release-item img {
  width: 60px;
  height: 90px;
  border-radius: var(--radius-small);
  object-fit: cover;
  box-shadow: var(--shadow-small);
}

.release-info {
  flex: 1;
  text-align: left;
}

.release-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.1em;
  color: var(--accent-color);
  font-weight: 600;
}

.release-details {
  font-size: 0.9em;
  line-height: 1.4;
  color: var(--text-color);
}

.release-countdown {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.85em;
  font-weight: bold;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.release-countdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.release-countdown:hover::before {
  left: 100%;
}

.release-countdown.today {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  animation: pulse 2s infinite;
}

.release-countdown.tomorrow {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5); }
  100% { transform: scale(1); box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3); }
}

/* Buttons mit smoothen Gradients - das war's was du wolltest! */
button, .card button {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 25%, #7c3aed 50%, #8b5cf6 75%, #a855f7 100%);
  color: white;
  border: none;
  border-radius: var(--radius-small);
  padding: 8px 12px;
  margin: 3px;
  font-size: 0.85em;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-small);
}

/* Shimmer Effekt bei Buttons */
button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

button:hover::before {
  left: 100%;
}

button:disabled {
  opacity: 0.6;
  background: var(--text-muted);
  cursor: not-allowed;
}

button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, #6366f1 0%, #7c3aed 25%, #8b5cf6 50%, #a855f7 75%, #c084fc 100%);
}

/* Spezielle Button-Styles mit verschiedenen Gradients */
.btn-success {
  background: linear-gradient(135deg, #059669 0%, #10b981 25%, #34d399 50%, #6ee7b7 75%, #a7f3d0 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
  background: linear-gradient(135deg, #10b981 0%, #34d399 25%, #6ee7b7 50%, #a7f3d0 75%, #d1fae5 100%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-warning {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 25%, #fbbf24 50%, #fcd34d 75%, #fde68a 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 25%, #fcd34d 50%, #fde68a 75%, #fef3c7 100%);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-error {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 25%, #ef4444 50%, #f87171 75%, #fca5a5 100%);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-error:hover {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 25%, #f87171 50%, #fca5a5 75%, #fecaca 100%);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.favorite {
  cursor: pointer;
  font-size: 1.1em;
  color: gold;
  margin-right: 4px;
  filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.3));
  transition: transform 0.2s ease;
}

.favorite:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
}

.seenlabel {
  font-size: 0.8em;
  margin-left: 3px;
  color: var(--text-secondary);
}

input[type="checkbox"].seencb {
  accent-color: var(--accent-color);
  transform: scale(1.1);
}

.external-links {
  margin-top: 6px;
  font-size: 0.8em;
}

.external-links a {
  margin-right: 8px;
  transition: color 0.2s ease;
}

/* Auth Section bleibt wie es war - perfekt zentriert */
#auth-section {
  max-width: 420px;
  margin: 40px auto;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px) saturate(180%);
  border-radius: var(--radius-large);
  position: relative;
  box-sizing: border-box;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-large);
}

#auth-section input,
#auth-section button {
  font-size: 1em;
  padding: 12px 16px;
  margin: 8px 0;
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--radius-small);
  border: 1px solid var(--border-medium);
  background: var(--bg-surface);
  color: var(--text-color);
  transition: all 0.2s ease;
}

#auth-section input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

#auth-section button {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 25%, #7c3aed 50%, #8b5cf6 75%, #a855f7 100%);
  font-weight: 600;
  cursor: pointer;
  border: none;
}

#register-btn {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 25%, #22d3ee 50%, #67e8f9 75%, #a5f3fc 100%);
  color: white;
  border: none;
  font-weight: 600;
  padding: 8px 12px;
  font-size: 0.9em;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  border-radius: var(--radius-small);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

#register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 25%, #67e8f9 50%, #a5f3fc 75%, #cffafe 100%);
}

#auth-message {
  min-height: 1.2em;
  color: var(--accent-error);
  margin-top: 8px;
  font-weight: 500;
}

nav, main.content {
  display: none;
}

/* Settings Groups breiter */
.settings-group {
  margin: 0 auto 24px auto;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px) saturate(180%);
  border-radius: var(--radius-medium);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-small);
  transition: transform 0.2s ease;
  width: 100%;
  text-align: left;
}

.settings-group:hover {
  transform: translateY(-2px);
}

.settings-group h3 {
  margin: 0 0 12px 0;
  color: var(--accent-color);
  font-size: 1.1em;
  font-weight: 600;
}

/* External Links mit Hover Effects */
a[href*="s.to"],
a[href*="aniworld.to"],
a[href*="bs.to"],
a[href*="filmpalast.to"] {
  color: #09ff00;
  font-weight: bold;
  transition: all 0.2s ease;
  position: relative;
}

a[href*="werstreamt.es"],
a[href*="justwatch.com"],
a[href*="themoviedb.org"] {
  color: #28a745;
  font-weight: bold;
  transition: all 0.2s ease;
  position: relative;
}

a[href*="s.to"]:hover,
a[href*="aniworld.to"]:hover,
a[href*="bs.to"]:hover,
a[href*="filmpalast.to"]:hover,
a[href*="werstreamt.es"]:hover,
a[href*="justwatch.com"]:hover,
a[href*="themoviedb.org"]:hover {
  text-decoration: underline;
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Overlays modernisiert */
#info-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.85);
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2000;
  backdrop-filter: blur(25px);
}

#info-overlay > div {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px) saturate(180%);
  color: var(--text-color);
  border-radius: var(--radius-large);
  max-width: 90vw;
  max-height: 80vh;
  padding: 24px;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
  position: relative;
  font-size: 1em;
  border: 1px solid var(--border-medium);
}

#info-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1.5em;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#info-close-btn:hover {
  transform: scale(1.1);
}

#info-overlay h2 {
  font-size: 1.3em;
  font-weight: 600;
}

#info-trailer-link {
  margin-top: 12px;
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: underline;
  display: none;
  transition: color 0.2s ease;
}

#episodes-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  color: #fff;
  z-index: 3000;
  overflow-y: auto;
  padding: 20px;
  backdrop-filter: blur(25px);
}

#episodes-overlay > div {
  max-width: 600px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px) saturate(180%);
  border-radius: var(--radius-large);
  padding: 24px;
  position: relative;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-large);
}

#episodes-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1.5em;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#episodes-close-btn:hover {
  transform: scale(1.1);
}

/* Account Actions zentriert */
.account-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.account-actions button {
  padding: 12px 20px;
  border-radius: var(--radius-small);
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-small);
}

#logout-btn {
  background: linear-gradient(135deg, #374151 0%, #4b5563 25%, #6b7280 50%, #9ca3af 75%, #d1d5db 100%);
  box-shadow: 0 4px 12px rgba(75, 85, 99, 0.3);
}

#logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 85, 99, 0.4);
  background: linear-gradient(135deg, #4b5563 0%, #6b7280 25%, #9ca3af 50%, #d1d5db 75%, #f3f4f6 100%);
}

#delete-account-btn {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 25%, #ef4444 50%, #f87171 75%, #fca5a5 100%);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

#delete-account-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 25%, #f87171 50%, #fca5a5 75%, #fecaca 100%);
}

/* AniList Badge modernisiert */
.anilist-badge {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 25%, #22d3ee 50%, #67e8f9 75%, #a5f3fc 100%);
  color: white;
  font-size: 0.7em;
  padding: 3px 8px;
  border-radius: var(--radius-xl);
  margin: 2px 0;
  display: inline-block;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
  transition: transform 0.2s ease;
}

.anilist-badge:hover {
  transform: scale(1.05);
}

/* Snackbar modernisiert */
.snackbar {
  position: fixed;
  left: 50%;
  bottom: 88px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #059669 0%, #10b981 25%, #34d399 50%, #6ee7b7 75%, #a7f3d0 100%);
  color: white;
  z-index: 9999;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-large);
  transform: translate(-50%, 0);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.snackbar.show {
  opacity: 1;
  pointer-events: auto;
  animation: snackbarSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snackbar.snackbar-warning {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 25%, #fbbf24 50%, #fcd34d 75%, #fde68a 100%);
}

.snackbar.snackbar-error {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 25%, #ef4444 50%, #f87171 75%, #fca5a5 100%);
}

@keyframes snackbarSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile und Tablets bis 1023px */
@media (max-width: 1023px) {
  .content {
    margin: 0 auto !important;
    max-width: 480px !important;      /* Maximaler Wert verhindert "zu breit" */
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    /* Klingt nach Login! */
  }
  .section {
    max-width: 100% !important;
    width: 100% !important;
    margin: 16px 0 !important;
    padding: 20px 0 !important;
  }
}


  nav {
    position: fixed ;
    bottom: 0 ;
    left: 0 ;
    right: 0 ;
    width: 100vw ;
    flex-direction: row ;
    height: 72px ;
  }


/* Desktop erst ab 1024px */
@media (min-width: 1024px) {
  .content {
    margin-left: 80px;
    margin-right: 0;
    padding: 32px 48px;
    width: calc(100% - 80px);
    max-width: 1600px;
  }

   
    nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: unset;
    height: 100vh;
    width: 80px;
    flex-direction: column;
    /* weitere Styles siehe oben */
  }
}

  
  .filters {
    margin: 16px 0 24px 0;
    padding: 16px;
  }
  
  .fab {
    bottom: 90px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.2em;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  .grid-list {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }
  
  .card {
    width: auto;
    min-height: 200px;
    padding: 12px;
  }
  
  .card img {
    width: 70px;
    height: 105px;
  }
  
  .stats-dashboard {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .charts-container {
    grid-template-columns: 1fr;
  }
  
  .chart-wrapper {
    height: 300px;
    max-height: 300px;
  }
  
  .chart-wrapper canvas {
    max-height: 220px !important;
    height: 220px !important;
  }
  
  .review-cards {
    grid-template-columns: 1fr;
  }
  
  .stats-tabs {
    flex-wrap: wrap;
  }
  
  nav .menu-item {
    font-size: 1.3em;
  }
  
  nav .menu-item span {
    font-size: 0.55em;
  }
  
  .video-info-overlay {
    bottom: 78px;
    right: 10px;
    left: 10px;
    justify-content: center;
  }
  
  .video-info-overlay span {
    max-width: 150px;
  }
  
  .dynamic-video-background {
    display: none;
  }
  
  .toast {
    left: 10px;
    right: 10px;
    transform: translateY(-100px);
  }
  
  .toast.show {
    transform: translateY(0);
  }


@media (max-width: 420px) {
  .card img {
    width: 60px;
    height: 90px;
  }
  
  .release-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .release-item img {
    width: 60px;
    height: 90px;
  }
}

/* Desktop Sidebar - optimiert für breite Sections */
@media (min-width: 700px) {
  nav {
    flex-direction: column;
    top: 0;
    left: 0;
    bottom: unset;
    height: 100vh;
    width: 80px;
    border-top: none;
    border-right: 1px solid var(--border-medium);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  nav .menu-item {
    font-size: 1.4em;
    width: 100%;
    height: 80px;
  }
  
  nav .menu-item span {
    display: none;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  
  nav:hover {
    width: 200px;
  }
  
  nav:hover .menu-item span {
    display: block;
    opacity: 1;
  }
  
  .content {
    margin-left: 80px;
    margin-right: 0;
    padding: 32px 48px;
    width: calc(100% - 80px);
  }
  
  .video-info-overlay {
    bottom: 20px;
  }
  
  /* Sections nutzen die volle verfügbare Breite auf Desktop */
  .section {
    max-width: none;
    width: 100%;
  }
  
  .grid-list {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  
  .stats-dashboard {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .charts-container {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
  
  .toast {
    right: 20px;
    left: auto;
    transform: translateX(400px);
  }
  
  .toast.show {
    transform: translateX(0);
  }
}

/* Enhanced Glassmorphism Effects */
@supports (backdrop-filter: blur(10px)) {
  .section {
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
      var(--shadow-medium),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  }
  
  .card {
    backdrop-filter: blur(15px) saturate(180%);
  }
  
  nav {
    backdrop-filter: blur(20px) saturate(180%);
  }
}

/* Focus & Accessibility */
.menu-item:focus,
button:focus,
input:focus,
select:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: var(--radius-small);
}

/* Smooth Transitions */
* {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Video Disabled State */
.video-disabled .dynamic-video-background {
  display: none !important;
}

/* Scroll Bar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
  border-radius: var(--radius-small);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  border-radius: var(--radius-small);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #c084fc 100%);
}

