
/* =========================================================
   FIXWIN778 MOBILE - FLAT PERFORMANCE PATCH
   Removes glass / blur / glow / animated shine effects.
   Keeps layout, images, buttons and native scrolling intact.
   ========================================================= */

/* 1) Hard-disable GPU-heavy visual effects */
*,
*::before,
*::after{
    -webkit-backdrop-filter:none !important;
    backdrop-filter:none !important;
    filter:none !important;
    text-shadow:none !important;
}

/* Shadows are the main remaining glow source. */
*,
*::before,
*::after{
    -webkit-box-shadow:none !important;
    box-shadow:none !important;
}

/* 2) Remove all decorative shine overlays used by the old premium CSS */
.game-holder::before,
.game-box::before,
.game-item::before,
.provider-item::before,
.game-holder::after,
.game-box::after,
.game-item::after,
.provider-item::after,
.fixwin-shine::before,
.fixwin-shine::after,
.action-button .btn::before,
.header-mobile__top .mobile-button .mobile-button--register::before,
.header-mobile__top .mobile-button .mobile-button--menu::before,
.popup-box::before,
.liveNotif::before{
    display:none !important;
    content:none !important;
    animation:none !important;
    background:none !important;
    transform:none !important;
}

/* 3) Disable known glow/shine animations only.
      Jackpot/welcome functional animations are intentionally untouched. */
.game-holder,
.game-box,
.game-item,
.provider-item,
.slot-game-item,
.fixwin-shine,
.action-button .btn,
.download-btn,
.footer-mobile .footer-item.footer-login .footer-icon{
    animation:none !important;
    transition:none !important;
}

/* Remove hover zoom/lift that causes extra repainting on mobile. */
.game-holder:hover,
.game-box:hover,
.game-item:hover,
.provider-item:hover,
.slot-game-item:hover,
.game-holder:hover img,
.slot-game-item:hover img{
    transform:none !important;
}

/* 4) Make game/provider surfaces opaque and flat */
.game-holder,
.game-box,
.game-item,
.provider-item,
.slot-game-item,
.fw-game-card,
.fw-game-card a,
.fw-game-image,
.fw-game-name{
    background-color:#111 !important;
    background-image:none !important;
    -webkit-backdrop-filter:none !important;
    backdrop-filter:none !important;
}

/* Preserve the normal game image itself. */
.game-holder .game-img,
.game-holder .game-img img,
.slot-game-img,
.slot-game-img img,
.fw-game-image img{
    filter:none !important;
    box-shadow:none !important;
}

/* Flat game information strip instead of translucent/glass overlay. */
.game-holder .game-bottom,
.game-holder .game-bottom .game-name,
.game-holder .game-bottom .game-links,
.slot-game-name{
    background:#2b2b2b !important;
    background-image:none !important;
    box-shadow:none !important;
    text-shadow:none !important;
}

/* 5) Provider/category cards: solid surface, no glass border effect */
.home .mobile__category .category-container .category-item,
.category-item,
.category-modal-container .category-item{
    background:#292929 !important;
    background-image:none !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
}

/* 6) Popup: remove blur/glow without disabling the popup itself */
#popup-home{
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
}
#popup-home .popup-box{
    box-shadow:none !important;
    background:#111 !important;
    background-image:none !important;
}

/* 7) Live notification: solid, no glow */
.liveNotif,
.liveNotif img{
    box-shadow:none !important;
    background-image:none !important;
}

/* 8) Remove animated gold shine/glow from common buttons, but keep their
      normal flat color and click behavior. */
button,
.btn,
.show-more,
.download,
.download-btn{
    box-shadow:none !important;
    text-shadow:none !important;
}

/* Keep mobile rendering cheap. */
img{
    filter:none !important;
}
