@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Base Styles */
body {
    min-height: max(884px, 100dvh);
    background-color: #050505;
    color: #FFFFFF;
}

/* Red Glow Effect */
.red-glow {
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}
