/* CMM Custom Styles overrides for Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

/* Optional WoW font if we have it locally, otherwise fallback */
@font-face {
    font-family: 'Lifecraft';
    src: url('../fonts/Lifecraft.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-image: radial-gradient(circle at 50% 0%, #2a2a3a 0%, #111111 80%);
    background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111111; 
}
::-webkit-scrollbar-thumb {
    background: #444; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ffb000; 
}

/* Smooth transitions */
a, button {
    transition: all 0.2s ease-in-out;
}
