@charset "utf-8";

/****************************************************************************************************************************************
casino-tab 시작
*****************************************************************************************************************************************/
ul.mo-balanceInfo {
    display: none;
}

/****************************************************************************************************************************************
카지노 슬라이드
*****************************************************************************************************************************************/
.casino {
    position: relative;
    height: 480px;
}

.swiper-container {
    width: 100%;
}

.casino .swiper-slide {
    height: 415px;
}

.casino-slide-1 {
    background: url('../Img/casino/casino_banner_1.jpg?11') center no-repeat;
    background-size: cover;
}

.casino-slide-2 {
    background: url('../Img/casino/casino_banner_2.jpg?11') center no-repeat;
    background-size: cover;
}

.casino-slide-3 {
    background: url('../Img/casino/casino_banner_3.jpg?11') center no-repeat;
    background-size: cover;
}


/****************************************************************************************************************************************
casino-tab 시작
*****************************************************************************************************************************************/
.casino-tab {
    position: relative;
    top: -64px;
    margin: 0 auto;
    width: 100%;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
}

/* 카지노 공지 */
.casino-notice {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 99;
    cursor: pointer;
}

.casino-notice.active {
    display: block;
}

/* 카지노 버튼 */
.casino-btns {
    position: relative;
    display: flex;
    flex-grow: 1;
    gap: 10px;
    justify-content: flex-start;
}

ul.tab-btns {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}

ul.tab-btns>li {
    position: relative;
    z-index: 11;
    padding: 10px 15px;
    width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #16bbf7;
    border-radius: 8px;
    box-shadow: 0 0 10px #16bbf7, 0 0 15px #16bbf7, 0 0 20px #16bbf7, inset 0 0 10px #16bbf7;
    transition: all 0.2s;
    overflow: hidden;
    cursor: pointer;
}

ul.tab-btns>li::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 20%;
    background: conic-gradient(#fff 200deg, transparent 200deg);
    box-shadow: inset 0 0 1px #fff;
    animation: rotate 5s linear infinite;
}

ul.tab-btns>li>span {
    position: absolute;
    width: 145px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #fff;
    background: #076f95;
    border-radius: 8px;
    box-shadow: inset 0 0 10px #16bbf7, inset 0 0 15px #16bbf7;
}

ul.mo-tab-btns,
ul.slot-tab-btns {
    display: none;
}

ul.slot-tabBtns>li {
    width: 200px;
}

ul.slot-tabBtns>li>span {
    width: 195px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(1turn);
    }
}

/* 보유금액 */
.casino-amount {
    position: relative;
    z-index: 11;
    padding: 0 30px;
    width: 250px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #fff;
    background: #1b222c;
    border-radius: 8px;
}

.casino-amount>h3 {
    font-size: 15px;
    color: #fff;
}

.amount-txt>span {
    font-size: 15px;
    color: #fff;
}

.amount-txt>span:first-child {
    margin-right: 3px;
    font-weight: bold;
    color: #16bbf7;
}

@media (hover: hover) and (pointer: fine) {
    ul.tab-btns>li:hover {
        background: #fff;
    }

    ul.tab-btns>li:hover::before {
        background: conic-gradient(transparent 10deg, transparent 200deg);
    }

    ul.tab-btns>li:hover>span {
        font-weight: bold;
        background: #0c98cb;
        box-shadow: inset 0 0 10px #fff;
        transition: all .2s;
    }
}

/****************************************************************************************************************************************
casino-game 시작
*****************************************************************************************************************************************/
.casino-game {
    position: relative;
    margin: 44px auto 30px auto;
    padding: 0 20px;
    width: 100%;
}

ul.casino-list {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
}

ul.casino-list>li {
    position: relative;
    width: 100%;
    border: 1px solid #6996af;
    filter: brightness(.6);
    transition: all .4s;
    cursor: pointer;
    overflow: hidden;
}

ul.casino-list>li>img {
    width: 100%;
    transition: all .4s;
}

@media (hover: hover) and (pointer: fine) {
    ul.casino-list>li:hover {
        border: 1px solid #6996af;
        filter: brightness(1);
    }

    ul.casino-list>li:hover>img {
        transform: scale(1.1);
    }
}

/****************************************************************************************************************************************
slot-banner 시작
*****************************************************************************************************************************************/
.slot-banner {
    position: relative;
    margin-top: 129px;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-bg-wrap {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
}

.banner-bg {
    position: relative;
    display: flex;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
}

.banner-bg>img {
    display: none;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.banner-bg>img.active {
    display: block;
}

.banner-img {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
}

.banner-img>img {
    display: none;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-img>img.active {
    display: block;
}

/* banner-item */
.banner-item {
    position: absolute;
    z-index: 3;
    inset: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1600px;
    height: 100%;
}

/* banner-top */
.banner-top {
    margin: 0 20px;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slot-logo {
    position: relative;
    z-index: 1;
    margin: 0;
}

.slot-logo>img {
    display: none;
    width: 234px;
    height: 91px;
    object-fit: contain;
}

.slot-logo>img.active {
    display: block;
}

ul.money-held {
    position: relative;
    margin: 20px 0 0 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

ul.money-held>li {
    position: relative;
    margin: 0;
    padding: 0;
    width: 200px;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
}

ul.money-held>li>img {
    width: 100%;
}

ul.money-held>li>.money-txt {
    position: absolute;
    top: 50%;
    left: 65px;
    width: 100%;
    font-size: 12px;
    color: #fff;
}

/* banner-bottom */
.banner-bottom {
    position: relative;
    margin: -60px 20px 0;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-play {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
}

/* play-img */
.play-img {
    position: relative;
    width: 100px;
    height: 100px;
    border: 2px solid #000;
    border-radius: 5px;
}

.play-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.play-img>.play-button {
    position: absolute;
    bottom: -15px;
    left: 80px;
    width: 32px;
    cursor: pointer;
}

/* paly-tit */
.paly-tit {
    margin-top: 5px;
}

.paly-tit>.slot-tlt {
    font-size: 18px;
    letter-spacing: 1px;
    color: #aeaeae;
    text-transform: uppercase;
}

.paly-tit>.slot-name {
    margin-bottom: 8px;
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 8px #16bdf9;
    text-transform: uppercase;
}

.paly-tit>.slot-txt-1 {
    margin: -4px 0 0 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 2px #16bdf9;
    text-transform: uppercase;
}

.paly-tit>.slot-txt-2 {
    font-size: 16px;
    color: #fff;
    text-shadow: 0 0 8px #16bdf9;
    text-transform: capitalize;
}

/* banner-jackpot */
.banner-jackpot {
    position: relative;
    margin-top: -15px;
}

.banner-jackpot>img {
    width: clamp(450px, 10vw, 500px);
}

.jackpot-count {
    position: absolute;
    top: 48%;
    left: 48%;
    z-index: 1;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.jackpot-count>div {
    font-size: 36px;
    color: #fff;
    text-shadow: #ff2a00 0 0 5px;
    letter-spacing: -1px;
}

@media (hover: hover) and (pointer: fine) {
    .play-img>.play-button:hover {
        filter: brightness(120%);
    }
}

/****************************************************************************************************************************************
slot-search 시작
*****************************************************************************************************************************************/
.slot-search {
    position: relative;
    margin-top: 10px;
    padding: 10px 30px;
    width: 100%;
}

.search-box {
    margin: 0;
    padding: 0 5px 0 0;
    width: 280px;
    height: 44px;
    display: flex;
    align-items: center;
    background: #0b0e18;
    border-radius: 5px;
    box-shadow: 0 0 8px 5px #16bbf7;
    overflow: hidden;
}

.search-box>input {
    padding: 0 10px;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #16bbf7;
    background: #000;
}

.search-box>input:focus {
    outline: none;
}

.search-box>input::placeholder {
    color: #757575;
}

.search-box>img {
    width: 27px;
    cursor: pointer;
    transition: all .3s;
}

/****************************************************************************************************************************************
slot-filter 시작
*****************************************************************************************************************************************/
.slot-filter {
    position: relative;
    margin: 20px auto;
    padding: 20px 30px 30px 30px;
    width: 100%;
}

ul.filter-list {
    position: relative;
    margin: 0;
    padding: 0;
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

ul.filter-list>li {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

ul.filter-list>li>.selector {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: #45515d;
    border-top: 2px solid #6a7680;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

ul.filter-list>li>.filter-tit {
    font-size: 11px;
    color: #757575;
    text-transform: uppercase;
    transition: all .3s;
}

ul.filter-list>li.active>.selector {
    background: #fff;
    border: none;
    box-shadow: 0 0 8px 5px #16bbf7;
}

ul.filter-list>li.active>.filter-tit {
    color: #16bbf7;
}

/****************************************************************************************************************************************
SlotGamesList시작
*****************************************************************************************************************************************/
.SlotGamesList {
    position: relative;
    margin: 20px auto 30px auto;
    padding: 0 30px;
    width: 100%;
}

.slotList-con {
    display: none;
    position: relative;
    margin: 0 auto;
    padding: 0;
}

.slotList-con.active {
    display: block;
}

ul.slot-list {
    position: relative;
    display: grid;
    grid-template-columns: 19% 19% 19% 19% 19%;
    gap: 17px;
    place-items: center;
}

ul.slot-list>li {
    position: relative;
    z-index: 1;
    width: 100%;
    filter: brightness(0.6);
    transition: all 0.4s;
    cursor: pointer;
    overflow: hidden;
}

ul.slot-list>li>img {
    width: 100%;
    transition: all 0.4s;
}

ul.slot-list>li>.slot-tit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
    background: rgba(8, 9, 14, .467);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.mo-slotGameList {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    ul.slot-list>li:hover {
        transform: scale(1.2);
        z-index: 10;
        transition: all .1s;
        box-shadow: 0 0 50px #000;
        filter: brightness(1);
    }

    ul.slot-list>li:hover>.slot-tit {
        font-size: 14px;
        color: #fff;
    }
}


/****************************************************************************************************************************************
미디어쿼리문
*****************************************************************************************************************************************/
@media (max-width: 800px) {

    /* mo-balanceInfo */
    ul.mo-balanceInfo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 5px 0;
        width: 100%;
    }

    ul.mo-balanceInfo>li {
        width: calc(100% / 3);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        color: #fff;
    }

    ul.mo-balanceInfo>li>p {
        font-size: 12px;
        color: #16bdf9;
    }

    /* 카지노 슬라이드 */
    .casino {
        height: 230px;
    }

    .casino .swiper-slide {
        height: 200px;
    }

    .casino .swiper-container-horizontal>.swiper-pagination-bullets,
    .casino .swiper-pagination-custom,
    .casino .swiper-pagination-fraction {
        bottom: 0 !important;
    }

    .casino .swiper-pagination-bullet {
        margin: 0 3px !important;
        width: 12px;
        height: 12px;
    }

    .casino .swiper-pagination-bullet-active {
        width: 23px;
        height: 12px;
    }

    .casino-notice,
    .casino-notice.active,
    .casino-tab,
    .casino-amount {
        display: none;
    }

    ul.mo-tab-btns,
    ul.slot-tab-btns {
        display: flex;
    }

    ul.tab-btns {
        justify-content: center;
        padding: 10px 0;
        width: 100%;
    }

    ul.tab-btns>li {
        width: 140px;
        height: 40px;
        border-radius: 3px;
    }

    ul.tab-btns>li>span {
        width: 135px;
        height: 35px;
        border-radius: 3px;
    }

    .casino-game {
        margin: 10px 0 0 0;
        padding: 0 10px;
    }

    ul.casino-list {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    ul.casino-list>li {
        width: calc(100% / 3 - 5px);
    }

    /* 슬롯 */
    .slot-balanceInfo {
        position: sticky;
        top: 50px;
        z-index: 9;
        background: #0b0e18;
    }

    .slot-banner,
    .SlotGamesList,
    .slot-filter {
        display: none;
    }

    .slot-search {
        z-index: 9;
        margin-top: 50px;
        padding: 5px 5px;
        background: #0b0e18;
    }

    .search-box {
        width: 100%;
        background: #0e0c1a;
        border: 1px #154150 solid;
        box-shadow: none;
    }

    .search-box>img {
        width: 20px;
    }

    ul.slot-tab-btns {
        position: sticky;
        top: 148px;
        z-index: 9;
        background: #0b0e18;
    }

    .mo-slotGameList {
        display: block;
        position: relative;
        margin: 10px auto;
        padding: 0 10px;
        width: 100%;
    }

    ul.slot-choice {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    ul.slot-choice>li {
        width: calc(100% / 3 - 10px);
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #154150;
        border: 1px solid #16bbf7;
        box-shadow: inset 0 0 80px rgba(0, 0, 0, .8);
        cursor: pointer;
    }

    ul.slot-choice>li>img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

}

/* 미디어쿼리문 끝 */

@media (max-width: 600px) {
    ul.casino-list>li {
        width: calc(100% / 2 - 5px);
    }
}

/* 미디어쿼리문 끝 */