@import "../style.css";
@import "tailwindcss";

@layer base {
  html {
    scroll-behavior: smooth;
    color-scheme: dark;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0d0d12;
}
::-webkit-scrollbar-thumb {
  background: #2a251a;
  border-radius: 4px;
  border: 1px solid rgba(223, 184, 94, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: #dfb85e;
}

/* Gold Gradient Text & Effects */
.gold-text {
  background: linear-gradient(135deg, #fce8a6 0%, #dfb85e 50%, #b88a32 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-border-glow {
  box-shadow: 0 0 20px -5px rgba(223, 184, 94, 0.25);
}

.gold-border-glow:hover {
  box-shadow: 0 0 30px 2px rgba(223, 184, 94, 0.45);
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #f7e8a4 0%, #dfb85e 50%, #c49635 100%);
}

.bg-dark-card {
  background: rgba(18, 18, 24, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(223, 184, 94, 0.15);
}

.bg-dark-card:hover {
  border-color: rgba(223, 184, 94, 0.4);
}

/* Animations */
@keyframes pulse-gold {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}

.animate-pulse-gold {
  animation: pulse-gold 3s infinite ease-in-out;
}
