@media screen and (min-width: 769px) {
    .desktop-mode{
        display: block !important;
        z-index: 0;
        position: relative;
    }
}


@media screen and (max-width:768px) {
    .mobile-style {
        display: block !important;
        z-index: 0;
        position: relative;
    }

    .mobile-background-bg {
        background-color: #131313;
    }

    .desktop-style {
        display: none !important;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 99;
    }

    .mobile-display-none {
        display: none !important;
    }

    .site-header {
        background: #101010;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 100px;
        border-bottom: 0px solid transparent;
    }

    .site-header .logo>img,
    .site-header .logo>picture img {
        height: 50%;
        width: 50%;
        margin: 30px 0;
    }


    .announcement-container {
        max-height: 33px;
        overflow-y: hidden;
        display: flex;
        align-items: center;
        font-size: 9px;
        background-color: #000;
        color: #fff;
        margin-top: 99px;
        border-radius: 0;
        margin-bottom: 0px;
    }


    /* Hide the checkbox input */
    .site-menu-trigger-input {
        display: none;
    }

    /* Site Menu Trigger Button */
    .site-menu-trigger {
        margin: 0;
        position: absolute;
        right: 25px;
        cursor: pointer;
        z-index: 101;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        transition: all 0.3s ease;
    }

    .site-menu-trigger:hover {
        transform: scale(1.05);
    }

    .site-menu-trigger:active {
        transform: scale(0.95);
    }

    /* Menu Image - Show by default */
    .site-menu-trigger img {
        display: block;
        width: 24px;
        height: 24px;
        transition: all 0.3s ease;
        opacity: 1;
    }

    /* Hide image when menu is open */
    .site-menu-trigger-input:checked~.site-menu-trigger img {
        opacity: 0;
        width: 0;
        height: 0;
        overflow: hidden;
    }

    /* Create X icon when menu is open */
    .site-menu-trigger::before,
    .site-menu-trigger::after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        opacity: 0;
        transition: all 0.3s ease;
        background: #fff;
        border-radius: 2px;
    }

    /* Show X icon when menu is open */
    .site-menu-trigger-input:checked~.site-menu-trigger::before,
    .site-menu-trigger-input:checked~.site-menu-trigger::after {
        width: 20px;
        height: 3px;
        opacity: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .site-menu-trigger-input:checked~.site-menu-trigger::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .site-menu-trigger-input:checked~.site-menu-trigger::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .site-header .logo {
        display: block;
        position: relative;
        text-align: center;
        height: 100%;
    }

    /* Site Menu Overlay/Backdrop - Show when menu is open */
    .site-menu-trigger-input:checked~.site-menu::after {
        opacity: 1;
        pointer-events: auto;
        z-index: 99;
    }

    /* Site Menu Container */
    .site-menu {
        position: fixed;
        top: 0;
        left: 100%;
        right: 0;
        bottom: 50px;
        transition: left .2s;
    }

    /* .site-menu::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    } */

    /* Slide menu in when checkbox is checked */
    .site-menu-trigger-input:checked~.site-menu {
        left: 0;
    }

    /* Close button inside menu */
    .site-menu>label {
        position: absolute;
        height: 100%;
        width: 100%;
    }

    /* .site-menu>label:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .site-menu>label::before,
    .site-menu>label::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
    }

    .site-menu>label::before {
        transform: rotate(45deg);
    }

    .site-menu>label::after {
        transform: rotate(-45deg);
    } */

    /* Menu Content Styling */
    .site-menu>ul {
        position: absolute;
        top: 65px;
        width: 65%;
        right: 0;
        bottom: 0;
        background-color: #070707;
        color: #fff;
        font-size: 16px;
        overflow: auto
    }

    .site-menu>ul>li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-menu>ul>li>a {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .site-menu>ul>li>a:hover {
        background: rgba(255, 255, 255, 0.05);
        padding-left: 25px;
    }

    .site-menu>ul>li>a i {
        margin-right: 12px;
        width: 20px;
        height: 20px;
    }

    /* Login Panel Styling */
    .side-menu-login-panel {
        display: flex;
        gap: 10px;
        padding: 20px;
    }

    .side-menu-login-panel .login-button,
    .side-menu-login-panel .register-button {
        flex: 1;
        padding: 12px 20px;
        text-align: center;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .side-menu-login-panel .login-button {
        background: #24fe15;
        color: #fff;
        background-image: linear-gradient(to bottom, #24fe15 0%, #007a00 100%);
        /* border: 1px solid rgba(255, 255, 255, 0.2); */
    }

    .side-menu-login-panel .login-button:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .side-menu-login-panel .register-button {
        border: 1px solid #00d71e;
        color: #00d71e;
    }


    /* Details/Summary Styling */
    .site-menu details {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-menu details summary {
        list-style: none;
        cursor: pointer;
        padding: 15px 20px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
    }

    .site-menu details summary:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .site-menu details summary::-webkit-details-marker {
        display: none;
    }

    .site-menu details summary section {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .site-menu details summary i.glyphicon-chevron-right {
        transition: transform 0.3s ease;
        font-size: 12px;
    }

    .site-menu details[open] summary i.glyphicon-chevron-right {
        transform: rotate(90deg);
    }

    .site-menu details article {
        background: rgba(0, 0, 0, 0.3);
        padding: 0;
    }

    .site-menu details article ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .site-menu details article ul li a {
        display: block;
        padding: 12px 20px 12px 50px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .site-menu details article ul li a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        padding-left: 55px;
    }

    /* Fade in animation for overlay */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Prevent body scroll when menu is open */
    .site-menu-trigger-input:checked~.site-menu {
        overflow-y: auto;
    }

    #snackbar .show {
        position: relative;
        z-index: 101;
    }

    .side-menu-login-panel {
        background-color: #303030;
        background-image: linear-gradient(to bottom, #303030 0%, #282828 100%);
    }

    .side-menu-login-panel {
        padding: 12px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .side-menu-login-panel {
        background-color: #303030;
        background-image: linear-gradient(to bottom, #303030 0%, #282828 100%);
    }

    .side-menu-login-panel {
        padding: 12px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .site-menu [data-icon] {
        display: inline-block;
        height: 18px;
        width: 18px;
        background: center no-repeat;
        margin-right: 10px;
        position: relative;
    }

    .announcement-container>[data-section="announcements"] {
        flex-basis: calc(100% - 30px);
        overflow: hidden;
        padding: 8px 0;
    }

    .announcement-container .announcement-list li {
        color: #fff;
    }

    


    /* Banner Carousel - Ensure images are visible */
    .banner {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .banner .slick-slide img {
        aspect-ratio: 640/299;
    }

    .banner-carousel.slick-initialized {
        height: auto;
        display: block;
    }

    .login-links-container {
        display: flex;
    }

    .login-links-container a.register-button {
        color: #fff;
        background: #00d71e;
        background: linear-gradient(to bottom, #00d71e 0%, #008212 100%);
    }

    .login-links-container a {
        flex-basis: 50%;
        color: #fff;
        padding: 14px 20px;
        text-align: center;
        line-height: 1;
        text-decoration: none;
        font-size: 18px;
    }

    .login-links-container a.login-button {
        background: #696969;
        background: linear-gradient(to bottom, #696969 0%, #383838 100%);
    }

    .main-menu-outer-container {
        display: flex;
    }

    .main-menu-outer-container>main {
        background-color: #131313;
    }

    .main-menu-outer-container>main {
        margin: 0;
        flex-grow: 1;
        display: flex;
        overflow: auto;
    }

    .main-menu-outer-container>main>a:first-child {
        margin-left: auto;
    }

    .main-menu-outer-container>main>a {
        display: block;
        white-space: nowrap;
        padding: 10px 0;
        min-width: 80px;
        font-size: 12px;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
        overflow: hidden;
        text-overflow: ellipsis;
        position: relative;
    }

    .main-menu-outer-container>main>a>img {
        display: block;
        height: 25px;
        width: 25px;
        margin: 10px auto;
    }

    .main-menu-outer-container>i {
        background: #131313;
        color: #fff;
        display: flex;
        align-items: center;
        padding: 0 3px;
        top: 0;
    }

    .popular-game-title-container {
        margin: 15px 16px;
    }

    .popular-game-title-container .container-title {
        display: flex;
        justify-content: flex-start;
    }

    .popular-game-title-container .container-title span {
        color: #fff;
        background-color: #2f7d28;
        position: relative;
        text-transform: uppercase;
        padding: 5px 50px;
        padding-left: 10px;
    }

    .popular-game-title-container .container-content {
        border: 1px solid #2f7d28;
        background-color: transparent;
        padding: 10px 0;
        padding-bottom: 0;
        display: flex;
        scroll-behavior: smooth;
    }

    .popular-game-title-container .container-content i {
        color: #fff;
        display: flex;
        align-items: center;
        padding: 0 10px;
        top: 0;
    }

    .popular-game-title-container .container-content .mobile-game-list {
        margin: 0;
        flex-grow: 1;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
    }

    .popular-game-title-container .container-content .mobile-game-list .games-group {
        width: calc((100% - 6px * 2) / 3.5);
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 3px;
    }

    .popular-game-title-container .container-content .mobile-game-list .game-item {
        color: #fff;
        width: calc(100% / 3.5);
        min-width: calc(100% / 3.5);
        padding: 5px;
        padding-bottom: 10px;
        display: block;
        position: relative;
    }

    .popular-game-title-container .container-content .mobile-game-list .games-group .game-item {
        width: 100%;
        margin: 0;
    }

    .popular-game-title-container .container-content .mobile-game-list .game-item img {
        height: auto;
        width: 100%;
    }

    .popular-game-title-container .container-content .mobile-game-list .game-item .game-name {
        color: #00f923;
    }

    .popular-game-title-container .container-content .mobile-game-list .game-item .game-name,
    .popular-game-title-container .container-content .mobile-game-list .game-item .provider-name {
        white-space: nowrap;
        overflow: hidden;
        text-transform: uppercase;
        text-align: center;
        font-size: 10px;
        text-overflow: ellipsis;
        padding: 3px 5px
    }

    .download-apk-container {
        background: var(--image-src);
        background-size: cover;
        display: flex;
        color: #fff;
        align-items: center;
        font-family: sans-serif;
        overflow: hidden
    }

    .download-apk-container>div:nth-child(1) {
        align-self: flex-end;
        transform: translateX(-100%);
    }

    .download-apk-container>div {
        flex-basis: 50%;
        text-align: center;
        opacity: 0;
        transition: all 1s ease;
    }

    .download-apk-container .h2 {
        color: #fff;
        font-weight: 600;
        font-size: var(--x-large-font);
        text-transform: uppercase;
    }

    .download-apk-container .h2>strong {
        display: block;
        font-weight: 700;
    }

    .download-apk-container .h3 {
        font-size: var(--small-font);
        font-weight: 100;
    }

    .download-apk-info {
        display: flex;
        justify-content: center;
        padding: 7px 0;
    }

    .download-apk-info>div {
        flex-basis: 45%;
        max-width: 45%;
    }

    .download-apk-section {
        text-align: center;
        margin-right: 5px;
    }

    .download-apk-section a {
        color: #fff;
        text-transform: uppercase;
        padding: 2px 20px;
        display: block;
        border-radius: 20px;
        text-align: center;
        background: #24fe15;
        background: linear-gradient(to bottom, #24fe15 0%, #007a00 100%);
    }

    .download-apk-section {
        justify-content: center;
        margin-right: 5px;
    }

    .download-apk-container>div:nth-child(2) {
        padding: 10px 0;
    }

    .download-apk-guide {
        text-transform: uppercase;
        text-decoration: underline;
        color: #fff;
    }

    .site-footer {
        padding-top: 15px;
        color: #737373;
        line-height: 20px
    }

    .site-footer .mobile-contact-list {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .site-footer .mobile-contact-list>li {
        flex-basis: 50%;
        padding: 5px 10px;
    }

    .site-footer .mobile-contact-list>li a {
        display: flex;
        align-items: center;
        text-decoration: none;
        background-color: #0a0a0a;
        border-radius: 30px;
        color: #737373;
    }

    .site-footer .mobile-contact-list>li a i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin-right: 10px;
        border-radius: 50%;
        background: #737373;
    }

    .site-footer h2 {
        color: #fff;
        text-transform: uppercase;
        text-align: center;
        font-size: 18px;
    }

    .site-footer .bank-list {
        margin: 0;
        padding: 10px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-footer .bank-list>li {
        margin: 5px 5px;
        text-align: center;
        padding-left: 5px;
    }

    .site-footer .bank-list [data-online] {
        position: relative;
        display: inline-block;
        width: 80px;
        min-height: 40px;
    }

    .site-footer .bank-list [data-online='true']:before {
        background-color: #0f0;
    }

    .site-footer .bank-list [data-online='true']:before,
    .site-footer .bank-list [data-online='false']:before {
        content: '';
        position: absolute;
        top: 0;
        left: -10px;
        bottom: 0;
        width: 5px;
        border-radius: 2px;
    }

    .site-footer .bank-list [data-online] img {
        width: 80px;
        height: 40px;
    }
    .site-footer .social-media-list {
        margin: 0 0 25px;
        padding: 10px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .site-footer .footer-links {
        background-color: #1d1d1d;
        color: #b9a353;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .site-footer .footer-links>li {
        flex-basis: 25%;
        text-align: center;
        margin: 5px 0;
    }
    .site-footer .footer-links a {
        color: #fff;
        display: block;
        padding: 5px;
        font-size: 14px;
    }
    .site-footer .site-description {
        text-align: center;
        background-color: #080808;
        padding: 10px 0 20px;
        overflow: hidden;
        font-size: 14px;
    }
    .site-footer a {
        color: #00f923;
    }
    .site-footer .site-description p {
        color: #858585;
    }
    .site-footer .copyright {
        background: center no-repeat;
        background-size: cover;
        padding: 25px 0 20px;
        font-size: 14px;
    }
    .site-footer .copyright img {
        display: block;
        margin: auto;
        max-width: 200px;
        margin-bottom: 20px;
    }
    .fixed-footer {
        position: fixed;
        background-color: #1d1d1d;
        color: #fff;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99;
        display: flex;
        justify-content: space-around
    }
    .fixed-footer a {
        flex-basis: calc((100% - 15px * 6) / 5);
        color: #03e04e;
        font-size: 11px;
        text-align: center;
        padding: 5px 0;
        background-color: inherit;
    }
    .fixed-footer a[data-active="true"]>img {
        content: var(--image-src);
    }
    .fixed-footer a>img {
        display: block;
        height: 25px;
        width: 25px;
        margin: 0 auto;
        background: center no-repeat;
        background-size: contain;
        background-color: inherit;
    }
    .fixed-footer a {
        flex-basis: calc((100% - 15px * 6) / 5);
        color: inherit;
        font-size: 11px;
        text-align: center;
        padding: 5px 0;
        background-color: inherit;
    }
}

.desktop-style {
    display: block;
}

.mobile-style {
    display: none;
}

.announcement-container>[data-section="date"] [data-icon="news"] {
    display: inline-block;
    height: 15px;
    width: 15px;
    background: center no-repeat;
    background-size: contain;
    background-image: var(--image-src);
}

/* Announcement Ticker Animation - Left to Right */
.announcement-container .tickercontainer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.announcement-container .mask {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.announcement-container .announcement-list,
.announcement-container .newsticker {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    position: relative;
}
.announcement-container .announcement-list {
    animation: scroll-right-to-left 50s linear infinite;
}

.announcement-container .announcement-list:hover {
    animation-play-state: paused;
}

.announcement-container .announcement-list li {
    display: inline-block;
    padding-right: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Keyframe animation: Start from right (off-screen) and move to left */
@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* .announcement-container>[data-section="announcements"] {
    flex-basis: calc(70% - 30px);
    overflow: hidden;
    padding: 8px 0;
} */