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

/* CSS Variables for Theme Colors */
:root {
  /* Light theme colors */
  --bg-primary: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  --bg-radial-1: rgba(59, 130, 246, 0.1);
  --bg-radial-2: rgba(59, 130, 246, 0.08);
  --bg-radial-3: rgba(59, 130, 246, 0.05);
  --text-primary: #1a1a1a;
  --text-secondary: #334155;
  --text-muted: #475569;
  --text-light: #64748b;
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-bg-alt: rgba(255, 255, 255, 0.9);
  --border-color: rgba(59, 130, 246, 0.2);
  --border-color-hover: rgba(59, 130, 246, 0.4);
  --session-bg: rgba(59, 130, 246, 0.08);
  --session-bg-hover: rgba(59, 130, 246, 0.12);
  --guarantee-bg: rgba(59, 130, 246, 0.08);
  --guarantee-bg-hover: rgba(59, 130, 246, 0.12);
  --scrollbar-track: #e2e8f0;
}

[data-theme="dark"] {
  /* Dark theme colors */
  --bg-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  --bg-radial-1: rgba(59, 130, 246, 0.15);
  --bg-radial-2: rgba(59, 130, 246, 0.12);
  --bg-radial-3: rgba(59, 130, 246, 0.08);
  --text-primary: #f8fafc;
  --text-secondary: #e2e8f0;
  --text-muted: #cbd5e1;
  --text-light: #94a3b8;
  --card-bg: rgba(30, 41, 59, 0.8);
  --card-bg-alt: rgba(30, 41, 59, 0.9);
  --border-color: rgba(59, 130, 246, 0.3);
  --border-color-hover: rgba(59, 130, 246, 0.5);
  --session-bg: rgba(59, 130, 246, 0.15);
  --session-bg-hover: rgba(59, 130, 246, 0.2);
  --guarantee-bg: rgba(59, 130, 246, 0.15);
  --guarantee-bg-hover: rgba(59, 130, 246, 0.2);
  --scrollbar-track: #334155;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  padding-top: 80px;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      var(--bg-radial-1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      var(--bg-radial-2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      var(--bg-radial-3) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
  transition: background 0.3s ease;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #3b82f6;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #e2e8f0;
}

.nav-link:hover::after {
  width: 100%;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
  position: absolute;
  transition: all 0.3s ease;
}

.theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(-90deg);
}

[data-theme="dark"] .theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.mobile-theme-toggle {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.4s;
}

.mobile-theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.mobile-theme-toggle .sun-icon,
.mobile-theme-toggle .moon-icon {
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] .mobile-theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .mobile-theme-toggle .moon-icon {
  display: block;
}

[data-theme="dark"] .mobile-theme-toggle .theme-toggle-text::after {
  content: " Mode";
}

.mobile-theme-toggle .theme-toggle-text::before {
  content: "Dark";
}

[data-theme="dark"] .mobile-theme-toggle .theme-toggle-text::before {
  content: "Light";
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #3b82f6;
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 40px;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.mobile-nav-link:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-nav-link:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-nav-link:nth-child(3) {
  animation-delay: 0.3s;
}

.mobile-nav-link:hover {
  color: #e2e8f0;
  transform: translateY(-5px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.firstcontainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header Section */
.hero-section {
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.main-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  letter-spacing: -0.02em;
  position: relative;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

/* Video Section */
.video-section {
  margin: 80px 0;
  position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: var(--card-bg-alt);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--border-color),
    inset 0 1px 0 var(--border-color);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.video-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3),
    transparent,
    rgba(59, 130, 246, 0.3)
  );
  border-radius: 26px;
  z-index: -1;
}

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

/* Main Content Section */
.main-content-section {
  margin: 80px 0 100px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.right-column {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Description Section */
.description-section {
  width: 100%;
}
.description-section-phone {
  display: none;
}

.description-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  padding: 40px;
  background: var(--card-bg);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.description-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.5),
    transparent
  );
}

.description-text strong {
  color: #3b82f6;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Service Section */
.service-card {
  background: var(--card-bg-alt);
  border-radius: 32px;
  padding: 40px;
  width: 100%;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-right: 24px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-title h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-title p {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.card-description {
  margin-bottom: 40px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.sessions-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 30px;
  text-align: center;
}

.session-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--session-bg);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.session-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
}

.session-item:hover {
  transform: translateY(-2px);
  background: var(--session-bg-hover);
  border-color: var(--border-color-hover);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.session-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.session-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.session-content p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.cta-button {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.cta-button:active {
  transform: translateY(-1px);
}

/* Disclaimer Section */
.disclaimer-section {
  width: 100%;
}

.disclaimer-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 35px;
  width: 100%;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 var(--border-color);
  transition: all 0.3s ease;
}

.disclaimer-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: -0.01em;
}

.disclaimer-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.guarantee-points {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--guarantee-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  background: var(--guarantee-bg-hover);
  border-color: var(--border-color-hover);
}

.guarantee-label {
  font-weight: 700;
  color: #3b82f6;
  min-width: 100px;
  font-size: 1rem;
}

.guarantee-item span:last-child {
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .right-column {
    position: static;
  }

  .left-column {
    gap: 40px;
  }

  .description-section-phone {
    display: block;
    margin-top: 60px;
  }

  .description-section {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .nav-container {
    height: 70px;
  }

  .logo-img {
    height: 35px;
  }

  .main-title {
    font-size: 2.8rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .content-grid {
    gap: 30px;
  }

  .left-column {
    gap: 30px;
  }

  .description-text {
    font-size: 1rem;
    padding: 30px 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .card-header {
    flex-direction: column;
    text-align: center;
  }

  .card-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .card-footer {
    flex-direction: column;
    gap: 25px;
  }

  .session-item {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }

  .session-icon {
    margin-right: 0;
    margin-bottom: 12px;
    align-self: center;
  }

  .disclaimer-card {
    padding: 25px 20px;
  }

  .guarantee-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .guarantee-label {
    min-width: auto;
  }

  .footer {
    padding: 40px 0 30px;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
  }

  .footer-right {
    justify-content: center !important;
  }

  .footer-nav {
    gap: 30px;
  }

  .social-links {
    gap: 15px;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-section {
    padding: 80px 0 60px;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .description-text {
    padding: 25px 18px;
    font-size: 0.95rem;
  }

  .service-card {
    padding: 25px 18px;
  }

  .disclaimer-card {
    padding: 20px 15px;
  }

  .price {
    font-size: 2.2rem;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .footer-logo-img {
    height: 40px;
  }

  .footer-nav {
    gap: 20px;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}

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

/* Footer Styles */
.footer {
  background: #3b82f6;
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 40px;
  margin-top: 100px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  height: 50px;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.footer-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-nav-link:hover {
  color: #e2e8f0;
}

.footer-right {
  display: flex;
  justify-content: center;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Scroll Animation Styles */
.fade-up {
  filter: blur(10px);
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  filter: blur(0px);
  transform: translateY(0);
}

.fade-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-up.delay-2 {
  transition-delay: 0.2s;
}

.fade-up.delay-3 {
  transition-delay: 0.3s;
}

.fade-up.delay-4 {
  transition-delay: 0.4s;
}

.fade-up.delay-5 {
  transition-delay: 0.5s;
}

.fade-up.delay-6 {
  transition-delay: 0.6s;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1d4ed8, #3b82f6);
}
