body {
  background-color: #0A0A0A;
  color: #e5e5e5;
  font-family: "Inter", "Microsoft YaHei", "PingFang SC", "Helvetica Neue", sans-serif;
  overflow-x: hidden;
}

.text-gradient-gold {
  background: linear-gradient(to right, #E6C27A, #B5952F);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.bg-gradient-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B5952F 100%);
}

.hover-glow:hover {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

