



.live-casino-wrap {
    border-bottom: 1px solid #000000;
    height: auto;
    padding-bottom: 20px;
    overflow: hidden;
}

.live-casino-wrap h1 {
    height: 40px;
    line-height: 60px;
    margin-top: 20px;
    font-weight: 400;
    font-size: 18px;
}

.game-list {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    overflow: hidden;
    padding: 0 10px 10px 0;
}

.game-list ul li {
    /* width: 24.2%; */
    width: 15%;
    height: auto;
    padding-bottom: 19.79%;
    background: url(/asset/img/live_back.jpg) no-repeat center center / cover;
    background-size: 100%;
    filter: grayscale(0%);
    position: relative;
    border-radius: 10px;
    float: left;
    margin-right: 20px;
    margin-top: 20px;
    margin-left: 1px;
    cursor: pointer;
    transition-duration: 0.3s;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.game-list ul li .overlay {
  display: flex;
  flex-direction: column; /* ← 가로 말고 세로로! */
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* 어두운 배경 */
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.game-list ul li:nth-child(1) {
    background: url(/asset/img/new_live_back01.png);
}
.game-list ul li:nth-child(2) {
    background: url(/asset/img/new_live_back02.png);
}
.game-list ul li:nth-child(3) {
    background: url(/asset/img/new_live_back03.png);
}
.game-list ul li:nth-child(4) {
    background: url(/asset/img/new_live_back04.png);
}
.game-list ul li:nth-child(5) {
    background: url(/asset/img/new_live_back05.png);
}
.game-list ul li:nth-child(6) {
    background: url(/asset/img/new_live_back06.png);
}
.game-list ul li:nth-child(7) {
    background: url(/asset/img/new_live_back07.png);
}
.game-list ul li:nth-child(8) {
    background: url(/asset/img/new_live_back08.png);
}
.game-list ul li:nth-child(9) {
    background: url(/asset/img/new_live_back09.png);
}
.game-list ul li:nth-child(10) {
    background: url(/asset/img/new_live_back10.png);
}
#slot-game-list li:nth-child(1) {
    background: url(/asset/img/new_slot_back01.png);
}
#slot-game-list li:nth-child(2) {
    background: url(/asset/img/new_slot_back02.png);
}
#slot-game-list li:nth-child(3) {
    background: url(/asset/img/new_slot_back03.png);
}
#slot-game-list li:nth-child(4) {
    background: url(/asset/img/new_slot_back04.png);
}
#slot-game-list li:nth-child(5) {
    background: url(/asset/img/new_slot_back05.png);
}
#slot-game-list li:nth-child(6) {
    background: url(/asset/img/new_slot_back06.png);
}
#slot-game-list li:nth-child(7) {
    background: url(/asset/img/new_slot_back07.png?ver=2);
}
#slot-game-list li:nth-child(8) {
    background: url(/asset/img/new_slot_back08.png);
}
#slot-game-list li:nth-child(9) {
    background: url(/asset/img/new_slot_back09.png);
}
#slot-game-list li:nth-child(10) {
    background: url(/asset/img/new_slot_back10.png);
}
#slot-game-list li:nth-child(11) {
    background: url(/asset/img/new_slot_back11.png);
}
#slot-game-list li:nth-child(12) {
    background: url(/asset/img/new_slot_back12.png);
}
#slot-game-list li:nth-child(13) {
    background: url(/asset/img/new_slot_back13.png);
}
#slot-game-list li:nth-child(14) {
    background: url(/asset/img/new_slot_back14.png);
}
#slot-game-list li:nth-child(15) {
    background: url(/asset/img/new_slot_back15.png);
}
#slot-game-list li:nth-child(16) {
    background: url(/asset/img/new_slot_back16.png);
}
#slot-game-list li:nth-child(17) {
    background: url(/asset/img/new_slot_back17.png);
}
#slot-game-list li:nth-child(18) {
    background: url(/asset/img/new_slot_back18.png);
}
#slot-game-list li:nth-child(19) {
    background: url(/asset/img/new_slot_back19.png);
}
#slot-game-list li:nth-child(20) {
    background: url(/asset/img/new_slot_back20.png);
}


.game-list ul li h2 span:hover {
    background: #FF2B72;
    border: 1px solid #FF2B72;
    transition-duration: 0.3s;
}


#gameLoading {
    background: transparent;
}

.game-list ul li:hover {
    filter: grayscale(0);
    box-shadow: 0 0 0 1px #FF2B72;
    transition-duration: 0.3s;
}

.game-list ul li .overlay .logo {
  width: 60%;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
  transition: 0.3s ease;
  margin-bottom: 10%;
}

/* hover 시 보여줌 */
.game-list ul li:hover .overlay {
  opacity: 1;
  border-radius: 10px;
}

.game-list ul li:hover .overlay .logo {
  opacity: 1;
  transform: scale(1);
}

.game-list ul li .overlay-text {
  margin-top: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.3s ease;
}

/* hover 시 텍스트도 보여주기 */
.game-list ul li:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}


/*slot*/
.slot-wrap {
    border-top: 1px solid #2b2b2b;
    border-bottom: 1px solid #000000;
    height: auto;
    overflow: hidden;
    padding-bottom: 20px;
    position: relative;

}

.slot-list {
    margin-top: 20px;
    width: 99.6%;
    overflow: hidden;
}

.slot-mimg {
    width: 29%;
    margin-right: 13px;
    float: left;
}

.slot-mimg img {
    width: 100%;
    border-radius: 7px;
    cursor: pointer;
    border: 1px solid #5f5f5f;
    float: left;
    transition-duration: 0.3s;
}

.slot-mimg img:hover {
    filter: blur(3px);
}

.slot-accarea {
    width: 75%;
    height: 100px;
    padding-left: 50px;
    display: inline-block;
}

.slot-accarea .t01 {
    height: 48px;
    font-weight: 400;
    font-size: 32px;
    color: #FBA06E;
    margin: 0;
    margin-top: 10px;
    display: block;
    width: 100%;
    text-align: center;
}

.slot-accarea .t02 {
    color: #A5A5A5;
    font-size: 13px;
    height: 23px;
    margin: 0;
    padding: 0;
    font-weight: 300;
    display: block;
    width: 100%;
    text-align: center;
}

.slot-accarea .t03 {
    font-size: 12px;
    color: #A5A5A5;
    font-weight: normal;
    height: 23px;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    display: block;
    width: 100%;
    text-align: center;
}

.slot-btn {
    text-align: right;
}

.slot-btn button:hover {
    border: none;
    background: #DC4F00;
    border: 1px solid #f1aa6c;
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    margin-right: 5px;
    transition-duration: 0.2s;
    font-weight: bold;
}

.slot-btn button {
    border: none;
    background: #181818;
    border: 1px solid #424242;
    border-radius: 6px;
    font-size: 12px;
    width: 10%;
    height: 5vh;
    margin-bottom: 10px;
    color: #fff;
    cursor: pointer;
    margin-right: 5px;
    transition-duration: 0.2s;
    font-weight: bold;
}


.board-list {
    margin-top: 30px;
    height: auto;
}

.list-b {
    width: 32.2%;
    height: 239px;
    float: left;
    margin-right: 20px;
    background: #181818;
    border: 1px solid #393939;
    border-radius: 8px;
}

.list-b table {
    margin-left: 25px;
    border-collapse: collapse;
    font-size: 12px;
    color: #fff;
    width: 90%;
}

.list-b table tr {
    border-bottom: 1px solid #373737;
    height: 40px;
    transition-duration: 0.3s;
}

.list-b table tr:last-child {
    border-bottom: none;
}

.list-b table tr:hover {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    transition-duration: 0.3s;
    color: #ffc600;
}

.list-b h1 {
    width: 50%;
    font-size: 18px;
    margin-left: 30px;
    height: 31px;
    margin-top: 20px;
}

.list-b h1 span:nth-child(1) {
    color: #faf2f9;
    font-weight: 600;
    text-align: center;
    width: 70px;
    margin-right: 5px;
    border: 2px solid #FF539C;
    border-radius: 30px;
    display: inline-block;
}

.list-b h1 span {
    color: #FF2B72;
    font-weight: 400;
    border: none;
}

/* popup */

.popup-close {
    height:30px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
}

.popup-close a {
    padding: 0 10px;
    /* color: #c79f5f; */
    color: #FFD700;
    line-height: 20px;
    border: 1px solid rgba(255, 215, 0, 1);
    border-radius: 3px;
}

.popup-close .btn-close {
    float: right;
}

.popup-close .btn-close:after {
    content: "창닫기 ✕";
}

.popup-close .btn-close2 {
    margin-right: 2px;
    float: right;
}

.popup-close .btn-close2:after {
    content: "오늘 하루 그만보기";
}

/* 팝업의 위치와 가시성을 보장하는 스타일 */



.popup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;  /* z-index를 충분히 높게 설정 */
    background-color: rgba(0, 0, 0, 0.5); /* 배경 반투명 효과 추가 */
}
#popup6 {
    z-index: 10200;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); 
    width: 1200px;
    height: 500px;
}
#popup9 {
    z-index: 10300;
    position: fixed;
    top: 0px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);  
    width: 450px;
    height: 700px;
}

.pop_main {
    position: relative;
    z-index: 10001;  /* pop_main도 z-index를 높여주기 */
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;  /* 오른쪽 상단에 위치하도록 조정 */
    z-index: 10002;  /* 버튼의 z-index도 높여주기 */
}
@media screen and (min-width: 700px) and (max-width: 1024px) {
    #popup6 {
        z-index: 13000;
        position: absolute;
        top: 1px;
        width: 950px;
        height:300px;
    }
    #popup9 {
        z-index: 14000;
        position: absolute;
        top: 1px;
        width: 400px;
        height:500px;
    }
    #money{
        display: none;
    }
    .coupon_y img {
        display: inline-flex;
        top: 10px;
        content: url('/asset/img/top/coupon_64.gif'); 
    }
    /* span.badge {
        position: absolute;
        top: 10px;
        margin-top: -6px;
        margin-left: 10px;
    } */

    
  
}
@media screen and (min-width: 200px) and (max-width: 829px)  {
    .btn-close2 {
        position: relative;
        left: 300px;
        top: 50px;
        float: right;
    }


    .pop_main {
    display:inline-block;
    width:300px;
    height:400px;
    }

    /* #popup1 {
        z-index: 1000px;
        position: absolute;
    } */
    #popup2 {
        z-index: 1100px;
        position: absolute;

    }
    #popup3 {
        z-index: 1100px;
        position: absolute;
    }
    #popup4 {
        z-index: 1200px;
        position: absolute;
    }
    #popup5 {
        z-index: 1200px;
        position: absolute;
    }

    #popup6 {
        z-index: 13000;
        position: absolute;
        top: -50px;
        width: 400px;
        height:300px;
    }
    #popup7 {
        z-index: 1200px;
        position: absolute;
        
    }
    #popup8 {
        z-index: 1200px;
        position: absolute;
        
    }
    #popup9 img{
        z-index: 1500px;
        position: fixed;
        top: 150px;
        left: 14%;
        width: 300px;
        height:500px;
    }
    #popup9 .popup-close {
        position: absolute;
        top: 151px;
        right: 87px;  /* 오른쪽 상단에 위치하도록 조정 */
        z-index: 10002;  /* 버튼의 z-index도 높여주기 */
    }
    .popup-close {
    position: absolute;
    top: 10px;
    right: 26px;  /* 오른쪽 상단에 위치하도록 조정 */
    z-index: 10002;  /* 버튼의 z-index도 높여주기 */
    }

    #money{
        display: none;
    }
    .coupon_y img {
        margin-top: 18px;
        content: url('/asset/img/top/coupon_64.gif'); 
    }
    /* span.badge {
        position: absolute;
        margin-left: 10px;
        top: 10px;
        margin-top: -6px;
    } */
    
    span#badge {
        font-size: 12px;
    }
   
}
