body {
  background-color: #0D0D12;
  color: #e2e8f0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(59, 7, 100, 0.15) 0, transparent 2px);
  background-size: 24px 24px;
  z-index: -1;
  opacity: 0.8;
}

.glass-nav {
  background: rgba(31, 17, 53, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 179, 57, 0.15);
}

.glass-card {
  background: linear-gradient(145deg, rgba(59, 7, 100, 0.5) 0%, rgba(31, 17, 53, 0.8) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 7, 100, 0.8);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(232, 179, 57, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(232, 179, 57, 0.2);
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FDE08B 0%, #E8B339 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-refined {
  position: relative;
  background: rgba(59, 7, 100, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 9999px;
  border: 1px solid rgba(232, 179, 57, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-refined::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(232, 179, 57, 0.2), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.btn-refined:hover::before {
  transform: translateX(200%) skewX(-15deg);
}

.btn-refined:hover {
  transform: translateY(-3px);
  background: rgba(59, 7, 100, 0.9);
  border-color: rgba(232, 179, 57, 0.8);
  box-shadow: 0 0 20px rgba(232, 179, 57, 0.25);
}

.showcase-container {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background: #1F1135;
  border: 1px solid rgba(59, 7, 100, 0.8);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.showcase-container::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(232, 179, 57, 0.1);
  border-radius: 40px;
  pointer-events: none;
}

.glass-card.hover\:transform-none:hover {
  transform: none;
}
