/* Custom styles for Boo Casino */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Open Sans', Oxygen, Ubuntu, Cantarell, sans-serif;
}

.gradient-green {
    background: linear-gradient(135deg, #00d68f 0%, #00b377 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #0066ff 0%, #0047b3 100%);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 214, 143, 0.3);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #00d68f;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00b377;
}

