@import "tailwindcss";

@theme {
  --color-gold-light: #f3e5ab;
  --color-gold: #d4af37;
  --color-gold-dark: #b8860b;
  --color-bg-dark: #0a0a0a;
  --color-bg-card: #161616;
}

@layer base {
  body {
    @apply bg-bg-dark text-gray-200 font-sans selection:bg-gold selection:text-bg-dark;
    scroll-behavior: smooth;
  }
}

@layer components {
  .gold-gradient {
    background: linear-gradient(135deg, #b8860b, #d4af37, #f3e5ab);
  }
  
  .gold-text {
    background: linear-gradient(135deg, #b8860b, #d4af37, #f3e5ab);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .btn-gold {
    background: linear-gradient(135deg, #b8860b, #d4af37, #f3e5ab);
    @apply px-6 py-2 rounded-full text-black font-bold transition-transform duration-300 shadow-lg;
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.2);
  }
  .btn-gold:hover {
    transform: scale(1.05);
  }

  .nav-link {
    @apply text-gray-400 transition-colors duration-300;
  }
  .nav-link:hover {
    @apply text-gold;
  }

  .card-premium {
    @apply bg-bg-card border border-white/5 rounded-xl p-6 transition-all duration-300;
  }
  .card-premium:hover {
    @apply border-gold/30 shadow-xl;
    box-shadow: 0 20px 25px -5px rgba(212, 175, 55, 0.05);
  }

  .section-title {
    @apply text-3xl font-bold mb-8;
    background: linear-gradient(135deg, #b8860b, #d4af37, #f3e5ab);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  @apply bg-bg-dark;
}
::-webkit-scrollbar-thumb {
  @apply bg-gold/50 rounded-full hover:bg-gold;
}
