/* Premium Gold Button */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
    color: #1A1A2E;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Premium Text Gradient */
.text-premium {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Card Border */
.card-premium {
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.card-premium:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

/* Gold Glow */
.glow-gold {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

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

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

::-webkit-scrollbar-track {
    background: #1A1A2E;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #B8960F;
}


