/* Custom styles that can't be done with Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

.minecraft-font {
    font-family: 'Press Start 2P', cursive;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: #38a169;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2f855a;
}