/* Enhanced Gucci background visibility with very strong blur for main content readability */

/* Make cards with stronger blur for better text readability */
.game-card,
.promo-card {
    background: rgba(0, 104, 71, 0.08) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

/* Main content area with VERY strong blur for excellent text readability */
.main-content {
    background: rgba(15, 26, 15, 0.7) !important;
    backdrop-filter: blur(50px) saturate(220%) !important;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5) !important;
}

/* Sidebar with enhanced Gucci styling and strong blur */
.sidebar {
    background: linear-gradient(145deg, rgba(0, 104, 71, 0.15), rgba(15, 26, 15, 0.92)) !important;
    border-right: 2px solid rgba(212, 175, 55, 0.4) !important;
    backdrop-filter: blur(25px) saturate(150%) !important;
}

/* Footer with enhanced background and stronger blur */
.footer-info {
    background: linear-gradient(135deg, rgba(0, 104, 71, 0.8), rgba(15, 26, 15, 0.85)) !important;
    backdrop-filter: blur(20px) !important;
}

/* Header with stronger blur for better readability */
.header {
    backdrop-filter: blur(25px) saturate(180%) !important;
}

/* Make background darker for better text contrast */
body::before {
    background: rgba(15, 26, 15, 0.3) !important;
}