@import url("https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap");

/* Local font */
@font-face {
    font-family: 'Airstrike';
    src: url('../fonts/airstrike.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Utility to apply local font when needed */
.font-airstrike {
    font-family: 'Airstrike', sans-serif;
}

body {
    font-family: "Istok Web", sans-serif;
    box-sizing: border-box;
    background-color: #03071E;
    background-image: url('../images/banners/about-bg-banner.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

/* Global select styling: dark dropdown and options */
select,
.form-select {
    background-color: transparent;
    color: #FFFFFF;
}

/* Ensure the dropdown list itself is dark across browsers */
select option,
.form-select option,
.form-select optgroup {
    background-color: #0b1026;
    color: #FFFFFF;
}

/* Selected/hovered option color in dropdown */
select option:checked,
.form-select option:checked,
select option:hover,
.form-select option:hover {
    background-color: #1f2747;
    color: #FFFFFF;
}

/* Sub-navbar */
.sub-navbar {
    border-bottom: 1px solid #FFFFFF66;
    color: rgba(255, 255, 255, 0.85);
}

.subnav-icon img {
    max-width: 40px;
}

.ticker-text {
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* ticker marquee */
.sub-navbar .ticker-viewport {
    flex: 0 0 55%;
    max-width: 55%;
    overflow: hidden;
    text-align: center;
}

.sub-navbar .ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}

.sub-navbar .ticker-track:hover {
    animation-play-state: paused;
}

.sub-navbar .ticker-text {
    display: inline-block;
    margin-right: 3rem;
}
@media (max-width: 991.98px) {
    .sub-navbar .ticker-viewport {
        flex: 1 1 auto;
        max-width: 100%;
    }
}

/* Ensure 100% width at <=768px */
@media (max-width: 768px) {
    .sub-navbar .ticker-viewport {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

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

.date-badge {
    background: #0f1a21;
    color: #cfd8df;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 7px;
    padding: .25rem .5rem;
    display: inline-block;
}

/* Make the vertical rule subtle on dark */
.sub-navbar .vr {
    opacity: 1;
    background-color: #FF0037;
}

/* Navbar base */
.navbar-dark {
    border-bottom: 1px solid #FFFFFF66;
    background-color: transparent
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar .nav-link:hover {
    color: #ffffff;
}

.navbar-brand img {
    max-width: 130px;
}

.navbar-actions {
    gap: 15px;
}

.navbar-toggler {
    padding: 0;
}

/* Custom hamburger button (mobile) */
.hamburger-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hamburger-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Offcanvas APK banner */
.apk-banner-link {
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-align: center;
}

.apk-banner-img {
    max-width: 300px;
    width: 100%;
    height: 165px;
    margin: auto !important;
}

/* Buttons */
.btn-red {
    background-color: #FF0037;
    color: #ffffff;
    padding: .45rem .9rem;
    border: none;
    max-width: 180px;
    width: 100%;
    height: 50px;
    border-radius: 12px;
}

.btn-red:hover,
.btn-red:focus {
    background-color: #E00031;
    color: #ffffff;
}

.btn-blue {
    background-color: #51A2FF;
    color: #ffffff;
    padding: .45rem .9rem;
    border: none;
    max-width: 180px;
    width: 100%;
    height: 50px;
    border-radius: 12px;
}

.btn-blue:hover,
.btn-blue:focus {
    background-color: #3E92FF;
    color: #ffffff;
}

/* Sidebar action buttons */
.btn-telegram,
.btn-whatsapp,
.btn-logout-sky {
    color: #ffffff;
    border: none;
    max-width: none;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-telegram {
    background-color: #0088cc;
}
.btn-telegram:hover,
.btn-telegram:focus {
    background-color: #0079b6;
    color: #ffffff;
    text-decoration: none;
}

.btn-whatsapp {
    background-color: #25D366;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: #1ebe57;
    color: #ffffff;
    text-decoration: none;
}

.btn-logout-sky {
    background-color: #51A2FF; /* site sky blue */
}
.btn-logout-sky:hover,
.btn-logout-sky:focus {
    background-color: #3E92FF;
    color: #ffffff;
    text-decoration: none;
}

/* Sidebar Slot/Casino buttons */
.btn-slot,
.btn-casino {
    color: #ffffff;
    border: none;
    max-width: none;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-slot {
    background-color: #FF0037;
}
.btn-slot:hover,
.btn-slot:focus {
    background-color: #E00031;
    color: #ffffff;
    text-decoration: none;
}

.btn-casino {
    background-color: #3E92FF;
}
.btn-casino:hover,
.btn-casino:focus {
    background-color: #2e82f0;
    color: #ffffff;
    text-decoration: none;
}

/* Offcanvas from right */
.offcanvas-end {
    width: 280px;
    background-color: #0b0d0f;
    color: #ffffff;
    background-image: url('../images/banners/sidebar-bg-banner.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.offcanvas .nav-link:hover {
    color: #ffffff;
}

/* Offcanvas menu list styling */
.offcanvas-menu li+li {
    border-top: 1px solid #FFFFFF14;
}

.offcanvas-menu .icon-square {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-color: #ffffff33;
}

/* Dropdown menu appearance */
.dropdown-menu,
.dropdown-menu-dark {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

/* Add divider lines between dropdown items, exclude last */
.dropdown-menu>li {
    border-bottom: 1px solid #FFFFFF66;
}

.dropdown-menu>li:last-child {
    border-bottom: none;
}

/* Dropdown item hover/active color */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    background: linear-gradient(180deg, #494c50 0%, #3a3d41 60%, #2d3034 100%);
    color: #ffffff;
}

/* Language switcher flag sizing */
.js-lang-btn [data-role="flag"] img {
    width: 18px;
    height: 12px;
    display: inline-block;
    object-fit: cover;
}

/* Flags inside language dropdown items */
.dropdown-menu .lang-flag,
.dropdown-menu-dark .lang-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    margin-right: 8px;
    vertical-align: -2px;
}

/* Icon square buttons */
.icon-square {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    box-sizing: border-box;
    padding: 0;
    flex: 0 0 40px;
}

.icon-square img {
    max-width: 22px;
}

.icon-square:hover {
    border-color: #ffffff;
    color: #ffffff;
}

/* Ensure fixed button widths in desktop navbar, while allowing full width in offcanvas */
.navbar-actions .btn-red,
.navbar-actions .btn-blue {
    width: 120px;
    flex: 0 0 120px;
}

/* Make language dropdown match date badge border */
.js-lang-btn {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 7px !important;
}

/* User action pills (wallet and profile) */
.user-pill {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 12px !important;
    height: 50px;
    color: #cfd8df !important;
    background: transparent !important;
}
.user-pill:hover {
    border: 1px solid rgba(255, 255, 255) !important;
}
.user-pill-ico img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.user-avatar img {
    width: 26px;
    height: 26px;
    object-fit: cover;
    border-radius: 50%;
}

/* Initial-based avatar */
.user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #4DA3FF;
}

.user-avatar-initial {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

/* Dropdown list items look like in screenshots */
.user-dd .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;

}

.dropdown-item {
    padding: 10px 20px;
    cursor: pointer;
}

.menu-ico {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Mobile tweaks */

/* Category strip */
.category-strip {
    border-bottom: 1px solid #FFFFFF66;
}

.cat-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    background: black;
    border: 1px solid #ffffff33;
    border-radius: 8px;
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    min-width: 180px;
}

.cat-card img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 10px;
}

.cat-title {
    color: white;
    letter-spacing: .5px;
    font-weight: 700;
}

/* Inline layout for category-style buttons inside offcanvas */
.offcanvas-quick-links .d-flex {
    display: flex !important;
}
.offcanvas-quick-links .cat-card {
    flex: 1 1 0;
    min-width: auto; /* override category strip min-width */
}

.cat-jackpot {
    background: linear-gradient(180deg, #161b1f 0%, #0f1417 100%);
    border: 1px solid #FFFFFF66;
    border-radius: 8px;
    padding: 10px 5px 0px 20px;
    color: #d9c07a;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.cat-jackpot .jackpot-value {
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(90deg, #DACE7C 0%, #BB8A2D 50%, #E9D481 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.cat-jackpot small {
    color: #DACE7C;
    font-weight: 700;
    align-self: flex-end;
    font-size: 16px;
}

.cat-social {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-radius: 8px;
    padding: 5px 20px;
    color: #fff;
    text-decoration: none;
    min-width: 220px;
    justify-content: space-between;
    border: 1px solid #FFFFFF66;
}

.cat-social img {
    max-width: 35px;
}

.cat-social.wa {
    background: #19BFA5;
}

.cat-social.tg {
    background: #20A3DB;
}

.cat-social small {
    opacity: .9;
}



/* Homepage banner background */
.homepage-banner {
    background-image: linear-gradient(180deg, #000000 0%, #000000B2 50%, #000000 100%), url('../images/banners/Home page .webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slot provider banner background */
.slot-provider-banner {
    background-image: linear-gradient(180deg, #000000 0%, #0000005c 50%, #000000 100%), url('../images/banners/slot-slider.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Casino provider banner background */
.casino-provider-banner {
    background-image: linear-gradient(180deg, #000000 0%, #0000005c 50%, #000000 100%), url('../images/banners/casinoSlider.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero */
.hero-section {
    display: flex;
    align-items: flex-end;
}

.hero-section .row {
    align-items: stretch !important;
}

/* Ensure the image column sits at the bottom without using position */
.hero-section .col-md-6.text-center {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Keep the text vertically centered */
.hero-section .col-md-6:not(.text-center) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 60px;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 750px;
    height: auto;
}



/* Clipped gradient CTA */
.cta-clip {
    display: inline-block;
    text-align: center;
    padding: 12px 50px 8px 55px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 8px;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(90deg, #bf62d882 0%, #ff00376e 100%);
    -webkit-clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    border: 0;
}

/* Slot page CTA gradient override */
.slot-provider-banner .cta-clip {
    background: linear-gradient(90deg, #1556439e 0%, #0e947369 100%);
    font-size: 20px;
    letter-spacing: 5px;
}

.cta-clip:hover,
.cta-clip:focus {
    color: #ffffff;
    opacity: .95;
}

/* =========================
   Media Queries (consolidated)
   ========================= */

@media (max-width: 992px) {

    /* Give announcement full width on mobile by hiding right controls */
    .sub-navbar .date-badge,
    .sub-navbar .dropdown {
        display: none !important;
    }

    /* Hide category strip on <= 992px */
    .category-strip {
        display: none !important;
    }

    /* Hero adjustments at <= 992px */
    .hero-section {
        padding-top: 30px;
        min-height: auto;
    }

    .hero-title {
        font-size: 40px;
        text-align: center;
    }

    .cta-clip {
        font-size: 18px;
    }
}

/* Mobile (<=992px): make language switcher a 40x40 flag-only pill */
@media (max-width: 992px) {
    .js-lang-btn {
        width: 50px;
        height: 40px;
        padding: 0 !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px !important;
        border-radius: 7px !important;
    }

    .js-lang-btn.dropdown-toggle::after {
        /* keep caret, tighten spacing */
        margin-left: 0 !important;
    }

    .js-lang-btn [data-role="short"] {
        display: none !important;
    }

    .js-lang-btn [data-role="flag"] img {
        width: 20px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    /* Stack with text first so image stays at the bottom on mobile */
    .hero-section .row {
        min-height: 0;
        flex-direction: column;
        align-items: stretch !important;
    }

    .hero-section .col-md-6.text-center {
        order: 2;
    }
}

@media (max-width: 576px) {
    .cat-jackpot {
        min-width: 100%;
    }

    .cat-social {
        flex: 1 1 100%;
    }
}

/* Game Plays marquee */
.game-plays {
    background: #0b0d0f;
    border-top: 1px solid #FFFFFF66;
    border-bottom: 1px solid #FFFFFF66;
}

.gp-viewport {
    overflow: hidden;
}

.gp-track {
    display: flex;
    gap: 12px;
    will-change: transform;
    --gp-card-width: 230px;
}

.gp-card {
    position: relative;
    display: flex;
    align-items: stretch;
    width: var(--gp-card-width);
    flex: 0 0 var(--gp-card-width);
    height: 78px;
    background: #0c0f13;
    border: none;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
}

.gp-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: #FFFFFF66;
}

.gp-media {
    flex: 0 0 80px;
    overflow: hidden;
}

.gp-thumb {
    width: 75px;
    height: 75px;
    object-fit: cover;
    display: block;
}

.gp-sep {
    display: none;
}

.gp-info {
    position: relative;
    flex: 1 1 auto;
    padding: 3px 12px 3px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.gp-user {
    font-size: 10px;
    color: #e3e7ec;
}

.gp-game {
    font-size: 10px;
    color: #b7c0ca;
}

.gp-badge {
    position: static;
    align-self: flex-start;
    background: linear-gradient(90deg, #7b4ab8 0%, #a51e3e 100%);
    color: #fff;
    border-radius: 0;
    height: 28px;
    padding: 5px 10px 5px 10px;
    font-size: 12px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    margin-top: 6px;
    -webkit-clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    font-weight: 700;
}

.gp-badge::before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url('../images/icons/gp-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
}

/* Game carousels (Swiper) */

.games-swiper .swiper-slide {
    height: auto;
}

/* Game section titles: 28px, bold, with leading icon */
.games-section h5 {
    font-size: 28px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.games-section h5::before {
    content: "";
    width: 35px;
    height: 35px;
    display: inline-block;
    background: url('../images/icons/game-title-icon.svg') center / contain no-repeat;
}

/* Spinner section */

.spinner-banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-image:
        linear-gradient(0deg, rgba(24, 0, 44, 0.80), rgba(24, 0, 44, 0.80)),
        url('../images/banners/Home page .webp');
    background-size: cover;
    background-position: center;
}

.spinner-title {
    font-size: 45px;
    font-weight: 700;
}

.spinner-text {
    max-width: 560px;
}

.spinner-dragon {
    max-width: 400px;
}

.load-btn {
    background-color: #FF0037 !important;
    color: white !important;
    font-weight: 600;
    opacity: 1 !important;
    border: none !important;
}

.load-btn:hover {
    background-color: #e00333;
}

@media (max-width: 992px) {
    .spinner-title {
        font-size: 28px;
    }

    .spinner-dragon {
        max-width: 380px;
    }
}

.game-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 25px;
}

.game-card span {
    font-size: 12px;
    color: #cfd8df;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider-nav {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #51A2FF !important;
    border-color: #51A2FF !important;
    color: #ffffff !important;
}

.slider-nav:hover,
.slider-nav:focus,
.slider-nav:active {
    background-color: #51A2FF !important;
    border-color: #51A2FF !important;
    color: #ffffff !important;
}

/* Hover overlay + blue border + play button */
.game-card::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    height: 220px;
    border-radius: 25px;
    background: rgba(8, 16, 32, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}

.game-card::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 120px;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(77, 163, 255, .45);
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='%23ffffff'%3E%3Cpolygon points='24,18 24,46 46,32'/%3E%3C/svg%3E") center/32px 32px no-repeat,
        #4da3ff;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
}

.game-card:hover img {
    box-shadow: 0 0 0 3px #4da3ff;
}

/* Smooth reveal for load-more */
.game-fade {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease;
}

.game-fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* =======================
   Payment methods section
   ======================= */

/* Slot providers grid cards */
.sp-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0c0f13;
}

.sp-card img {
    display: block;
    width: 100%;
    height: auto;
}

.sp-title {
    position: absolute;
    font-family: 'Airstrike', sans-serif;
    left: 12px;
    right: 12px;
    bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    font-size: 18px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .6), 0 0 6px rgba(0, 0, 0, .35);
    z-index: 0;
    transition: transform .2s ease, opacity .2s ease;
}

/* Hover overlay and play button */
.sp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 1;
}

.sp-card:hover::before {
    opacity: 1;
}


/* Real overlay content container (for clickable button) */
.sp-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 2;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}

.sp-card:hover .sp-overlay {
    opacity: 1;
    pointer-events: auto;
}

.sp-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 12px;
    background: #51A2FF;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(77, 163, 255, .45);
    transform: scale(.96);
    transition: transform .2s ease, box-shadow .2s ease;
}

.sp-play-btn:hover {
    color: #ffffff;
    transform: scale(1);
    box-shadow: 0 8px 22px rgba(77, 163, 255, .55);
}

/* Logo in overlay (image) */
.sp-logo {
    max-width: 70%;
    max-height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .45));
}

/* Fallback text logo if no image is provided */
.sp-logo-text {
    font-family: 'Airstrike', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 22px;
    text-align: center;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .6), 0 0 8px rgba(0, 0, 0, .45);
    padding: 0 10px;
}

.payment-methods .pay-card {
    border: 1px solid #FFFFFF33;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: url('../images/banners/apk-bg-banner.png') center / cover no-repeat;
}

/* Footer container styling */
footer.container {
    background: #02040F;
    border: 1px solid #FFFFFF66;
    padding: 40px;
    border-radius: 10px;
}

.payment-methods h3 {
    font-weight: 700;
}

.btn-more-crypto {
    background-color: #2C2F63;
    height: 44px;
    border: none;
}

.payment-methods .pay-coin-container {
    width: 44px;
    height: 44px;
    background-color: #2C2F63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-methods .pay-coin {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

/* Main Footer Styles */
.main-footer {
    padding: 3rem 0 2rem 0;
}

.footer-top {
    padding-bottom: 2rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
}

.logo-art {
    color: #FF6B35;
    /* Orange color */
}

.logo-chip {
    color: white;
    position: relative;
}

.logo-icon {
    color: #FF6B35;
    font-size: 1rem;
    position: absolute;
    top: -0.3rem;
    left: 1.8rem;
}

.footer-description {
    color: #cfd8df;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    max-width: 350px;
}

.footer-heading {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #B4BBC5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    word-break: break-all;
}

.footer-link:hover {
    color: #FF6B35;
}

.footer-separator {
    height: 1px;
    background-color: #333;
    margin: 1.5rem 0;
}

.footer-middle {
    padding: 1.5rem 0;
}

.casino-description-box {
    border: 1px solid #FFFFFF66;
    border-radius: 27px;
    padding: 10px;

}

.casino-description {
    color: #cfd8df;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.footer-bottom {
    padding: 1.5rem 0 0 0;
}

.copyright {
    color: #cfd8df;
    font-size: 0.9rem;
    margin: 0;
}

.social-media {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Makes icons white */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer.container {
        padding: 15px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-brand {
        text-align: center;
    }

    .main-footer {
        padding: 0;
    }

    .footer-bottom {
        padding: 0;
    }

    .footer-top {
        padding-bottom: 1.5rem;
    }

    .footer-heading {
        margin-top: 1.5rem;
    }

    .footer-heading:first-child {
        margin-top: 0;
    }

    .casino-description-box {
        padding: 1rem;
    }

    .social-media {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .cta-clip {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .slot-provider-banner .cta-clip {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .games-section h5 {
        font-size: 18px;
    }

    .slider-nav {
        width: 25px;
        height: 25px;
    }
    .spinner-dragon{
        max-width: 100%;
    }
}

.payment-methods .pay-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #2C2F63;
    color: #cfd8df;
    max-width: 140px;
    flex: 1;
}

/* =========================
   Media Queries (Appends)
   ========================= */
@media (max-width: 576px) {

    /* Slot providers: mobile tweaks */
    .sp-title {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

.payment-methods .pay-chip img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.payment-methods .pay-3d-img {
    position: absolute;
    bottom: -35px;
    right: -13px;
    max-width: 220px;
}

.payment-methods .col-md-5 {
    position: relative;
}

/* =======================
   Footer: Mobile app banner
   ======================= */
.mobile-app-banner {
    position: relative;
    border: 1px solid #FFFFFF66;
    border-radius: 27px;
    padding: 32px 24px 0 24px;
    background: url('../images/banners/apk-bg-banner.png') center / cover no-repeat;

}

.mobile-app-banner .mab-girl {
    position: absolute;
    left: -30px;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    max-width: 250px;
}

.mab-title {
    font-weight: 700;
    font-size: 45px;
}

.mab-btn {
    background: #51A2FF;
    border-color: #51A2FF;
    color: #ffffff;
    padding: 15px 17px;
    border-radius: 999px;
}

/* Button icons: ensure consistent sizing and white tint */
.mab-btn .mab-ico {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mab-btn .mab-ico-left {
    margin-left: 2px;
}

.mab-btn .mab-ico-right {
    margin-right: 2px;
}

.mab-qr-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mab-qr-title {
    color: #cfd8df;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.mab-qr-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.mab-mocks {
    position: relative;
    height: 260px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.mab-mock {
    height: 100%;
    object-fit: contain;
}

/* Ensure the girl stays behind and does not overlap text interactivity */
.mobile-app-banner .mab-girl {
    z-index: 0;
}

/* Create a positioned wrapper for the first mock to host the QR overlay */
.mab-mocks .mock-1-wrap {
    position: relative;
    display: inline-block;
    height: 100%;
    transform: scale(.92);
    transform-origin: center;
}

.mab-qr-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    pointer-events: none;
    /* overlay is decorative; click-through */
}

/* Slightly enlarge the right mockup */
.mab-mock.mock-2 {
    transform: scale(1.08);
    transform-origin: center;
}

/* Center column (title + button) should sit above girl image */
.mobile-app-banner .col-lg-3.text-center {
    position: relative;
    z-index: 1;
}

/* Mobile girl image styling */
.mab-girl-mobile {
    max-width: 100px;
    height: auto;
    position: absolute;
    top: 33%;
    left: 17px;
}

@media (max-width: 992px) {

    /* Hide desktop girl image on mobile */
    .mobile-app-banner .mab-girl {
        display: none;
    }

    .mab-title {
        font-size: 24px;
    }

    .mab-qr-img {
        width: 140px;
        height: 140px;
    }

    .mab-mocks {
        height: 200px;
        gap: 16px;
    }

    .mab-qr-img {
        width: 120px;
        height: 120px;
    }

    /* Reduce scaling on smaller screens for better fit */
    .mab-mocks .mock-1-wrap {
        transform: scale(.96);
        top: 10%;
    }

    .mab-mock.mock-2 {
        transform: scale(1.2);
    }

    /* Ensure proper ordering on mobile */
    .mobile-app-banner .row {
        flex-direction: column;
    }

    .mobile-app-banner .col-lg-5.text-center {
        order: 1 !important;
    }

    .mobile-app-banner .col-lg-5.text-center:last-child {
        order: 3 !important;
    }

    /* Payment methods: shrink 3D image on mobile */
    .payment-methods .pay-3d-img {
        max-width: 120px;
    }

    /* Payment methods: compact chips on mobile */
    .payment-methods .pay-chip {
        font-size: 10px;
        max-width: fit-content;
        flex: 0 0 auto;
    }
}

/* =======================
   About page
   ======================= */
.about-banner {
    background-image: linear-gradient(180deg, #000000 0%, #0000005c 50%, #000000 100%), url('../images/banners/Home page .webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-content {
    color: #cfd8df;
}

.about-content h1 {
    font-weight: 700;
}

.about-card {
    border: 1px solid #FFFFFF66;
    border-radius: 16px;
}

.about-title {
    color: #51A2FF !important;
}

/* About page background */
body.about-page {
    background-image: url('../images/banners/about-bg-banner.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

/* Removed page-scoped background on .homepage-banner; now applied globally to body */