/* Custom Input Styles - Remove arrows from number inputs */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Gradient Text Helper */
.text-gradient-gold {
    background: linear-gradient(to right, #D4AF37, #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Glassmorphism Utilities if needed in future components */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}