/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0A1628;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #6C2EE8 0%, #00E5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #0A1628;
}

h3 {
  font-size: 24px;
  color: #0A1628;
}

h4 {
  font-size: 18px;
  color: #0A1628;
}

p {
  margin-bottom: 16px;
  color: #333333;
}

a {
  text-decoration: none;
  color: #6C2EE8;
  transition: all 0.3s ease;
}

a:hover {
  color: #00E5FF;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(108, 46, 232, 0.1);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 600;
  color: #0A1628;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6C2EE8 0%, #00E5FF 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #6C2EE8;
}

.main-nav a:hover::after {
  width: 80%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #6C2EE8 0%, #00E5FF 100%);
  border: none;
  color: white;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(108, 46, 232, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(108, 46, 232, 0.5);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #6C2EE8 0%, #764ba2 100%);
  z-index: 1999;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 229, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  background: none;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  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.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #00E5FF 0%, #6C2EE8 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(108, 46, 232, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(108, 46, 232, 0.4);
}

.btn-secondary {
  background: white;
  color: #6C2EE8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

.trust-badges {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.value-proposition,
.services-preview,
.testimonials,
.cta-banner,
.event-categories,
.featured-events,
.event-sizes,
.cta-section,
.services-detail,
.company-story,
.mission-vision,
.team,
.stats,
.gallery-categories,
.event-highlights,
.atmosphere,
.contact-options,
.contact-form-section,
.location-info,
.faq-contact,
.trust-elements,
.legal-content,
.next-steps,
.meanwhile,
.urgent-contact,
.testimonial-single {
  margin-bottom: 40px;
}

.page-hero,
.legal-hero,
.thank-you-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0;
}

.page-hero h1,
.legal-hero h1,
.thank-you-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  background: none;
}

.page-hero p,
.legal-hero p,
.thank-you-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

/* Grid Layouts - Using Flexbox Only */
.benefits-grid,
.services-grid,
.testimonials-grid,
.categories-grid,
.events-grid,
.sizes-grid,
.team-grid,
.stats-grid,
.highlights-grid,
.atmosphere-grid,
.options-grid,
.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

/* Card Styles */
.benefit-card,
.service-card,
.testimonial-card,
.category-card,
.event-card,
.size-card,
.team-member,
.stat-card,
.highlight-card,
.atmosphere-item,
.option-card,
.step-card,
.suggestion-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.benefit-card:hover,
.service-card:hover,
.category-card:hover,
.event-card:hover,
.size-card:hover,
.team-member:hover,
.highlight-card:hover,
.option-card:hover,
.step-card:hover,
.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(108, 46, 232, 0.2);
}

.benefit-card::before,
.service-card::before,
.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6C2EE8 0%, #00E5FF 100%);
  border-radius: 16px 16px 0 0;
}

.stat-card {
  text-align: center;
  background: linear-gradient(135deg, #6C2EE8 0%, #764ba2 100%);
  color: white;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.stat-card p:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

/* Testimonials */
.testimonial-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid #6C2EE8;
  flex: 1 1 calc(100% - 24px);
}

.testimonial-card p {
  font-style: italic;
  color: #333333;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 600;
  color: #0A1628;
  font-style: normal;
  font-size: 14px;
}

/* Service Blocks */
.service-block {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border-left: 4px solid #6C2EE8;
}

.service-block .tagline {
  font-size: 18px;
  color: #6C2EE8;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-block .price {
  font-size: 24px;
  font-weight: 700;
  color: #00E5FF;
  margin: 20px 0;
}

.service-block ul {
  margin: 20px 0;
  padding-left: 0;
}

.service-block ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #333333;
}

.service-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00E5FF;
  font-weight: 700;
  font-size: 18px;
}

/* Stats Section */
.stats {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(108, 46, 232, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
  border-radius: 16px;
}

.stats p {
  font-size: 18px;
  font-weight: 600;
  color: #0A1628;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #6C2EE8 0%, #764ba2 100%);
  text-align: center;
  padding: 80px 40px;
  color: white;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.contact-info {
  margin-top: 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* Mission and Vision */
.mission-block,
.values-block {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.values-block ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #333333;
  font-size: 16px;
}

.values-block ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* FAQ */
.faq-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border-left: 4px solid #00E5FF;
}

.faq-item h3 {
  color: #6C2EE8;
  margin-bottom: 12px;
}

/* Legal Content */
.legal-section {
  margin-bottom: 40px;
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-section h2,
.legal-section h3 {
  color: #6C2EE8;
  margin-bottom: 16px;
}

.legal-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.legal-section table th,
.legal-section table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.legal-section table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #0A1628;
}

.legal-links {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #e9ecef;
  text-align: center;
}

.legal-links a {
  margin: 0 16px;
  font-weight: 600;
}

/* Form Note */
.form-note {
  background: linear-gradient(135deg, rgba(108, 46, 232, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  margin-top: 32px;
}

.form-note p {
  font-size: 16px;
  margin-bottom: 8px;
}

/* Directions */
.directions {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
}

.directions h3 {
  color: #6C2EE8;
  margin-bottom: 16px;
}

/* Thank You Content */
.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  background: #0A1628;
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #00E5FF;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(10px);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-consent-text {
  flex: 1 1 300px;
  color: white;
}

.cookie-consent-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00E5FF 0%, #6C2EE8 100%);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.cookie-btn-reject,
.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #6C2EE8;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #6C2EE8;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .category-card,
  .event-card,
  .size-card,
  .team-member,
  .stat-card,
  .highlight-card,
  .atmosphere-item,
  .option-card,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .service-block {
    padding: 24px;
  }

  .legal-section {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .category-card,
  .event-card,
  .size-card,
  .team-member,
  .stat-card,
  .highlight-card,
  .option-card,
  .step-card,
  .suggestion-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.service-card,
.testimonial-card,
.event-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 32px;
  text-align: center;
}

/* Ensure proper spacing between all content sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Prevent element overlapping */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.card {
  margin-bottom: 24px;
  position: relative;
}

/* Ensure all sections have proper bottom margin */
section:last-child {
  margin-bottom: 0;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6C2EE8 0%, #00E5FF 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a1fc7 0%, #00c4d4 100%);
}