@charset "UTF-8";


/* Ana deÄŸiÅŸkenler */
:root {
    --bg-deep: #1f2021; /* ana header alt arka plan */
    --bg-bar: #202902; /* Ã¼st bar */
    --accent: #86aa02; /* turuncu vurgu / hover */
    --accent-light: #ff7b33; /* turuncunun aÃ§Ä±k hali (hover iÃ§in) */
    --text: #ffffff; /* beyaz metin */
    --muted: #cccccc; /* ikincil metin */
    --border: #465a05; /* Ã§erÃ§eve / ayÄ±rÄ±cÄ±lar */
    --pill: #ff5400; /* premium etiketi de aynÄ± turuncu */
    --radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, .45);
}

/* GENEL */
body {
    background: #141414;
    color: var(--text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    /*overflow-x:hidden;*/
}

a:hover {

    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* HEADER GENEL */
.gp-header {
    background: var(--bg-deep);
    border-bottom: 1px solid #344200;
    position: relative;
}

/* ÃœST BAR */
.gp-top {
    background: var(--bg-bar);
    padding: 10px 12px;
    color: var(--text);
}

/* LOGO */
.gp-logo img {
    height: 34px;
    width: 100%;
}

.gp-brand {
    color: var(--muted);
    font-size: 12.5px;
    text-transform: uppercase;
    font-weight: 700;
}

/* BUTONLAR */
.btn-olive {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: .5rem 1rem;
    font-weight: 700;
    /* box-shadow:var(--shadow); */
    transition: all .2s ease;
    font-size: 13px;
    margin: 0 5px;
    border-radius: 5px !important;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(135 168 5)), color-stop(9%, rgba(144, 179, 5, 1)), color-stop(91%, rgba(44, 52, 1, 1))) !important;
    background: -o-linear-gradient(top, rgb(135 168 5) 0%, rgba(144, 179, 5, 1) 9%, rgba(44, 52, 1, 1) 91%) !important;
    background: linear-gradient(180deg, rgb(114 143 0) 0%, rgb(135 141 18) 9%, rgb(69 82 1) 91%) !important;
    box-shadow: 0 1px 6px #86a713;
    padding: 7px 15px !important;
}

.btn-olive:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    color: #fff;
    background: #ff540ccf;
}

.btn-outline-olive {
    background: transparent;
    color: var(--text);
    /* border:1px solid var(--accent); */
    border-radius: var(--radius);
    padding: .48rem 1rem;
    font-weight: 600;
    transition: all .2s ease;
    font-size: 15px;
}

.btn-outline-olive:hover {
    background: none;
    color: #ff5400;
}

/* PARA YATIRMA */
.btn-deposit {
    /* background:linear-gradient(180deg,var(--accent-light),var(--accent)); */
    color: #fff;
    border: none;
    border-radius: 18px;
    font-weight: 800;
    letter-spacing: .4px;
    padding: .6rem 1.1rem;
    /* box-shadow:var(--shadow); */
    text-transform: uppercase;
    font-size: 15px;
}

.btn-deposit:hover {
    filter: brightness(1.1);
    color: #fff;
}

/* CHIP KUTULARI */
.gp-chip {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 14px;
    padding: .45rem .8rem;
    display: flex;
    align-items: center;
    margin-left: .5rem;
}

.gp-chip i {
    margin-right: 5px;
    color: #ffffff;
}

/* ALT NAV MENÃœ */
.gp-nav {
    /* background:var(--bg-bar); */
    padding: 17px 0 0 0;
}

.gp-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.gp-menu a {
    color: var(--text);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    margin: 0 !important;
    text-decoration: none;
    transition: color .2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    text-align: center;
    font-weight: 400;
    position: relative;
    padding: 0px 21px;
    font-size: 15px !important;
}

.gp-menu a:hover {
    color: var(--accent);
}

.gp-menu a.active {
    /* color:var(--accent); */
}

.gp-menu a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    /* background: var(--accent); */
    border-radius: 2px;
}

/* PREMIUM ETÄ°KET */
.tag-premium {
    background: #ff5400;
    color: #fff;
    font-weight: 700;
    padding: .18rem .5rem;
    border-radius: 10px;
    position: absolute;
    font-size: 8px;
    top: -13px;
    right: -17px;
}

/* HIZLI OYUNLAR */
.menu-accent {
    color: var(--accent);
}

.menu-accent:hover {
    color: var(--accent-light);
}

/* HOVER CARET */
.menu-caret {
    display: inline-block;
    margin-left: .3rem;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .gp-top .left, .gp-top .right {
        justify-content: center;
    }

    .gp-menu {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .btn-olive, .btn-outline-olive {
        padding: .4rem .7rem;
    }

    .gp-menu a {
        font-size: 10px;
        /* margin: 6px 10px; */
    }
}


/* ===== RESPONSIVE (MOBÄ°L) ===== */
@media (max-width: 767px) {
.mainslider {
margin:0 !important;
}
    .gp-menu {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        display: flex;
        width: auto;
        flex: 0 0 auto;
        min-width: max-content;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        justify-content: center;
        align-items: center;
        /* padding: 0 10px; */
        line-height: var(--mobile-header-navigation-height);
        text-transform: uppercase;
        box-shadow: inset 0 -2px rgba(var(--menu-sc), .05);
        color: rgba(var(--menu-sc), .8);
        background: rgba(var(--menu), 1);
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }


    .btn-olive {
        padding: 7px 15px !important;
    }


    /* TÃ¼m Ã¼st bar sadeleÅŸir */
    .gp-top-list {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        height: 52px;
    }

    /* Sadece logo + mobil butonlar kalÄ±r */
    /*.gp-action-list,
    .gp-user-list {
        display: none !important;
    }*/
    .gp-logo {
        flex: 1;
    }

    .gp-logo-img {
        height: 32px;
    }

    .gp-mobile-buttons {
        display: flex !important;
        gap: .5rem;
    }

    .gp-mobile-btn .btn {
        padding: 9px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 5px;
    }

    .gp-mobile-btn .btn-olive {
        background: var(--accent);
        color: #fff;
    }

    .gp-mobile-btn .btn-outline-olive {
        border: 1px solid var(--accent);
        color: #fff;
    }

    .gp-mobile-btn .btn-outline-olive:hover {
        background: var(--accent);
    }
}


.gp-logo {
    padding-right: 13px;
}

span.gp-dd-caret {
    margin-left: 3px;
}

/* === KullanÄ±cÄ± Dropdown - Turuncu/Siyah Tema === */
.gp-user-dropdown {
    position: relative;
}

.gp-dropdown-toggle {
    cursor: pointer;
    border: none;
    background: #2a2b2d;
    color: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 14px;
    padding: .45rem .8rem;
    display: flex;
    align-items: center;
    margin-left: .5rem;
}

.gp-dropdown-toggle:hover {
    background: #3d4e05;
    color: #ffffff;
}

.gp-dropdown-menu {
    position: absolute;
    right: 0 !important;
    top: calc(100% + 8px);
    width: 240px;
    list-style: none;
    padding: 8px;
    margin: 0;
    background: #334004;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 999;
    border: 2px solid var(--bar-bg);
    box-shadow: 0 1px 6px #86a713;
}

.gp-dropdown-menu.open {
    display: block;
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gp-dropdown-item {
    margin-bottom: 6px;
}

.gp-dropdown-item:last-child {
    margin-bottom: 0;
}

.gp-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: #f1f1f1;
    background: #2a2b2d;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    transition: all 0.3s ease;
    box-shadow: 0 1px 6px #86a713;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(135 168 5)), color-stop(9%, rgba(144, 179, 5, 1)), color-stop(91%, rgba(44, 52, 1, 1))) !important;
    background: -o-linear-gradient(top, rgb(135 168 5) 0%, rgba(144, 179, 5, 1) 9%, rgba(44, 52, 1, 1) 91%) !important;
    background: linear-gradient(180deg, rgb(114 143 0) 0%, rgb(135 141 18) 9%, rgb(69 82 1) 91%) !important;
    box-shadow: 0 1px 6px #86a713;
}

.gp-dropdown-link:hover {
    background: #86aa02;
    color: #fff;
    text-decoration: none;
}

.gp-dropdown-link:active {
    background: #ff7033;
}

/* Rozet (BRONZ) */
.badge-tier {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    background: #86aa02;
    color: #fff;
    text-transform: uppercase;
}

/* Scrollbar uyumu */
.gp-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.gp-dropdown-menu::-webkit-scrollbar-thumb {
    background: #ff5400;
    border-radius: 4px;
}

.gp-dropdown-menu::-webkit-scrollbar-track {
    background: #2a2b2d;
}

/* Responsive */
@media (max-width: 767px) {
    .gp-dropdown-menu {
        /* width: 200px; */
        /* right: 0; */
        /* left: 0; */
    }
}

/* === Dil Dropdown === */
.gp-lang-dropdown {
    position: relative;
}

.gp-lang-dropdown .gp-dropdown-toggle {
    background: #465a05;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 14px;
    padding: .45rem .8rem;
    display: flex;
    align-items: center;
    margin-left: .5rem;
}

.gp-lang-dropdown .gp-dropdown-toggle:hover {
    background: #465a05;
}

/* MenÃ¼ */
.gp-lang-dropdown .gp-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 180px;
    background: #1c1d1f;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    padding: 8px;
    display: none;
    z-index: 999;
    background: #242e02;
    box-shadow: 0 1px 6px #86a713;
}

.gp-lang-dropdown .gp-dropdown-menu.open {
    display: block;
    animation: fadeIn 0.15s ease;
}

.gp-lang-dropdown .gp-dropdown-item {
    margin-bottom: 6px;
}

.gp-lang-dropdown .gp-dropdown-item:last-child {
    margin-bottom: 0;
}

.gp-lang-dropdown .gp-dropdown-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #f1f1f1;
    background: #2a2b2d;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    transition: all 0.3s ease;
    /* box-shadow: 0 1px 6px #86a713; */
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(135 168 5)), color-stop(9%, rgba(144, 179, 5, 1)), color-stop(91%, rgba(44, 52, 1, 1))) !important;
    background: -o-linear-gradient(top, rgb(135 168 5) 0%, rgba(144, 179, 5, 1) 9%, rgba(44, 52, 1, 1) 91%) !important;
    background: linear-gradient(180deg, rgb(114 143 0) 0%, rgb(135 141 18) 9%, rgb(69 82 1) 91%) !important;
    /* box-shadow: 0 1px 6px #86a713; */
}

.gp-lang-dropdown .gp-dropdown-link:hover {
    background: #ff5400;
    color: #fff;
}

.gp-lang-flag img {
    display: block;
    border-radius: 3px;
}

/* Scrollbar */
.gp-lang-dropdown .gp-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.gp-lang-dropdown .gp-dropdown-menu::-webkit-scrollbar-thumb {
    background: #ff5400;
    border-radius: 4px;
}

.gp-lang-dropdown .gp-dropdown-menu::-webkit-scrollbar-track {
    background: #2a2b2d;
}

/* Responsive */
@media (max-width: 767px) {
    .gp-lang-dropdown .gp-dropdown-menu {
        width: auto;
        left: 8px;
        right: 8px;
    }
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}

@media (max-width: 1360px) {
    .mob-pt {
        display: none !important;
    }
}


.gp-nav {
    /* border: 1px solid #465a0b; */
    /* border-left: none; */
    /* border-right: none; */
    /* box-shadow: 9px 6px 12px 0px #86a713; */
    /* box-shadow: #86a713 0px -2px 17px 0px, #86a713 0px 1px 1px 0px; */
    /* background: #353d19; */
    /* margin-bottom: 15px; */
    /* padding: 3px 6px; */
}


@media (max-width: 1540px) {
    .gp-nav {
        /* padding: 3px 6px; */
        overflow-x: scroll;
        display: grid;
        /* align-items: center; */
        margin-bottom: 0;
        background: none !important;
    }

    .gp-nav {
        overflow-x: auto;
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: #353d19 #353d19 !important; /* Firefox renk ayarı */
        -webkit-overflow-scrolling: touch; /* iOS kaydırma desteği */
        background: #353d19;
    }

    /* Chrome, Safari, Edge için görünmez scroll */
    .gp-nav::-webkit-scrollbar {
        height: 4px; /* En ince görünüm (yatay scroll için) */
        background-color: transparent; /* Arkaplan yok */
    }

    .gp-nav::-webkit-scrollbar-thumb {
        background-color: #1f2903; /* Scroll bar rengi */
        border-radius: 10px; /* Kaybolan ince çizgi efekti */
    }

    .gp-nav::-webkit-scrollbar-thumb:hover {
        background-color: #1f2903; /* Hover’da da değişmesin */
    }

    .gp-nav::-webkit-scrollbar-track {
        background-color: transparent; /* Tamamen görünmez track */
    }
}

.gp-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    display: flex; /* içerik kadar */
    /* width: auto; */ /* %100'ü kaldır */
    flex: 0 0 auto; /* shrink yok */
    /* min-width: max-content; */ /* içeriği sıkıştırma */
    /* white-space: normal; */ /* kelimeler kırılabilsin */
    /* overflow-wrap: anywhere; */ /* çok uzun kelimeleri kır */
    /* word-break: break-word; */
    /* justify-content: center; */ /* ortalama isteniyorsa kalsın */
    /* align-items: center; */
    /* padding: 0 10px; */
    /* line-height: var(--mobile-header-navigation-height); */
    /* text-transform: uppercase; */
    /* box-shadow: inset 0 -2px rgba(var(--menu-sc), .05); */
    /* color: rgba(var(--menu-sc), .8); */
    /* background: rgba(var(--menu), 1); */
';;;; /* display: flex; */;; /* flex-wrap: nowrap; */; /* tek satır */; /* white-space: nowrap; */; /* tek satır */; /* overflow-x: auto; */; /* kaydırma */
    -webkit-overflow-scrolling: touch;;
}


.tag-premium {
    right: 0 !important;
}

}


/* BirleÅŸik kullanÄ±cÄ±+bakiye Ã§ipi (mobil) */
.gp-user-compact {
    display: none;
}

/* varsayÄ±lan: desktop'ta kapalÄ± */

.gp-chip-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 7px !important;
    border-radius: 10px;
    background: #2a2b2d;
    color: #fff;
    border: 1px solid #3a3a3a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
    font-weight: 700;
    line-height: 1;
}

.gp-chip-compact .gp-ico-user,
.gp-chip-compact .gp-ico-card {
    color: #ff5400;
}

.gp-compact-username {
    white-space: nowrap;
    font-size: 12px;
}

.gp-compact-amount {
    white-space: nowrap;
    font-size: 12px;
}

img {
    width: 100%;
}

.gp-compact-sep {
    opacity: .6;
    /* margin: 0 2px; */
}

/* Mobil davranÄ±ÅŸ */
@media (max-width: 767px) {
    /* AyrÄ± ayrÄ± olanlarÄ± gizle */
    .gp-user-item[title="Bakiye Bilgisi"],
    .gp-user-dropdown,
    .gp-lang-dropdown {
        display: none !important;
    }

    /* BirleÅŸik Ã§ipi gÃ¶ster */
    .gp-user-compact {
        display: list-item !important;
    }

    /* Buton gibi tÄ±klama efekti olmasÄ±n */
    .gp-chip-compact {
        cursor: default;
        user-select: none;
        margin: 0;
    }
}


.gp-container {
    padding: 0;
    margin: 0;
}

/* Kompakt Ã§ip gÃ¶rÃ¼nÃ¼mÃ¼ (genel) */
.gp-chip-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    background: #2a2b2d;
    color: #fff;
    border: 1px solid #3a3a3a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
    font-weight: 700;
    line-height: 1;
}

.gp-chip-compact .gp-ico-user,
.gp-chip-compact .gp-ico-card {
    color: #86aa02;
}

.gp-chip-compact .gp-dd-caret i {
    color: #ffffff;
}

.gp-compact-username, .gp-compact-amount {
    white-space: nowrap;
}

.gp-compact-sep {
    opacity: .6;
    margin: 0 2px;
}

/* Mobilde sadece kompakt li gÃ¶rÃ¼nsÃ¼n (diÄŸerlerini gizliyorsan mevcut kuralla uyumlu) */
@media (max-width: 767px) {
    /* Ã¶r: ayrÄ± bakiye & ayrÄ± kullanÄ±cÄ± dropdown kapatÄ±lÄ±yorsa */
    .gp-user-item[title="Bakiye Bilgisi"],
    .gp-user-item.gp-user-dropdown:not(.gp-user-compact),
    .gp-lang-dropdown {
        display: none !important;
    }

    .gp-user-compact {
        display: list-item !important;
    }
}

.gp-side-menu-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gp-side-menu-icons li {
    display: flex;
}

.gp-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #465a05; /* turuncu Ã§erÃ§eve */
    border-radius: 10px;
    color: #ffffff;
    background: transparent;
    transition: all 0.25s ease;
    text-decoration: none;
    font-size: 20px;
}

.gp-icon-link:hover {
    background: #ff5400;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 84, 0, 0.4);
}

.gp-side-menu-icons i {
    pointer-events: none;
}


/* responsive Ã¶rnek */
@media (min-width: 767px) {
    .gp-menu a {
        color: var(--text);
        text-transform: uppercase;
        font-weight: 700;
        font-size: 13px;
        margin: 9px 11px;
        text-decoration: none;
    }
    }

    /* responsive Ã¶rnek */
    @media (max-width: 767px) {
        .gp-side-menu-icons {
            flex-direction: row;
            justify-content: left;
            margin-top: 15px;
        }

        .gp-nav {
            border: 1px solid #465a0b;
            border-left: none;
            border-right: none;
            box-shadow: 9px 6px 12px 0px #86a713;
            box-shadow: #86a713 0px -2px 17px 0px, #86a713 0px 1px 1px 0px;
            background: #353d19;
            margin-bottom: 15px;
            padding: 3px 6px;
        }


        .gp-chip-compact {
            display: block !important;
            background: rgba(255, 255, 255, .07);
            border: 1px solid var(--border);
        }

        .gp-menu a {
            color: var(--text);
            /* text-transform: uppercase; */
            /* font-weight: 700; */
            /* font-size: 10px; */
            /* margin: 0; */
            /* text-decoration: none; */
            /* transition: color .2s ease; */
            /* min-width: 87px; */
            /* text-align: center; */
            /* display: inline; */
            /* display: inline; */ /* sadece yazı kadar yer kapla */
            /* white-space: normal !important; */ /* satır kırılabilsin */
            /* overflow: visible !important; */ /* kırpma yok */
            /* text-overflow: clip !important; */ /* ellipsis kapalı */

            /* Flex içinde kısalma olmasın */
            /* max-width: 100%; */

            /* Her durumda kırarak göster (uzun kelimelerde işe yarar) */
            /* word-break: break-word; */
            /* overflow-wrap: anywhere; */

            /* Herhangi bir genişlik dayatmasını sıfırla */

            /* min-width varsa iptal */
            font-size: 10px !important;
        }

        .main-slider img {
            height: 395px;
            object-fit: cover;
        }

        .sdw {
            display: none !important;
        }


        .gp-icon-link {
            width: 35px;
            height: 35px;
            font-size: 18px;
        }

        .br-bash {
            width: 100%;
            /* border: 1px solid #465a05; */
            position: absolute;
            left: 0;
            right: 0;
            top: 55%;
            height: 1px;
        }

        .gp-side-menu-icons {
            display: flex !important;
            position: relative;
            /* top: 4px; */
            margin: 0;
            height: 100%;
        }


    }

    .gp-side-menu-icons {
        display: none;
    }


    .casinoGameListBlockHeader {

        position: unset !important;

    }

    .gp-chip-compact {

        display: none;
    }

    .mainslider {
        margin-top: 0 !important;
    }

    .row {
        margin: 0;
        padding: 0;
    }

    .gtp {
        padding-bottom: 5px;
    }


    @media (max-width: 767px) {
        .gp-header:before {
            content: "";
            width: 100%;
            border: 1px solid #344200;
            position: absolute;
            top: 56%;
            z-index: 999;
        }


    }


    /* Varsayılan aşağı mesafe (istersen değiştir) */
    :root {
        --altbar-down: 80px;
    }

    /* Sadece body.altbar-closed varken kapalı başlat */
    body.altbar-closed .mob-sb-mobil-navbar {
        transform: translateY(var(--altbar-down)) !important;
        transition: transform .35s ease;
        will-change: transform;
        touch-action: pan-y;
        backface-visibility: hidden;
    }

    img.flag-img {
        width: 30px;
        height: 25px;
        object-fit: contain;
    }


    div#rastgelemodal .modal-header {
        background: transparent;
        border: none;
    }

    p.randomGameName.rastgeleload span {

    }

    div#rastgelemodal .modal-content {
        background: #202900 !important;
        box-shadow: 0 1px 6px #86a713 !important;
    }

    div#rastgelemodal .modal-footer {

        border: none !important;
    }

    p.randomGameName.rastgeleload {

        height: 30px !important;
        font-size: 19px;
    }

    p.randomGameName {

        margin-top: 0 !important;

    }


    p.randomGameProvider.rastgeleload {
        height: 30px !important;

    }

    .gp-nav .container-fluid {
        padding: 0;
    }

    a:focus,
    a:focus-visible,
    a:active {
        outline: none !important;
        box-shadow: none !important;
        text-decoration: none !important;
    
    }
    
    
    .mainslider {
    margin-bottom: 30px;
    margin-top: 17px !important;
}


.casinoProviderRow {
    height: 42px !important;

}

.casinoProviderBlockTitle, .casinoGameListTitle {

 margin-top: 0 !important;

}