@font-face {
    font-family: Battambang;
    src: url(/font/Battambang-Regular.ttf);
}
body {
    background: #0b0b0b;
    color: #fff;
    font-family: Battambang, sans-serif;
}
.custom-primary {
    background: #02522e;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* TOP HEADER */
.top-header {
    padding: 10px 0;
}

.logo img{
   width: 150px;
}
.selectedImg{
    background: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
}
.selectedImg:hover{
    background-image: linear-gradient(to bottom, #ffe254, #fb0);
}
.lang-img-logo{
    width: 30px;
    height: 30px;
}


.notice {
    position: relative;
    color: #fff;
    padding: 0px;
    font-size: 12px;
    height: 30px;
}
.marquee {
    position: relative;
}
.marquee img {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0px;
    left: 0px;
}
.ticker {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    padding: 5px 10px;
    margin: 0 auto;
}
.news {
    width: 100%;
    padding: 0px 0 0;
}
.marquee p {
    margin-right: 41px;
    display: inline;
}
/* NAVBAR */
.casino-navbar {
    background: linear-gradient(to right, #0c3b2e, #0f5c3c);
}

.casino-navbar .nav-link {
    color: #fff;
    font-size: 20px;
}

.casino-navbar .nav-link:hover {
    color: #2cff00;
}
.btn-login {
    background-image: linear-gradient(to bottom, #ffe254, #fb0);
    color: #111;
    border-radius: 10px;
}
.btn-register {
    background-image: linear-gradient(to bottom, #00974e, #006e39);
    color: #fff;
    border-radius: 10px;
}
/* DROPDOWN */
.casino-dropdown {
    background: #111;
    border-radius: 12px;
    border: none;
}

.casino-dropdown .dropdown-item {
    color: #fff;
    font-size: 13px;
}

.casino-dropdown .dropdown-item:hover {
    background: #1e1e1e;
    color: #2cff00;
}

/* SUPPORT BUTTON */
.support-btn {
    background: #ffd600;
    color: #000;
    border-radius: 20px;
}

.swiper-button-next, .swiper-button-prev {
    color: #ffc10d !important;
}


.enter-game {
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
}

.enter-game span {
    color: #6f6;            /* bright green text */
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

.enter-game .underline {
    height: 6px;
    background: #6f6;       /* green underline */
    border-radius: 2px;
}


.grid-game {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.game-item {
    background-image: linear-gradient(to bottom, #008d49, rgb(26, 75, 26));
    border-radius: 20px;
    border: #00974e 5px solid;
    cursor: pointer;
}
.game-item:hover {
    background-image: linear-gradient(to bottom, #05c467, #01a455);
}
.game-item img{
    transition: transform 0.5s;
}
.game-item:hover img{
    transform: scale(1.05);
    transition: transform 0.5s;
}
.bg-provider-bank{
    background: #0a3428;
    margin: 20px 0;
}
.text-p-b{
    font-size: 17px;
    text-align: center;
    color: #6f6;
    margin-top: .5rem;
    border-bottom: 2px solid #6f6;
}

.footer-logo {
    width: 200px;
}
:root {
    --accent-color: #00ff88;
    --bg-dark: #0a0b0d;
    --bg-card: #16181d;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
}
 .casino-footer {
    background-color: var(--bg-dark);
    position: relative;
}

.provider-logo {
    font-size: 1.5rem;
    color: #444;
    transition: color 0.3s ease;
    filter: grayscale(1);
}

.provider-logo:hover {
    color: var(--text-muted);
    filter: grayscale(0);
}

.responsible-badge {
    border: 1px solid var(--border-color);
    padding: 5px 15px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}