/* Custom styles for Casino Review Zone */

/* Body background with image and dark gradient overlay */
body {
    background-image: 
        linear-gradient(to bottom, rgba(15, 23, 42, 0.85), rgba(30, 27, 75, 0.85), rgba(15, 23, 42, 0.85)),
        url('../bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
        overflow-x: hidden;

}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

::-webkit-scrollbar-thumb {
    background: #7c3aed;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d28d9;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #a78bfa;
    outline-offset: 2px;
}

