/* ========================================
   MOBILE CATEGORIES & PROVIDERS FIX
   Make category icons and provider icons visible on mobile view
   Hide jackpots on mobile
   ======================================== */

/* JACKPOTS - Hide on mobile */
@media (max-width: 767px) {
    .top-bar {
        display: none !important;
    }
}

/* CATEGORIES - Make visible and styled for mobile */
@media (max-width: 767px) {
    .category-panel {
        display: block !important;
        background: rgba(0, 0, 0, 0.5);
        padding: 8px 8px 3px 8px; /* Even tighter bottom padding */
        margin: 5px 5px 2px 5px; /* Minimal bottom margin */
        border-radius: 8px;
    }
    
    .games-menu__list {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none;
    }
    
    .games-menu__item {
        flex: 0 0 auto;
        margin: 0 !important;
    }
    
    .games-menu__link {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 15px !important;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        background: rgba(46, 24, 52, 0.8) !important;
        min-width: 80px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .games-menu__link:hover {
        border-color: #fff !important;
        background: rgba(149, 59, 43, 0.8) !important;
    }
    
    .games-menu-icon {
        font-size: 24px;
        margin-bottom: 5px;
        display: block !important;
        width: 28px;
        height: 28px;
    }
    
    .games-menu__title {
        font-size: 11px !important;
        color: #d3f9fd !important;
        text-align: center;
        font-weight: 500;
        display: block !important;
    }
}

/* PROVIDERS - Make visible on mobile */
@media (max-width: 767px) {
    .providers {
        display: block !important;
        background: rgba(0, 0, 0, 0.5);
        padding: 8px 5px 3px 5px; /* Super tight padding */
        margin: 2px 5px 2px 5px; /* Minimal margins */
        border-radius: 8px;
    }
    
    .providers__btn-all {
        display: none !important;
    }
    
    .providers__panel {
        display: flex !important;
        flex-direction: column;
        padding: 5px !important;
        background: transparent !important;
    }
    
    .providers__panel-list {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin: 0;
        padding: 0;
    }
    
    .providers__item {
        margin: 0 !important;
        flex: 0 0 auto;
    }
    
    .providers__link {
        padding: 8px 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 6px;
        background: rgba(46, 24, 52, 0.8);
        min-width: 100px;
        justify-content: center;
    }
    
    .providers__link--current {
        border-color: #fff !important;
        background: rgba(149, 59, 43, 0.8) !important;
    }
    
    .providers__icon {
        margin-right: 6px !important;
    }
    
    .providers__icon-img {
        max-width: 18px !important;
        max-height: 18px !important;
    }
    
    .providers__name {
        font-size: 11px !important;
        color: #d3f9fd !important;
    }
    
    .providers__toggler {
        display: none !important;
    }
    
    .providers__dropdown {
        position: static !important;
        display: none !important;
    }
}

/* Smaller mobile screens - extra compact */
@media (max-width: 480px) {
    .games-menu__link {
        padding: 8px 12px !important;
        min-width: 70px;
    }
    
    .games-menu-icon {
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .games-menu__title {
        font-size: 10px !important;
    }
    
    .providers__link {
        padding: 6px 10px !important;
        min-width: 90px;
        font-size: 10px;
    }
    
    .providers__icon-img {
        max-width: 16px !important;
        max-height: 16px !important;
    }
}

/* Very small screens - ultra compact */
@media (max-width: 360px) {
    .games-menu__link {
        padding: 6px 10px !important;
        min-width: 60px;
    }
    
    .games-menu-icon {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }
    
    .games-menu__title {
        font-size: 9px !important;
    }
    
    .providers__link {
        padding: 5px 8px !important;
        min-width: 80px;
    }
    
    .providers__name {
        font-size: 10px !important;
    }
}

