@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Outfit:300,400,700,900');

:root {
    --bg-color: #006814;
    --bg-color1: #152b2b;
    --bg-color2: #0e1b1e;
    --bg-color3: #023300;
    --text-color: #fff;
    --text-color1: #00f7a5;
    --text-color2: #8bfb32;
    --main-color: #07a651;
    --text-color3: #00f29a;
    --text-color4: #000;
    --box-shadow: 0 5px 15px rgba(47, 91, 242, 0.3);
    --btn-hover: linear-gradient(180deg, #35383e, #1c2527);
    --border-color: #404246;
    --border-color2: #007a53;
    --menu-bar: linear-gradient(45deg, #222d2e, #1b1c20);
    --btn-color: #26272a;
    --btn-gradient: linear-gradient(180deg, #00f895, #005f49);
    --linear-border: linear-gradient(#121722, #121722) padding-box, linear-gradient(90deg, rgba(0, 208, 132, .8), rgba(0, 102, 255, .8)) border-box;
}

body {
    font-family: "Outfit", sans-serif;
    line-height: 1.2;
    font-size: 15px;
    color: var(--text-color);
    background: url('../images/index/bg.webp') no-repeat center center/cover;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--text-color);
}

a:hover,
a:focus,
button:focus,
button:hover {
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
    color: var(--text-color);
    width: 100%;
}

::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color2);
    border-radius: 5px;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-color1);
}

.m-show {
    display: none;
}

/* header */
.t-header {
    background: url('../images/header/bg.webp') no-repeat center center/cover;
    /* border-bottom: 2px solid var(--bg-color1); */
    /* position: fixed; */
    width: 100%;
    top: 0;
    z-index: 3;
}

.top-header {
    padding: 15px 0 0px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
}

.top-header2 .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1500px;
}

.top-header2 {
    transition: background 0.3s ease;
    width: 100%;
    z-index: 9999;
}

.top-header2.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #162427;
    box-shadow: 0 0 15px 0 rgb(4 144 146);
}

.top-header2.sticky .menu-row{
   margin: 10px 0px;
}

.nav-right {
    gap: 10px;
}

.header-wrap {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
}

.head_navbar.scrolled {
    background-color: #162427;
    box-shadow: 0 0 15px 0 rgb(4 144 146);
    padding: 0px;
}

/* ==========================
   HOT GAMES
========================== */
.hot-games-section {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 14px;
    background:
        linear-gradient(#151922, #151922) padding-box,
        linear-gradient(90deg, #00c58a, #255cff) border-box;
    overflow: hidden;
}

.hot-title {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 150px;

    color: #fff;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.hot-title i {
    color: #ff8a00;
    font-size: 22px;
}

.hotGameSwiper {
    /* flex: 1; */
    /* overflow: hidden; */
}

.hotGameSwiper .swiper-slide {
    /* height: 88px; */
}

.hotGameSwiper .swiper-slide img {
    border-radius: 11px;
    display: block;
}

.hot-nav {
    width: 26px;
    height: 26px;

    border: 0;
    border-radius: 50%;

    background: #8b8f96;
    color: #202329;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    flex-shrink: 0;
}

.hot-nav i {
    font-size: 14px;
}

.hot-nav:hover {
    background: #fff;
}

.hot-title img {
    width: 30px;
    animation: fireFlicker 1s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes fireFlicker {
    0%, 100% {
        transform: scale(1) rotate(-2deg);
        filter: brightness(1);
    }
    25% {
        transform: scale(1.1) rotate(2deg);
        filter: brightness(1.2);
    }
    50% {
        transform: scale(0.95) rotate(-1deg);
        filter: brightness(0.9);
    }
    75% {
        transform: scale(1.05) rotate(1deg);
        filter: brightness(1.1);
    }
}

/* ==========================
   MENU
========================== */

.menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    width: 235px;
    margin-right: 15px;
}

.logo-area img {
    max-width: 100%;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: var(--linear-border);
    box-shadow:
        0 0 15px rgba(0, 208, 132, .08),
        0 0 20px rgba(0, 102, 255, .08);
    margin-right: 15px;
}

.menu-item span {
    font-size: 11px;
}

.menu-item:hover {
    background: #16222f;
}

.menu-item.active span {
    color: #00ffb3;
}

.mobile-menu-btn {
    display: none;
}

/* ==========================
   RIGHT SIDE
========================== */

.right-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: #1b2430;
    color: #fff;
    cursor: pointer;
}

.lang-btn img {
    width: 22px;
}

.btn-login,
.btn-signup {
    min-width: 120px;
    height: 55px;
    border-radius: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.btn-login {
    color: var(--text-color1);
    border: 2px solid var(--border-color2);
    background: transparent;
}

.btn-signup {
    color: #fff;
    background: var(--btn-gradient);
}

/* end header */

/* index page */
.t-body {
    padding-top: 5px;
    margin: 0 auto;
}

.t-body .container {
    max-width: 1500px;
}

.index-wrap {
    display: grid;
    grid-template-columns: 18% 55% 25%;
    padding: 10px 0px 30px;
    gap: 15px;
}

.index-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.side-menu-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    /* min-height: 92px; */
    padding: 6px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid transparent;
}

.side-menu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .08),
            transparent);

    pointer-events: none;
}

.menu-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

.menu-content {
    flex: 1;
    margin: 5px;
}

.menu-content h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    /* white-space: nowrap; */
}

.menu-content p {
    color: #9ea3ad;
    font-size: 12px;
    margin: 3px 0 12px;
}

.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 34px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid transparent;
}

/* Individual Themes */

.promo {
    background: linear-gradient(150deg, #1c5244 10%, #1e3d37 35%, #131416 100%) padding-box, linear-gradient(90deg, rgb(45 125 103), rgb(33 35 38)) border-box;
}

.green-btn {
    background: linear-gradient(150deg, #1f2024 10%, #1f1f23 35%, #131416 100%) padding-box, linear-gradient(90deg, rgb(1 253 147), rgb(12 66 53)) border-box;
    color: #00e695;
}

.mission {
    background: linear-gradient(150deg, #350e65 10%, #241c33 35%, #131416 100%) padding-box, linear-gradient(90deg, rgb(77 33 142), rgb(33 35 38)) border-box;
}

.purple-btn {
    background: linear-gradient(150deg, #1f2024 10%, #1f1f23 35%, #131416 100%) padding-box, linear-gradient(90deg, rgb(136 90 226), rgb(66 28 135)) border-box;
    color: #8246ff;
}

.fortune {
    background: linear-gradient(150deg, #324a93 10%, #2d365c 35%, #131416 100%) padding-box, linear-gradient(90deg, rgb(71 102 182), rgb(33 35 38)) border-box;
}

.blue-btn {
    background: linear-gradient(150deg, #1f2024 10%, #1f1f23 35%, #131416 100%) padding-box, linear-gradient(90deg, rgb(102 136 238), rgb(30 45 92)) border-box;
    color: #2e8eff;
}

.vip {
    background: linear-gradient(150deg, #511c1e 10%, #401e1f 35%, #131416 100%) padding-box, linear-gradient(90deg, rgb(133 44 45), rgb(33 35 38)) border-box;
}

.red-btn {
    background: linear-gradient(150deg, #1f2024 10%, #1f1f23 35%, #131416 100%) padding-box, linear-gradient(90deg, rgb(226 55 85), rgb(84 19 30)) border-box;
    color: #ff4a4a;
}

.referral {
    background: linear-gradient(150deg, #6c3d0f 10%, #4d3217 35%, #131416 100%) padding-box, linear-gradient(90deg, rgb(149 80 36), rgb(33 35 38)) border-box;
}

.orange-btn {
    background: linear-gradient(150deg, #1f2024 10%, #1f1f23 35%, #131416 100%) padding-box, linear-gradient(90deg, rgb(245 122 64), rgb(88 40 17)) border-box;
    color: #ff8c00;
}

.side-menu-card:hover {
    transform: translateY(-2px);
    transition: .25s;
}

.menu-btn:hover {
    color: #fff;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 5px 5px;
    min-width: 90px;
    border-radius: 10px;
    background: url('../images/menu/side-btn.webp') no-repeat center center/100% 100%;
    border: 1px solid transparent;
}

.menu-item img {
    width: 30px;
}

.menu-item span {
    font-size: 12px;
    color: var(--text-color);
    font-family: "apexmk2", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

.menu-item.active,
.menu-item:hover {
    /* background: linear-gradient(to right, #002fff, #6f89ff);
    box-shadow: inset 0px 0px 1px rgba(255, 255, 45, 0.7), inset 0px 0px 2px 2px rgba(255, 255, 45, 0.6);
    border-left: 2px solid #ffd51c;
    border-bottom: 2px solid #e99400; */
    color: var(--main-color);
    cursor: pointer;
    background: var(--btn-hover);
    border: 1px solid var(--border-color);
}

.menu-item.active span,
.menu-item:hover span {
    color: var(--text-color1);
}

.menu-item.active img,
.menu-item:hover img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(35%) saturate(5164%) hue-rotate(111deg) brightness(100%) contrast(101%);
}

.menu-img-h {
    display: none;
}

.menu-item:hover .menu-img-h,
.menu-item.active .menu-img-h {
    display: block;
}

.menu-item:hover .menu-img,
.menu-item.active .menu-img {
    display: none;
}

.accordion.side-event-menu,
.side-event-menu .accordion-item {
    background: transparent;
    border: none;
    color: var(--text-color);
    position: relative;
    width: 100px;
}

.side-event-menu .accordion-button {
    background: url('../images/menu/side-btn.webp') no-repeat center center/100% 100%;
    color: var(--main-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
    width: 100%;
    font-size: 12px;
    color: var(--text-color);
    font-family: "apexmk2", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    border: none;
    box-shadow: none !important;
}

.side-event-menu .accordion-button:hover,
.side-event-menu .accordion-button:focus {
    background: url('../images/menu/side-btn-h.webp') no-repeat center center/100% 100%;
    color: var(--main-color);
}

.side-event-menu .accordion-collapse {
    position: absolute;
    background: var(--bg-color2);
    border: 1px solid var(--main-color2);
    border-radius: 5px;
    min-width: 120px;
    z-index: 10;
    left: 110%;
    top: 0;
}

.side-event-menu .accordion-body {
    padding: 5px 0;
}

.side-event-menu .side-event-item {
    display: block;
    padding: 8px 15px;
    color: var(--main-color2);
    transition: all 0.3s ease;
}

.side-event-menu .side-event-item:hover {
    color: var(--text-color);
    background: var(--main-color);
}

.side-event-menu .accordion-button:hover,
.side-event-menu .accordion-button:focus {
    background: url('../images/menu/side-btn-h.webp') no-repeat center center/100% 100%;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

.side-event-menu img {
    width: 40px;
}

.side-event-menu .accordion-button::after {
    content: none;
}

.side-event-menu .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.banner-arrow {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 0px;
}

.banner-arrow-prev,
.banner-arrow-next {
    max-width: 40px;
    color: var(--text-color);
    background: none;
    border: none;
    border-radius: 5px;
    opacity: 0.7;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-arrow-prev:hover,
.banner-arrow-next:hover {
    opacity: 1;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.slider-claim-btn {
    position: absolute;
    bottom: 50px;
    left: 10px;
    font-weight: bold;
    padding: 5px 30px;
    color: var(--text-color);
    background: transparent;
    border: 1px solid #737373;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: "apexmk2", sans-serif;
}

.slider-claim-btn:hover {
    filter: brightness(1.1);
}

.announce-bar {
    background: #64aa9796;
    padding: 5px;
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    width: 100%;
    bottom: 0px;
}

.announce-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.announce-text {
    display: inline-block;
    white-space: nowrap;
    animation: slideText 20s linear infinite;
    padding-left: 100%;
    color: var(--text-color);
}

@keyframes slideText {
    0% {
        transform: translateX(0);
    }

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

.ann-icon {
    padding-right: 3%;
}

.ann-icon img {
    max-width: 30px;
}

.ann-bar {
    overflow: hidden;
    width: 100%;
}

.index-games {
    background: linear-gradient(150deg, #16171b 10%, #16171b 35%, #16171b 100%) padding-box, linear-gradient(90deg, #132b4d 10%, #7b6acf 35%, #282a4e 100%) border-box;
    border: 1px solid transparent;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.games-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.games-title img {
    max-width: 25px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(35%) saturate(5164%) hue-rotate(111deg) brightness(100%) contrast(101%);
}

.games-title span {
    color: var(--text-color);
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.game-card {
    display: block;
    position: relative;
}

.game-card img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.frame-img {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.game-play {
    background-color: rgba(27, 34, 51, .8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    z-index: 1;
    padding: 19px 10px 13px;
    transition: opacity .1s ease-in-out;
    -webkit-transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
    transform: translateZ(1px);
    border-radius: 5px;
}

.game-play-btn {
    width: calc(35% + 15px);
    min-width: 42px;
    background: var(--btn-gradient);
    border-radius: 50%;
    opacity: 0;
    transform: scale(.9);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color2);
}

.game-card:hover .game-play-btn,
.game-card:hover .game-play {
    opacity: 1;
}

.game-play-btn:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.game-play-btn i {
    color: var(--text-color);
    font-size: 20px;
}

.more-games {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(to bottom, #1a1a1a, #414141);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    z-index: 2;
}

.more-games:hover {
    filter: brightness(1.1);
}

.more-games span {
    color: var(--text-color);
    font-weight: bold;
    font-family: "apexmk2", sans-serif;
    text-transform: uppercase;
    z-index: 3;
}

.more-games i {
    color: var(--text-color2);
}

.more-games .more-arrow {
    max-width: 25px;
}

.fast-wrap {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
}

.fast-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.index-right {
    margin-left: 10px;
}

.index-jackpot {
    position: relative;
    width: 100%;
}

.index-jackpot img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.jackpot-amount {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-shadow:
        0 0 10px rgba(255, 255, 255, .3),
        0 0 20px rgba(0, 170, 255, .3);
    font-family: sans-serif;
}

.index-right-wrap {
    border-radius: 14px;
    padding: 14px;
    background: linear-gradient(150deg, #16171b 10%, #16171b 35%, #16171b 100%) padding-box, linear-gradient(90deg, #132b4d 10%, #7b6acf 35%, #282a4e 100%) border-box;
    border: 1px solid rgba(0, 255, 160, .25);
    overflow: hidden;
}

.index-promo-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.index-promo-title i {
    color: var(--text-color3);
}

/* Check In */
.index-check-in {
    display: flex;
    gap: 8px;
}

.check-in-grid {
    width: calc(100% - 50px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.day-7 {
    width: 70px;
    height: 215px !important;
    flex-shrink: 0;
    overflow: hidden;
    background: url(../images/index/day7.webp) no-repeat top center;
    background-size: 100% 100%;
}

.check-in-wrap {
    height: 105px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 8px 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.check-in-wrap h5 {
    color: #00f29a;
    font-size: 12px;
    margin: 0 0 8px;
}

.check-in-wrap img {
    width: 32px;
    object-fit: contain;
    animation: coinSpin 1.5s linear infinite;
    transform-style: preserve-3d;
}

@keyframes coinSpin {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.check-in-wrap p {
    color: #fff;
    font-size: 10px;
    margin: 8px 0 0;
}

.claimed {
    background: linear-gradient(180deg, #053f33, #096147);
}

.claim-icon {
    width: 30px;
    height: 30px;
    margin: auto;
    border-radius: 50%;
    background: #00f29a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10221f;
}

/* Tournament */
.tournament-card {
    min-height: 320px;
    background: url(../images/index/tournament.webp) no-repeat top center;
    background-size: 100% 100%;
}

.tournament-content {
    position: relative;
    height: 210px;
}

.tour-cup {
    position: absolute;
    right: -10px;
    top: 10px;
    width: 145px;
}

.tour-logo img {
    width: 100px;
    margin-top: 30px;
    margin-bottom: 10px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(69deg) brightness(103%) contrast(102%);
}

.prize-pool {
    position: absolute;
    left: 0;
    bottom: 65px;
    color: #fff;
}

.prize-pool span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

.prize-pool strong {
    font-size: 26px;
    letter-spacing: 1px;
    font-family: sans-serif;
}

.tour-countdown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -45px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.countdown-item {
    height: 100px;
    border-radius: 7px;
    background: rgba(14, 21, 25, .75);
    border: 1px solid rgb(14 96 98);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-item strong {
    font-size: 32px;
    font-weight: 500;
}

.countdown-item span {
    font-size: 13px;
    color: #b7b7b7;
}

/* end index page */

/* footer */

.t-footer {
    margin-bottom: 20px;
}

.t-footer .container {
    max-width: 1500px;
}

.footer-box {
    padding: 28px 50px 5px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: linear-gradient(150deg, #16171b 10%, #16171b 35%, #16171b 100%) padding-box, linear-gradient(90deg, #132b4d 10%, #7b6acf 35%, #282a4e 100%) border-box;
    color: #fff;
}

.site-footer {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.4fr 2.4fr 2fr;
    gap: 20px;
}

.footer-col {
    border-right: 1px solid rgba(255, 255, 255, .08);
    min-height: 105px;
}

.footer-col:last-of-type {
    border-right: 0;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 6px;
    /* font-size: 12px; */
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-title img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-title.green {
    color: #00e695;
}

.footer-title.purple {
    color: #a65cff;
}

.footer-title.yellow {
    color: #c58908;
}

.footer-title.cyan {
    color: #1daf9c;
}

.footer-title.blue {
    color: #1c95ff;
}

.footer-col a {
    display: block;
    color: #9ca0aa;
    /* font-size: 12px; */
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #fff;
}

.social-list,
.product-list,
.license-list {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.social-list img {
    width: 35px;
    /* height: 22px; */
    /* object-fit: contain; */
}

.product-list img {
    max-height: 30px;
    /* object-fit: contain; */
}

.license-list img {
    max-height: 45px;
    object-fit: contain;
}

.footer-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;

    text-align: center;
    color: #8f939d;
    font-size: 12px;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.copyright-text {
    color: var(--text-color);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 25px;
    margin-bottom: 10px;
}

.responsible-gaming {
    display: flex;
    align-items: center;
    gap: 10px;
}

.responsible-gaming img {
    max-width: 130px;
}

.float-action {
    display: none;
}

/* end footer */

/* mobile menu bottom */
.menu-btm {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 12px;
    background: #11151c;
    display: none;
}

.menu-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    align-items: end;
    padding: 5px 8px 8px;
    border: 1px solid transparent;
    border-radius: 14px 14px 0 0;
    background:
        linear-gradient(#151922, #151922) padding-box,
        linear-gradient(90deg, #00b17c, #245dff) border-box;
}

.menu-wrapper a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px;
    text-decoration: none;
    color: #d8d8d8;
    transition: .25s;
    gap: 3px;
}

.menu-wrapper a img {
    display: block;
    max-width: 30px;
}

.menu-wrapper a span {
    font-size: clamp(10px, 2.8vw, 13px);
    white-space: nowrap;
}

.menu-wrapper a.active {
    color: var(--text-color1);
    border-radius: 12px 12px 0 0;
    background: radial-gradient(circle at top, rgb(8 47 40), transparent 70%), linear-gradient(#0a312b, #151921);
    transform: translateY(0px);
    /* box-shadow:0 0 18px rgba(0,255,170,.18); */
    padding: 5px;
}

.menu-wrapper a.active img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(35%) saturate(5164%) hue-rotate(111deg) brightness(100%) contrast(101%);
}

/* end mobile menu bottom */


/* Login Modal */
.modal-login .modal-content {
    background: var(--linear-border);
    border-radius: 15px;
}

.modal-login .btn-close {
    position: absolute;
    left: 15px;
    top: 13px;
    z-index: 2;
    background: none;
    border: none;
    color: var(--text-color);
    opacity: 1;
    font-size: 20px;
    width: 30px;
}

.modal-login .btn-close:hover {
    color: var(--main-color1);
}

.modal-login .login-header {
    position: relative;
    text-align: center;
    padding: 15px 0px 10px;
}

.login-header h2 {
    color: var(--text-color);
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "apexmk2", sans-serif;
}

.modal-login .modal-body {
    max-height: 700px;
    overflow-y: auto;
    color: var(--text-color);
}

.login-banner {
    position: relative;
    margin-bottom: 20px;
}

.login-banner img {
    width: 100%;
    border-radius: 10px;
}

.modal-login input::placeholder {
    color: var(--text-color);
}

.modal-login .input-group {
    position: relative;
}

.modal-login .input-group .form-control {
    background: linear-gradient(to bottom, #031016, #17262a);
    border: 1px solid var(--bg-color1);
    color: var(--text-color);
    border-radius: 5px !important;
    padding: 10px 15px;
}

.modal-login .input-group .form-control:focus {
    box-shadow: none;
    border-color: var(--main-color);
    z-index: 0;
}

.login-form .form-control:focus {
    box-shadow: none;
    border-color: var(--main-color);
}

.btn-password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-color1);
    font-size: 16px;
    padding: 5px;
    z-index: 5;
    pointer-events: auto;
}

.btn-password-toggle:hover {
    color: var(--main-color1);
}

.verify-code {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-color);
    color: #000;
    padding: 5px 10px;
    font-size: 14px;
}

.login-modal-btn {
    width: 100%;
    color: var(--text-color);
    background: var(--btn-gradient);
    /* border: 1px solid transparent; */
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px 0;
    display: block;
    text-align: center;
}

.login-modal-btn:hover {
    filter: brightness(1.1);
}

.login-footer {
    text-align: center;
    margin: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-pass {
    color: var(--text-color1);
    font-size: 14px;
    display: block;
    text-decoration: underline;
}

.forgot-pass:hover {
    color: var(--main-color1);
}

.reg-text {
    color: var(--text-color1);
    font-size: 14px;
    text-align: right;
}

.reg-text a {
    color: var(--text-color);
    text-decoration: underline;
}

.reg-text a:hover {
    color: var(--text-color);
}

.acc-activate {
    display: block;
    color: var(--text-color1);
    padding: 10px;
    text-align: center;
}

.acc-activate:hover {
    color: var(--main-color1);
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-login-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to bottom, #1d1d1d, #636363);
    color: var(--text-color);
    padding: 8px 15px;
    border: 1px solid #737373;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.social-login-btn:hover {
    border-color: var(--main-color1);
    color: var(--main-color1);
}

.social-login-btn img {
    width: 20px;
    height: 20px;
}

.login-social {
    text-align: center;
    padding-top: 10px;
}

.login-social h3 {
    color: var(--text-color1);
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    white-space: nowrap;
}

.login-social h3:before,
.login-social h3:after {
    content: '';
    height: 1px;
    width: 100%;
    background: var(--text-color1);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-hover);
    border: 1px solid #737373;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    width: 109px;
}

.social-btn:hover {
    filter: brightness(1.1);
}

.social-btn i {
    font-size: 16px;
}

/* End Login Modal */


/* register modal */
.phone-group {
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #031016, #17262a);
    border: 1px solid var(--bg-color1);
    border-radius: 5px;
    padding: 0px 15px;
    color: var(--text-color);
    width: 100%;
    position: relative;
}

.phone-group .prefix {
    color: var(--text-color);
    font-size: 14px;
    background: transparent;
    border: none;
    appearance: none;
    padding-right: 25px;
    cursor: pointer;
    min-width: 65px;
    width: 20%;
}

.phone-group::after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--text-color);
    position: absolute;
    left: calc(20% - 20px);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.phone-group .prefix:focus {
    outline: none;
}

.phone-group .prefix option {
    background: var(--bg-color1);
    color: var(--text-color);
}

.phone-group .divider {
    color: var(--main-color2);
    margin: 0 10px;
}

.phone-group .form-control {
    background: transparent;
    border: none;
    padding: 0;
    color: var(--text-color);
}

.phone-group .form-control:focus {
    box-shadow: none;
}

.phone-group:focus-within {
    border-color: var(--main-color);
}

.modal-login .phone-group .form-control {
    background: transparent;
    border: none;
}

.reg-modal-btn {
    width: 100%;
    color: var(--text-color);
    background: var(--btn-gradient);
    font-family: "apexmk2", sans-serif;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px 0;
    border: none;
}

.reg-modal-btn:hover {
    filter: brightness(1.1);
}

.reg-div {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.reg-div:before,
.reg-div:after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 100px);
    height: 1px;
    background: var(--text-color1);
}

.reg-div:before {
    left: 0;
}

.reg-div:after {
    right: 0;
}

.reg-div span {
    color: var(--text-color1);
    padding: 0 15px;
    font-size: 14px;
}

/* end register modal */

/* account activation modal */
.reg-otp {
    color: var(--text-color1);
}

.otp-field {
    display: flex;
    padding: 10px 0px;
    justify-content: space-between;
}

.otp-field input {
    width: 55px;
    font-size: 32px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 2px;
    border: 2px solid var(--border-color);
    background: var(--btn-hover);
    font-weight: bold;
    color: var(--text-color);
    outline: none;
    transition: all 0.1s;
}

.otp-field input:focus {
    border: 2px solid var(--main-color2);
    box-shadow: 0 0 2px 2px var(--main-color2);
}

.congrats-form {
    text-align: center;
    color: var(--text-color);
}

.congrats-form h5 {
    text-align: center;
    color: var(--text-color);
    font-weight: bold;
}

.congrats-form i {
    text-align: center;
    display: block;
    margin: 0px auto;
    font-size: 130px;
    color: var(--text-color1);
    margin-bottom: 10px;
}

/* end account activation modal */


/* pop out announcement */
.announcementpopupimg img {
    margin: auto;
    border-radius: 5px;
}

#announcementpopup .carousel-control-prev {
    left: -22px;
}

#announcementpopup .carousel-control-next {
    right: -22px;
}

.announcementmodal.modal {
    z-index: 999999;
}

.announcementmodal .modal-content {
    position: relative;
}

.announcementmodal .close {
    right: 0;
    bottom: -35px;
    color: #000000;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 48%;
    font-size: 27px;
    font-weight: 100;
    border: 2px solid #fff;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcementmodal.detectannouncementmodal02 .close {
    position: absolute;
    right: 55px;
    top: 20px;

}

.announcementmodal .modal-content {
    background: none;
}


.announcementmodal .modal-dialog {
    max-width: 500px;
}

.annou-pop {
    border-radius: 20px;
    background: var(--linear-border);
    border: 1px solid var(--main-color1);
    padding: 20px;
    color: var(--text-color);
    border: 1px solid transparent;
}

.annou-ttle {
    color: var(--text-color);
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 7px;
}

.annou-content {
    padding-top: 25px;
    font-size: 12px;
}

.announcementmodal .modal_close {
    z-index: 10;
    color: var(--text-color);
    opacity: 1;
}

.annou-content img {
    display: block;
    margin: 0px auto;
}

.annou-pop p {
    margin-top: 20px;
    margin-bottom: 0px;
    color: var(--text-color);
}

.round {
    position: relative;
    margin-right: 10px;
    height: 16px;
}

.round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    height: 16px;
    left: 0;
    position: absolute;
    top: 0;
    width: 16px;
    margin: 0px;
}

.round label:after {
    border: 2px solid var(--text-color);
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 1px;
    opacity: 0;
    position: absolute;
    top: 3px;
    transform: rotate(-45deg);
    width: 12px;
}

.round input[type="checkbox"] {
    visibility: hidden;
}

.round input[type="checkbox"]:checked+label {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.round input[type="checkbox"]:checked+label:after {
    opacity: 1;
}

.cls-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    font-size: 12px;
    color: #fff;
}

/* end pop out announcement */

.logo {
    height: 52px;
}

.lang-select .btn {
    color: var(--text-color);
    padding: 8px;
    background: var(--btn-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.lang-select img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.lang-select .dropdown-menu {
    background: var(--bg-color1);
}

.lang-select .dropdown-item {
    color: var(--text-color);
    padding: 8px 16px;
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
}

.lang-select .dropdown-item:hover {
    background: var(--bg-color1);
}

.lang-select .dropdown-item span {
    color: var(--text-color);
    background: var(--bg-color1);
    border: 1px solid var(--main-color);
    padding: 2px 5px;
    border-radius: 5px;
    margin-right: 5px;
    text-align: center;
}

.lang-select .dropdown-item:hover span {
    background: var(--main-color);
}

#index-slider img {
    border: 1px solid var(--border-color2);
    border-radius: 10px;
}

.slider-ann {
    position: relative;
}

.carousel-inner {
    border-radius: 10px;
}

.section {
    margin: 15px 0px;
}

.game-section {
    margin: 10px 0px 0px;
}

/* daily-modal */
.modal-congrat h5 {
    font-size: 38px;
    color: var(--text-color);
    font-weight: bold;
    text-align: center;
}

.congrat-text {
    text-align: center;
    font-size: 20px;
    color: var(--text-color);
}

.image-wrap img {
    display: block;
    margin: 0px auto;
    position: relative;
}

.color-text1 {
    font-weight: bold;
    color: var(--text-color1);
}

.img-wrap-top {
    position: absolute !important;
    bottom: -27px;
    left: 0;
    right: 0;
    margin: 0px auto;
}

img.img-wrap {
    height: 80%;
    margin-top: 20px;
}

.tokenredeem {
    display: block;
    margin: 0px auto;
    margin-top: 35px;
    background: #ed1d49;
    border: none;
    z-index: 10;
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 18px;
}

.token-pt {
    z-index: 10;
}

.image-wrap {
    height: 250px;
    position: relative;
}

.daily-wrap-in {
    background: var(--linear-border);
    border: 1px solid transparent;
    padding: 20px;
    border-radius: 20px;
}

.daily_modal .close {
    position: absolute;
    right: 30px;
    top: 35px;
    color: var(--text-color);
    opacity: 1;
    font-size: 47px;
    z-index: 2;
    background-color: transparent;
    border: 0;
}

.daily_modal .modal-body {
    background: none;
}

.daily_modal .modal-content {
    background: none;
    border: none;
}

/* end daily modal */

/* peoduct games */

.game-box {
    display: flex;
    align-items: center;
    gap: 5px;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.prod-mobile-menu {
    display: none;
    overflow: auto;
    color: var(--text-color);
    background: linear-gradient(to bottom, #031016, #17262a);
    border: 2px solid #1d721b;
    border-radius: 10px;
    margin-bottom: 10px;
}

.prod-mobile-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 5px;
    margin: 5px;
    font-size: 12px;
    white-space: nowrap;
    min-width: 70px;
    color: var(--text-color);
    font-family: "apexmk2", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

.prod-mobile-menu a:hover,
.prod-mobile-menu a.active {
    background: linear-gradient(to bottom, #00ff00, #d2f94b);
    color: var(--text-color1);
    border-radius: 10px;
}

.prod-mobile-menu a img {
    max-width: 30px;
}

.prod-mobile-menu a.active img {
    filter: none;
}

.prod-banner {
    width: 100%;
}

.prod-banner img {
    border-radius: 10px;
}

.games-title span {
    color: var(--text-color);
    font-weight: bold;
    border-radius: 10px;
    text-transform: uppercase;
}

.games-title i {
    color: var(--text-color3);
}

.slots-search {
    width: 30%;
    position: relative;
    color: #505050;
}

.slots-search input {
    width: 100%;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #505050;
    padding: 5px;
    font-size: 15px;
}

.slots-search input::placeholder {
    color: #505050;
}

.slots-search input:focus {
    outline: none;
}

.slots-search i {
    position: absolute;
    flex-shrink: 0;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #505050;
}

.game-section.slot-section {
    margin-top: 0px;
}

.prod-tab .nav-pills {
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.prod-tab .nav-pills .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    min-width: 100%;
    min-height: 50px;
    background: linear-gradient(160deg, #171a1f, #303b3a);
    border: 1px solid #163438;
}

.prov-img {
    display: block;
    max-width: 100%;
    max-height: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(46%) sepia(41%) saturate(3431%) hue-rotate(126deg) brightness(91%) contrast(93%);
}

.prod-tab .nav-pills .nav-link.active,
.prod-tab .nav-pills .nav-link:hover {
    background: linear-gradient(45deg, #095b45, #171a21);
    border: 1px solid var(--border-color2);
    color: #09a866;
}

.prod-tab .nav-pills .nav-link.active img,
.prod-tab .nav-pills .nav-link:hover img {
    filter: none;
}

.prod-tab .nav-pills .nav-link .prov-dual {
    display: block;
}

.prod-tab .nav-pills .nav-link .prov-img-h {
    display: none;
    max-width: 100%;
    max-height: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.prod-tab .nav-pills .nav-link.active .prov-img-h,
.prod-tab .nav-pills .nav-link:hover .prov-img-h {
    display: block;
}

.prod-tab .nav-pills .nav-link.active .prov-dual,
.prod-tab .nav-pills .nav-link:hover .prov-dual {
    display: none;
}

.prov-dual {
    filter: none;
}

.prod-tab {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-color);
}

.slot-section .index-games{
    min-height:630px;
    display:flex;
    flex-direction:column;
    margin-top: 20px;
}

.slot-pagination{
    margin-top:auto;
    margin-bottom:0;
    justify-content:center;
}

.slot-pagination ul {
    justify-content: center;
    padding-top: 15px;
}

.slot-pagination .page-link {
    color: var(--text-color);
    margin: 0px 5px;
    border-radius: 5px;
    background: transparent;
    border: none;
}

.mobile-game-filter {
  background: #11151c;
  border-radius: 10px;
}

.filter-row {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.filter-btn {
  flex: 1;
  padding: 9px 10px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: #171d25;
  color: #fff;
  font-size: 12px;
}

.filter-btn.active {
  background: linear-gradient(90deg, #ff3d3d, #531a1d);
  border: none;
}

.filter-btn.blue {
  color: #128cff;
  border-color: #0056b3;
}

.filter-btn.orange {
  color: #ff9b2f;
  border-color: #a45b13;
}

.provider-btn {
  width: 100%;
  padding: 10px 14px;

  border: 0;
  border-radius: 9px;

  background: linear-gradient(180deg, #252c35, #161b22);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.provider-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.provider-left img {
  max-width: 42px;
  height: auto;
  display: block;
}

.provider-left span {
  font-size: 12px;
  font-weight: 600;
}

.provider-count {
  color: #a9adb5;
  font-size: 12px;
  margin-left: auto;
  padding-right: 8px;
}

.provider-dropdown .dropdown-menu {
  background: #171d25;
  border: 1px solid rgba(255,255,255,.08);
}

.provider-dropdown .dropdown-item {
  color: #cfd3dc;
  font-size: 12px;
}

.provider-dropdown .dropdown-item:hover {
  background: #222b35;
  color: #fff;
}

.game-section .index-games {
    min-height: 340px;
}

.scrolled .hot-games-section {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.scrolled .menu-row {
    margin-top: 0px;
}

.top-header3.m-show {
    margin: 10px 0px;
}

.top-header2,
.t-header3 {
    transition: background 0.3s ease;
    width: 100%;
    z-index: 9999;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
}