/* ===== RESPONSIVE & POLISH ===== */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Content Spacing */
.content {
    padding: 0 15px;
}

@media (min-width: 769px) {
    .content {
        padding: 0;
    }
}

/* Nav Title */
.nav__title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #923489;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 769px) {
    .nav__title {
        font-size: 28px;
        margin: 30px 0;
    }
}

/* Banner Spacing */
.banner-slider {
    margin-bottom: 25px;
}

@media (min-width: 769px) {
    .banner-slider {
        margin-bottom: 35px;
    }
}

/* Provider & Category Tabs Spacing */
.g8sggl {
    margin-bottom: 20px;
}

/* Games Grid Spacing */
/* Note: .glbox styling is handled by style-exact.css */

/* Game Card Enhancements */
/* Note: Base .gl styling is in style-exact.css */

.g8sggl .glbox .gl:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 199, 0, 0.3);
}

/* Remove conflicting styles */

/* Container Max Width */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #923489;
}

/* Selection Color */
::selection {
    background: #923489;
    color: #000;
}

::-moz-selection {
    background: #923489;
    color: #000;
}

/* Focus Outline */
*:focus {
    outline: 2px solid #923489;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gl {
    animation: fadeIn 0.5s ease-out;
}

/* Print Styles */
@media print {
    .desktop-top-bar,
    .desktop-header,
    #showM,
    .fixed-bottom-menu,
    .back-top {
        display: none !important;
    }
}
