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

body {
  font-family: "Montserrat", "Arial", sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: #0a0a0a;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation - ENHANCED */
.navbar {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #0a0a0a 25%,
    #000000 50%,
    #0a0a0a 75%,
    #000000 100%
  );
  color: white;
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(20px) saturate(200%);
}

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

/* UPDATED LOGO STYLES */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(212, 175, 55, 0.1)
  );
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.logo-img {
  height: auto;
  width: 125px;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
  transition: all 0.3s ease cubic-bezier(0.4, 0, 0.2, 1);
}

.company-name {
  font-family: "playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(40deg, #d4af37, #f1c40f, #d4af37);
  background-size: 200%;
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.7), 0080px rgba(218, 165, 32, 0.4);
  animation: goldShimmer 3s linear infinite;
}
.logo:hover {
  transform: scale(1.1);
}
.logo:hover.logo-img {
  transform: scale(1.1);
}
@keyframes goldShimmer {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #daa520, #ffd700);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #daa520, #ffd700);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Hero Section - ENHANCED LUXURIOUS BLACK */
.hero {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%),
    radial-gradient(
      circle at 20% 80%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%
    ),
    url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iODAiIGhlaWdodD0iODAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiIGZpbGw9InJnYmEoMjEyLDE3NSw1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iIzAwMCIvPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=");
  color: white;
  text-align: center;
  padding: 180px 0 120px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      transparent 45%,
      rgba(255, 215, 0, 0.03) 50%,
      transparent 55%
    ),
    linear-gradient(
      -45deg,
      transparent 45%,
      rgba(255, 215, 0, 0.03) 50%,
      transparent 55%
    );
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffd700 30%,
    #daa520 70%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(255, 215, 0, 0.4),
    0 0 120px rgba(218, 165, 32, 0.2);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.4),
      0 0 120px rgba(218, 165, 32, 0.2);
  }
  100% {
    text-shadow: 0 0 80px rgba(255, 215, 0, 0.6),
      0 0 150px rgba(218, 165, 32, 0.3), 0 0 200px rgba(184, 134, 11, 0.1);
  }
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  background: linear-gradient(135deg, #ffd700 0%, #daa520 50%, #b8860b 100%);
  color: #000000;
  padding: 18px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5),
    0 0 0 1px rgba(255, 215, 0, 0.2);
}

.cta-button.secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.cta-button.secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.about h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #cccccc;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.stat h3 {
  font-size: 2.8rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat p {
  color: #cccccc;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.services h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffd700, #daa520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.service-card p {
  color: #cccccc;
  line-height: 1.7;
}

/* Trading Platform Section */
.trading-platform {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #111111 50%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.trading-platform::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
}

.trading-platform h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platform-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #daa520, #ffd700);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffd700, #daa520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-card p {
  color: #cccccc;
  line-height: 1.7;
}

.platform-cta {
  text-align: center;
  background: rgba(255, 215, 0, 0.05);
  padding: 4rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.platform-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 215, 0, 0.03) 50%,
    transparent 55%
  );
  background-size: 30px 30px;
  animation: gridMove 15s linear infinite;
}

.platform-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #ffd700;
  position: relative;
  z-index: 2;
}

.platform-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #cccccc;
  position: relative;
  z-index: 2;
}

.platform-button {
  background: linear-gradient(135deg, #ffd700 0%, #daa520 50%, #b8860b 100%);
  color: #000000;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.platform-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.platform-button:hover::before {
  left: 100%;
}

.platform-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6),
    0 0 0 1px rgba(255, 215, 0, 0.2);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.contact h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item p {
  color: #cccccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888888;
}

.contact-form button {
  background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
  color: #000000;
  padding: 18px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Footer - ENHANCED LUXURIOUS BLACK */
footer {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%),
    radial-gradient(
      circle at 20% 80%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    );
  color: white;
  padding: 80px 0 30px;
  position: relative;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1.5rem;
  color: #ffd700;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #ffd700, #daa520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-section a:hover {
  color: #ffd700;
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-section a::before {
  content: "▸";
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #ffd700;
}

.footer-section a:hover::before {
  opacity: 1;
  left: -8px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .platform-features {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .logo {
    padding: 8px 12px;
    gap: 10px;
  }
  .company-name {
    font-size: 1.3rem;
  }
  .logo-img {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .company-name {
    font-size: 1rem;
  }
  .logo-img {
    width: 40px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .about-stats {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ffd700, #daa520);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #daa520, #b8860b);
}
