@charset "utf-8";

/* Noto Sans 폰트 설정 */
* {
    font-family: "noto-sans-medium", "Noto Sans", sans-serif;
}

#wrap {
    width: 100%;
    min-width: 1800px;
    display: flex;
    overflow: hidden;
    background-color: #161a22;
    background-size: 100%;
}

/*-------------------------------------------------------------------------------------*
 *  Header                                                                             *
 *-------------------------------------------------------------------------------------*/
.contents_left {
    float: left;
    width: 300px;
    transition: all 0.5s;
    border-right: 3px solid #0c1018;
}
.contents_right {
    float: right;
    width: calc(100% - 300px);
    transition: all 0.5s;
}
/* 좌측구역 */
.left_header_wrap {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background: linear-gradient(90deg, #0c1018 0%, #161a22 100%);
    transition: all 0.5s;
}
.left_header_wrap {
    -ms-overflow-style: none;
}
.left_header_wrap::-webkit-scrollbar {
    display: none;
}
.logo {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 30px;
}
.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.logo a div img {
    max-width: 180px;
    max-height: 40px;
    width: auto;
    height: auto;
}
.logo a div img:first-child {
    max-height: 72px;
}
.logo a div img:last-child {
    margin-bottom: 20px;
}

.logo_top {
    max-height: 72px;
    padding-top:40px;
}
.logo_bottom {
    margin-bottom: 40px;
  
}

.left_game_wrap {
    float: left;
    width: 100%;
    padding-top: 200px;
    padding-left:10px;
}
.left_game_wrap li {
    margin: 0;
    width: 250px;
    height: 110px;
}
.left_game_wrap li a {
    display: block;
    width: 100%;
    height: 100%;
}

/* 우측구역 */
.right_header_wrap {
    float: left;
    width: 100%;
    height: auto;
}
.right_header_box1 {
    float: left;
    width: 100%;
    height: 50px;
    overflow: hidden;
    padding: 0 40px 0 40px;
    background: #161a22;
}
.right_header_box2 {
    float: left;
    width: 100%;
    height: 60px;
    overflow: hidden;
    padding: 0 40px 0 40px;
    background:#0c1018;
}

.notice {
    float: left;
    width: 30%;
    margin: 15px 0 0 0;
    font-weight: 500;
    font-size: 14px;
    color: #f4f5fe;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    min-height: 20px;
}

.notice a {
    color: #f4f5fe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.notice a:hover {
    color: #88F950;
}

.my {
    float: right;
    margin: 8px 0 0 0;
    transition: all 0.5s;
}
.my li {
    float: left;
    font-weight: 500;
    font-size: 14px;
    color: #f4f5fe;
    margin: 0 0 0 5px;
    line-height: 34px;
    transition: all 0.5s;
}
.my li a {
    color: #f4f5fe;
}

.my_input {
    background: #161a22;
    border: 2px solid #888888;
    width: 140px;
    padding: 7px 15px;
    color: #f4f5fe;
    font-size: 14px;
    border-radius: 8px;
    height: 36px;
    transition: all 0.3s;
    outline: none;
}
.my_input:hover {
    border-color: #cccccc;
    color: #cccccc;
}
.my_input::placeholder {
    color: #888888;
}

.my_input:focus {
    border-color: #cccccc;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.my_btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 34px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #111111 !important;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #dddddd;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-shadow: none;
}

.my_btn1:hover {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #111111;
}

.my_btn1:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.my_btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 34px;
    padding: 8px 16px;
    background: linear-gradient(to bottom, #feca86 0%, #ffe4c1 100%);
    color: #0c1018 !important;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #ff9966;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 153, 102, 0.3);
    text-shadow: none;
}

.my_btn2:hover {
    background: linear-gradient(135deg, #ffddbb 0%, #ffaa77 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 102, 0.4);
    color: #0c1018;
}

.gnb {
    float: left;
    width: 100%;
    padding: 0 0 0 0;
}
.gnb li {
    float: left;
    margin: 0 80px 0 0;
}
.gnb li a {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #f4f5fe;
    text-shadow: 2px 0 3px rgba(0, 0, 0, 0.75);
    line-height: 60px;
    transition: all 0.5s;
    white-space: nowrap;
}

.gnb li a span {
    color: #f4f5fe;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 2px 0 3px rgba(0, 0, 0, 0.75);
}
.gnb li a:hover {
    color: var(--color-font-6);
}

.gnb li a:hover span {
    color: var(--color-font-6);
}

/*-------------------------------------------------------------------------------------*
 *  Contents                                                                           *
 *-------------------------------------------------------------------------------------*/
.title_wrap {
    float: left;
    width: 100%;
    padding-top:10px;
    padding-left:30px;

}
.title {
    font-size: 26px;
    font-weight: 600;
    color: #f4f5fe;
    line-height: 50px;
}

.s_title1 {
    font-family: "speed";
    font-size: 22px;
    color: #f4f5fe;
    line-height: 44px;
    border-left: 3px solid var(--color-bg-12);
    padding: 0 0 0 10px;
}

.contents_wrap {
    float: left;
    width: 100%;
    padding: 0 0 0px 0;
}


.contents_box {
    float: left;
    width: 100%;
    min-height: 510px;
    margin: 50px;


    background: linear-gradient(135deg, var(--color-bg-8-40) 0%, rgba(22, 26, 34, 0.8) 100%);
    max-width: 1620px;
    padding: 30px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    flex: 1;

}

.contents_box_center {
    float: left;
    width: 100%;
    transition: all 0.5s;
}

.contents_box_left {
    float: left;
    width: calc(100% - 310px);
    transition: all 0.5s;
}
.contents_box_right {
    float: right;
    width: 280px;
    transition: all 0.5s;
}



.main_contents_box {
    float: left;
    width: 100%;
    min-height: 510px;
    margin: 30px 0 50px 0;
    padding: 0 30px 0 30px;


}

.main_contents_box_center {
    float: left;
    width: 100%;
    transition: all 0.5s;
}

.main_contents_box_left {
    float: left;
    width: calc(100% - 310px);
    transition: all 0.5s;
}
.main_contents_box_right {
    float: right;
    width: 280px;
    transition: all 0.5s;
}







.con_box00 {
    float: left;
    width: 100%;
    margin: 0 0 0 0;
}
.con_box05 {
    float: left;
    width: 100%;
    margin: 5px 0 0 0;
}
.con_box10 {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
}
.con_box20 {
    float: left;
    width: 100%;
    margin: 20px 0 0 0;
}
.con_box30 {
    float: left;
    width: 100%;
    margin: 30px 0 0 0;
}
.con_box40 {
    float: left;
    width: 100%;
    margin: 40px 0 0 0;
}
.con_box50 {
    float: left;
    width: 100%;
    margin: 50px 0 0 0;
}
.con_box60 {
    float: left;
    width: 100%;
    margin: 60px 0 0 0;
}
.con_box00 .custom_bg_color > td {
    background-color: var(--color-bg-0);
}

/*-------------------------------------------------------------------------------------*
 *  Footer                                                                             *
 *-------------------------------------------------------------------------------------*/
.footer_wrap {
    float: left;
    width: 100%;
    padding: 30px 0 40px 0;
    background: var(--color-bg-1);
    overflow: hidden;
}

.footer_box1 {
    float: left;
    width: 100%;
    padding: 0 0 20px 0;
    text-align: center;
}
.footer_box2 {
    float: left;
    width: 100%;
    font-size: 16px;
    color: var(--color-font-1);
    text-align: center;
}

/*-------------------------------------------------------------------------------------*
 *  Main                                                                               *
 *-------------------------------------------------------------------------------------*/
.main_con_wrap {
    float: left;
    width: 100%;
    margin: 60px 0 50px 0;
    padding: 0 30px 0 30px;
}
.main_game_btn_wrap {
    max-width: 1630px;
    width: 100%;
    margin: 0 auto;
}
.main_game_btn_wrap li {
    float: left;
    width: 49%;
    margin: 0 2% 2% 0;
    transition: all 0.5s;
}
.main_game_btn_wrap li:nth-child(2n) {
    margin: 0 0% 2% 0;
}
.main_game_btn_wrap li a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.main_game_btn_wrap li a img {
    width: 100%;
}

.main_board_wrap {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top:25px;
    padding-left:30px;
    padding-right:30px;
    gap: 20px;
    justify-content: space-between;
}
.board {
    background: linear-gradient(135deg, var(--color-bg-8-40) 0%, rgba(22, 26, 34, 0.8) 100%);
    width: calc(33% - 14px);
    padding: 20px ;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    flex: 1;
}


.board:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 
                0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.board_title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('../assets/images/icon/notice.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.board_title {
    font-family: "noto-sans", sans-serif;
    font-size: 16px;
    color: #f4f5fe;
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.board_more {
    font-family: "noto-sans-medium", sans-serif;
    font-size: 14px;
    color: #f4f5fe;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.board_more:hover {
    color: var(--color-font-6);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-2px);
}

.board_more:active {
    transform: translateX(-1px);
    background: rgba(255, 255, 255, 0.1);
}

.board_box {
    margin: 15px 0 0 0;
    height: 220px;
    overflow: hidden;
    position: relative;
}

/* 세로 캐러셀을 위한 스타일 */
.money_list {
    transition: transform 1.2s ease-in-out;
}

.board_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    right: -30px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

/* 공지사항 리스트 스타일 */
.notice_list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.notice_item {
    margin-bottom: 0;
    padding: 24px 15px;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.notice_item:nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}

.notice_item:nth-child(even) {
    background: rgba(255, 255, 255, 0.08);
}

.notice_item:last-child {
    margin-bottom: 0;
}

.notice_item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f4f5fe;
    font-family: "noto-sans-medium", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 15px;
    padding: 0;
}

.notice_item a::before {
    content: '•';
    margin-right: 10px;
    color: #f4f5fe;
    font-size: 18px;
    line-height: 1;
}

.notice_item:hover a {
    color: var(--color-font-6);
    transform: translateX(5px);
}

.notice_item:hover a::before {
    color: var(--color-font-6);
}

.notice_text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new_icon {
    width: 24px;
    height: 16px;
    margin-left: 8px;
    filter: drop-shadow(0 2px 4px rgba(255, 126, 0, 0.3));
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

/* 기존 테이블 스타일 (다른 보드에서 사용) */
.myTable {
    table-layout: fixed;
}
.board_box td {
    color: #f4f5fe;
    font-family: "noto-sans-medium", sans-serif;
    font-size: 16px;
    line-height: 34px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.board_box tr {
    transition: all 0.2s ease;
    border-radius: 6px;
}

.board_box tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.board_box tr:hover td {
    color: var(--color-font-6);
}

.board_box tr:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.board_box a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.board_box a:hover {
    color: var(--color-font-6);
}
.board_font1 {
    color: var(--color-font-4);
    font-size: 14px;
    opacity: 0.8;
    font-weight: 300;
}

/* 각 박스별 아이콘 설정 */
.board:nth-child(1) .board_title::before {
    background-image: url('../assets/images/icon/notice.svg');
}

.board:nth-child(2) .board_title::before {
    background-image: url('../assets/images/icon/withdraw.svg');
}

.board:nth-child(3) .board_title::before {
    background-image: url('../assets/images/icon/deposit.svg');
}

/* 머니 리스트 스타일 */
.money_list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.money_item {
    margin-bottom: 0;
    padding: 11px 10px;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.money_item:nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}

.money_item:nth-child(even) {
    background: rgba(255, 255, 255, 0.08);
}

.money_item:last-child {
    margin-bottom: 0;
}

.money_info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-family: "noto-sans-medium", sans-serif;
    transition: all 0.2s ease;
}

.money_date {
    font-size: 12px;
    color: #f4f5fe;
    font-weight: 300;
    flex: 0 0 100px;
    text-align: left;
}

.money_amount {
    font-size: 14px;
    color: #4a9eff;
    font-weight: 500;
    flex: 1;
    text-align: center;
}

.money_user {
    font-size: 13px;
    color: #f4f5fe;
    font-weight: 400;
    flex: 0 0 80px;
    text-align: right;
}

.money_text {
    font-size: 14px;
    color: #f4f5fe;
    font-weight: 400;
    text-align: center;
    width: 100%;
    display: block;
}

.money_item:hover .money_info {
    transform: translateX(5px);
}

.money_item:hover .money_amount {
    color: var(--color-font-6);
}

/* 공지사항 NEW 아이콘 스타일 개선 */
.board_box img[src*="icon_new"], .new_icon {
    width: 24px;
    height: 16px;
    margin-left: 6px;
    filter: drop-shadow(0 2px 4px rgba(255, 126, 0, 0.3));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* 반응형 디자인 */
@media screen and (max-width: 1400px) {
    .main_board_wrap {
        flex-direction: column;
        gap: 15px;
    }
    
    .board {
        width: 100%;
        flex: none;
    }
    
    /* 프라그마틱 배너 반응형 조정 */
    .pragmatic_banner_wrap {
        margin: 30px 20px 0 20px;
    }
    
    /* 배너 슬라이더 반응형 조정 */
    #jssor_1 {
        max-height: 400px;
    }
}

@media screen and (max-width: 1024px) {
    /* 태블릿 크기에서 배너 높이 조정 */
    #jssor_1 {
        max-height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .board {
        padding: 25px 20px 20px;
    }
    
    .board_title {
        font-size: 14px;
        padding-left: 30px;
    }
    
    .board_title::before {
        width: 20px;
        height: 20px;
    }
    
    .board_box {
        height: 150px;
    }
    
    .money_date {
        font-size: 11px;
    }
    
    .money_amount {
        font-size: 13px;
    }
    
    .money_user {
        font-size: 12px;
    }
    
    /* 프라그마틱 배너 모바일 조정 */
    .pragmatic_banner_wrap {
        margin: 20px 10px 0 10px;
    }
    
    /* 모바일에서 배너 높이 제한 */
    #jssor_1 {
        max-height: 250px;
    }
    
    #jssor_1 img {
        object-fit: cover;
        object-position: center;
    }
}

/*-------------------------------------------------------------------------------------*
 *  out login                                                                          *
 *-------------------------------------------------------------------------------------*/
.login_wrap {
    z-index: 0;
    float: left;
    width: 100%;
    height: 100vh;
    background: var(--bg-url) center top no-repeat;
    background-size: cover;
    position: relative;
    top: 0;
    left: 0;
    background-size: cover; background-repeat: no-repeat;
}

.login_box_wrap {
    width: 700px;
    margin: 0px auto;
    transition: all 0.5s;
    position: relative;
    z-index: 10000000;
}

.login_box_wrap_holdem {
    /* width: 700px; */
    /* margin: 0px auto; */
    margin: 20% 10%;
    transition: all 0.5s;
    position: relative;
    z-index: 10000000;
}
.login_tit {
    float: left;
    width: 100%;
    text-align: center;
    margin: 80px 0 30px 0;
    overflow: hidden;
}

.login_box_holdem {
    width: 100%;
    height: 380px;
    background: url(../assets/images/bg_login_login_holdem.png) center top no-repeat;
    box-shadow: 0px 0px 40px 0px var(--color-border-2-75);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.login_box_holdem_m {
    width: 100%;
    height: 2500px;
    background: url(../assets/images/bg_login_login_holdem.png) center top;
    background-size: cover;
    box-shadow: 0px 0px 40px 0px var(--color-border-2-75);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.login_box {
    width: 100%;
    height: 380px;
    background: url(../assets/images/bg_login_login.png) center top no-repeat;
    box-shadow: 0px 0px 40px 0px var(--color-border-2-75);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.login {
    width: 100%;
    margin: 0 0 0 0;
}
.login_table {
    width: 500px;
    margin: 0 auto;
    transition: all 0.5s;
}

.login_text {
    padding: 0 0 20px 0;
    font-weight: 400;
    font-size: 18px;
    color: #f4f5fe;
}

.login_btn1 {
    background: linear-gradient(
        to left,
        var(--color-bg-14) 0%,
        var(--color-bg-15) 20%,
        var(--color-bg-16) 35%,
        var(--color-bg-17) 50%,
        var(--color-bg-16) 65%,
        var(--color-bg-15) 80%,
        var(--color-bg-14) 100%
    );
    width: 250px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    display: inline-block;
    color: #000000;
    font-size: 22px;
    text-shadow: 1px 0 0 rgba(255, 255, 255, 0.5);
    font-family: "speed";
    font-weight: 500;
    border-radius: 5px;
    letter-spacing: -1pt;
}
.login_btn1:hover {
    background: linear-gradient(
        -45deg,
        var(--color-bg-14) 0%,
        var(--color-bg-15) 20%,
        var(--color-bg-16) 35%,
        var(--color-bg-17) 50%,
        var(--color-bg-16) 65%,
        var(--color-bg-15) 80%,
        var(--color-bg-14) 100%
    );
}
.login_btn2 {
    background: linear-gradient(
        to left,
        #383838 0%,
        #b6b6b6 20%,
        #eeeeee 35%,
        #ffffff 50%,
        #eeeeee 65%,
        #b6b6b6 80%,
        #383838 100%
    );
    width: 250px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    display: inline-block;
    color: #000000;
    font-size: 22px;
    text-shadow: 1px 0 0 rgba(255, 255, 255, 0.5);
    font-family: "speed";
    font-weight: 500;
    border-radius: 5px;
    letter-spacing: -1pt;
}
.login_btn2:hover {
    background: linear-gradient(
        -45deg,
        #383838 0%,
        #b6b6b6 20%,
        #eeeeee 35%,
        #ffffff 50%,
        #eeeeee 65%,
        #b6b6b6 80%,
        #383838 100%
    );
}

.input_login {
    background-color: #f4f5fe;
    border: none;
    color: #3d3d3d;
    width: 250px;
    height: 56px;
    padding: 0 0 0 15px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.5s;
}
.login input::placeholder {
    color: #868686;
    font-size: 18px;
}

.join_box input::placeholder {
    color: #868686;
    font-size: 18px;
}

.join_box_wrap {
    float: left;
    width: 100%;
}
.join_box {
    margin: 0px auto;
    width: 900px;
    transition: all 0.5s;
}
.join_start {
    float: left;
    width: 100%;
    padding: 35px 50px 50px 50px;
    background: var(--color-bg-0);
    border: 1px solid var(--color-border-1);
    border-radius: 5px;
}
.join_title {
    float: left;
    width: 100%;
    text-align: center;
    margin: 5px 0 15px 0;
}
.join_close_box {
    float: left;
    width: 100%;
    text-align: center;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.join_input1 {
    background-color: var(--color-bg-2);
    border: 1px solid var(--color-bg-0);
    padding: 4px 0 4px 5px;
    color: #f4f5fe;
    font-size: 14px;
    height: 34px;
    border-radius: 5px;
    width: 100px;
}

/*-------------------------------------------------------------------------------------*
 *  레이어팝업                                                                             *
 *-------------------------------------------------------------------------------------*/
.notice_popup1 {
    position: absolute;
    z-index: 1000000000;
    top: 170px;
    left: 100px;
}
.notice_popup2 {
    position: absolute;
    z-index: 1000000000;
    top: 170px;
    right: 100px;
}
.notice_popup_wrap {
    float: left;
    width: 400px;
}
.notice_popup_box {
    float: left;
    width: 400px;
    height: 550px;
    cursor: pointer;
}
.notice_popup_box a {
    display: block;
}
.notice_popup_text {
    float: left;
    width: 100%;
    padding: 30px;
}
.notice_popup_font1 {
    float: left;
    width: 100%;
    font-size: 22px;
    letter-spacing: -1px;
    font-weight: 700;
    color: #f4f5fe;
    line-height: 40px;
}
.notice_popup_font2 {
    float: left;
    width: 100%;
    font-size: 16px;
    letter-spacing: -1px;
    font-weight: 400;
    color: #d4d4d4;
    line-height: 28px;
}

/* 메인팝업추가 4/28 */
.main_pop_wrap{float:left; width:100%; height:100%; background:rgba(0,0,0,0.6); position:fixed; z-index:9999; display:flex; justify-content: center; align-items: center; flex-wrap: wrap;}
.main_pop_box{float:left; width:500px; margin:5px;}
.main_pop_con{float:left; width:100%; min-height:500px; padding:30px 20px; background:#000000 url("../images/bg.png") center top; border:3px solid;}
.main_pop_con img{width:100%;}

.main_pop_con_title{float:left; width:100%; padding:10px; text-align:center; font-family:'EsaManru'; font-weight:500; font-size:24px; color:#ffffff; line-height:50px; border-bottom:1px solid rgba(255,255,255,0.1);}
.main_pop_con_text1{float:left; width:100%; margin:10px 0 0 0; padding:10px; text-align:center; font-family:'EsaManru'; font-weight:300; font-size:14px; color:#d4d4d4; line-height:1.5;}
.main_pop_con_text2{float:left; width:100%; background:rgba(0,0,0,0.5); margin:10px 0 0 0; padding:20px 0; text-align:center; font-family:'EsaManru'; font-weight:500; font-size:18px; color:#f9f9f9; font-style:italic; line-height:1.5;}
.main_pop_con_text3{float:left; width:100%; margin:10px 0 0 0; padding:10px; text-align:center; font-family:'EsaManru'; font-weight:300; font-size:16px; color:#f9f9f9; line-height:1.5;}

.main_popup_close {float:left; width:100%; text-align:center; padding:0 3px 0 0;}
.main_popup_close ul{float:right;}
.main_popup_close ul li{float:left;}
.main_popup_close ul li a{display:block; height:34px; line-height:34px; min-width:80px; padding:0 15px; background:#2e2a26; font-family:'EsaManru'; font-weight:500; color:#ffffff; font-size:14px;}
.main_popup_close ul li a:hover{background:#27211c;}
.main_popup_close ul li:last-child a{border-left:1px solid #000000;}
.main_popup_close ul li a input{display:inline-block; margin:0 10px 0 0; accent-color: #000000;}

/*-------------------------------------------------------------------------------------*
 *  슬라이드                                                                             *
 *-------------------------------------------------------------------------------------*/
/* 메인 배너 슬라이더 반응형 스타일 */
#jssor_1 {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

#jssor_1 > div {
    position: relative;
    width: 100%;
    height: auto;
}

#jssor_1 img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.jssorl-004-double-tail-spin img {
    animation-name: jssorl-004-double-tail-spin;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes jssorl-004-double-tail-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.jssorb051 .i {
    position: absolute;
    cursor: pointer;
}
.jssorb051 .i .b {
    fill: #ff7e00;
    fill-opacity: 0.5;
    stroke: #000;
    stroke-width: 400;
    stroke-miterlimit: 10;
    stroke-opacity: 0.5;
}
.jssorb051 .i:hover .b {
    fill-opacity: 0.7;
}
.jssorb051 .iav .b {
    fill-opacity: 1;
}
.jssorb051 .i.idn {
    opacity: 0.3;
}

.jssora051 {
    display: block;
    position: absolute;
    cursor: pointer;
}
.jssora051 .a {
    fill: none;
    stroke: var(--color-border-2);
    stroke-width: 360;
    stroke-miterlimit: 10;
}
.jssora051:hover {
    opacity: 0.8;
}
.jssora051.jssora051dn {
    opacity: 0.5;
}
.jssora051.jssora051ds {
    opacity: 0.3;
    pointer-events: none;
}

/*-------------------------------------------------------------------------------------*
 *  특별한                                                                             *
 *-------------------------------------------------------------------------------------*/
/* 파워볼 버튼 */
.title_mini {
    color: #ff7e00;
}
.mini_media {
    float: left;
    width: 100%;
    min-height: 500px;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 10px 0 10px 0;
}

.mini_power_big_wrap {
    float: left;
    width: 100%;
    margin: 5px 0 0 0;
    padding: 5px;
}

.mini_power_title {
    line-height: 30px;
    font-weight: 500;
    color: #f4f5fe;
}
.mini_power_title_s {
    font-weight: 700;
    color: #8e8e8e;
    font-size: 11px;
}

.mini_power_btn1 {
    float: left;
    background-color: var(--color-bg-2);
    border: 1px solid var(--color-bg-0);
    width: 100%;
    min-height: 50px;
    line-height: 16px;
    text-align: center;
    color: #f4f5fe;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 0 0 0;
    border-radius: 5px;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: rgba(0, 0, 0, 0.6) 2px 2px 4px -1px;
}
.mini_power_btn1:hover {
    border: 1px solid #00a8ff;
}
.mini_power_btn1.select {
    background-color: #00a8ff;
    border: 1px solid #00a8ff;
}

.mini_power_btn2 {
    float: left;
    background-color: var(--color-bg-2);
    border: 1px solid var(--color-bg-0);
    width: 100%;
    min-height: 50px;
    line-height: 16px;
    text-align: center;
    color: #f4f5fe;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 0 0 0;
    border-radius: 5px;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: rgba(0, 0, 0, 0.6) 2px 2px 4px -1px;
}
.mini_power_btn2:hover {
    border: 1px solid #ff2a00;
}
.mini_power_btn2.select {
    background-color: #ff2a00;
    border: 1px solid #ff2a00;
}

.mini_power_font1 {
    font-family: "GmarketSans";
    font-size: 20px;
    line-height: 30px;
    color: #00a8ff;
}
.mini_power_font2 {
    font-family: "GmarketSans";
    font-size: 20px;
    line-height: 30px;
    color: #ff2a00;
}
.select .mini_power_font1 {
    color: #f4f5fe;
}
.select .mini_power_font2 {
    color: #f4f5fe;
}

/* 경기결과 */
.bet_wrap1 {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff7e00;
    padding: 15px 10px 15px 10px;
}
.bet_wrap2 {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-bg-0);
    padding: 15px 10px 15px 10px;
}

.bet_title2 {
    float: left;
    width: 100%;
    height: 30px;
    color: #f4f5fe;
    margin: 0 0 5px 0;
}
.bet_title2_font {
    font-weight: 500;
    line-height: 30px;
    margin: 0 0 2px 10px;
    color: #f4f5fe;
    font-size: 14px;
}

.bet_list1 {
    display: table;
    width: 100%;
    border-spacing: 5px;
}
.bet_list_tr {
    display: table-row;
    height: 33px;
}
.bet_cell {
    display: table-cell;
    height: 33px;
    padding: 0 10px 0 10px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 3px;
}

.bet1 {
    width: 8%;
    text-align: center;
}
.bet2 {
    width: 20%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.bet3 {
    width: 5%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.bet4 {
    width: 20%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.bet5 {
    width: 5%;
    text-align: center;
    background: var(--color-bg-2);
    border: 1px solid var(--color-bg-0);
}
.bet6 {
    width: 10%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-weight: 500;
    color: #ff2a00;
}
.bet7 {
    width: 5%;
    text-align: center;
}
.bet_cellon {
    vertical-align: middle;
    cursor: pointer;
    color: #000000;
    font-weight: 700;
    background: var(--color-bg-6);
}

.bet_wrap1 .bet_cellon {
    background: #ff7e00;
}
.bet_wrap1 .bet_cell {
    border: 1px solid #ff7e00;
}

/* 미니게임 카트 */
.mini_input {
    background-color: var(--color-bg-2);
    border: 1px solid #000000;
    width: 100%;
    height: 26px;
    color: #f4f5fe;
    padding: 0 10px 0 10px;
    border-radius: 3px;
    text-align: right;
}
.cart_wrap {
    float: left;
    width: 100%;
    padding: 20px 10px 10px 15px;
    background: var(--color-bg-0);
    border: 1px solid var(--color-border-1);
}
.cart_title {
    float: left;
    width: 100%;
}
.cart_point {
    font-family: "speed";
    font-size: 20px;
    color: #f4f5fe;
}

.fix_btn1 {
    display: inline-block;
    width: 46px;
    height: 26px;
    border-radius: 5px;
    background: var(--color-bg-13);
    text-align: center;
    line-height: 30px;
    font-family: "GmarketSans";
    font-weight: 500;
    font-size: 14px;
    color: #f4f5fe;
}
.fix_btn2 {
    display: inline-block;
    width: 46px;
    height: 26px;
    border-radius: 5px;
    background: var(--color-bg-3);
    text-align: center;
    line-height: 30px;
    font-family: "GmarketSans";
    font-weight: 500;
    font-size: 14px;
    color: var(--color-font-8);
}

.cart_del {
    float: left;
    width: 100%;
    margin: 15px 0 0 0;
}
.del_btn {
    width: 250px;
    height: 34px;
    line-height: 38px;
    display: block;
    text-align: center;
    background: linear-gradient(#606060 0%, #282828 100%);
    border-radius: 5px;
    font-family: "GmarketSans";
    font-weight: 500;
    font-size: 14px;
    color: var(--color-font-5);
    transition: all 0.5s;
}
.del_btn:hover {
    background: linear-gradient(-45deg, #606060 0%, #282828 100%);
}

.cart_bet {
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 12px 3px 12px;
    line-height: 22px;
    margin: 0 0 3px 0;
    color: #b2c7c7;
} /* 팀 선택시 */
.cart_bet td {
    color: #b2c7c7;
}

.cart_style1 {
    line-height: 25px;
    padding: 5px 5px 5px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "GmarketSans";
    font-weight: 500;
    font-size: 14px;
    color: #ffead8;
} /* 카트리스트 */
.cart_style2 {
    float: right;
}

.cart_font1 {
    color: #ff7e00;
    font-weight: 700;
    font-size: 18px;
}
.cart_font2 {
    color: #ffcc00;
    font-weight: 700;
    font-size: 18px;
}

.cart_btn1 {
    background: linear-gradient(#606060 0%, #282828 100%);
    width: 100%;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    color: var(--color-font-5);
    font-size: 13px;
    letter-spacing: 0pt;
    font-weight: 500;
    transition: all 0.5s;
}
.cart_btn1:hover {
    background: linear-gradient(-45deg, #606060 0%, #282828 100%);
}

.cart_btn2 {
    background: linear-gradient(var(--color-bg-9) 0%, var(--color-bg-10) 100%);
    width: 100%;
    height: 54px;
    line-height: 54px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    letter-spacing: 0pt;
    transition: all 0.5s;
    font-family: "GmarketSans";
    font-weight: 700;
    font-size: 22px;
    color: #f4f5fe;
    text-shadow: 2px 0 3px rgba(0, 0, 0, 0.4);
}
.cart_btn2:hover {
    background: linear-gradient(
        -45deg,
        var(--color-bg-9) 0%,
        var(--color-bg-2) 100%
    );
}

.customer1 {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
    padding: 20px 0 30px 0;
    text-align: center;
    background: var(--color-bg-0);
    border: 1px solid var(--color-border-1);
    font-family: "speed";
    font-size: 24px;
    color: #f4f5fe;
    line-height: 1.5;
}
.customer2 {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
    padding: 20px 0 20px 0;
    text-align: center;
    background: var(--color-bg-0);
    border: 1px solid var(--color-border-1);
    font-family: "speed";
    font-size: 16px;
    color: #f4f5fe;
}
.customer2 span {
    font-size: 22px;
}

/* 검색창 */
.select_box {
    float: left;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 25px 0 30px 0;
    border-radius: 5px;
    text-align: center;
}
.date_input {
    background-color: var(--color-bg-2);
    border: 1px solid var(--color-bg-0);
    padding: 4px 10px 4px 10px;
    color: #f4f5fe;
    font-size: 16px;
    border-radius: 5px;
    height: 50px;
}
.date_btn {
    background-color: var(--color-bg-2);
    border: 1px solid var(--color-bg-0);
    padding: 4px 10px 4px 10px;
    color: #f4f5fe;
    font-size: 14px;
    border-radius: 5px;
    height: 50px;
}
.date_btn:hover {
    border: 1px solid var(--color-bg-6);
}
input[type="date"]::-webkit-calendar-picker-indicator {
    color-scheme: dark;
}

/* 댓글 */
.comment_box {
    float: left;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 10px 20px 10px;
    transition: all 0.5s;
}

.comment_enter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comment_input {
    width: calc(100% - 145px);
    padding: 5px 5px 5px 10px;
    font-size: 14px;
    background: var(--color-bg-2);
    height: 80px;
    border: 1px solid var(--color-bg-0);
    transition: all 0.5s;
    border-radius: 5px;
}
.comment_btn {
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    font-family: "GmarketSans";
    font-weight: 700;
    font-size: 20px;
    color: #f4f5fe;
    text-shadow: 2px 0 3px rgba(0, 0, 0, 0.4);
    background: linear-gradient(var(--color-bg-9) 0%, var(--color-bg-10) 100%);
    min-width: 140px;
    height: 80px;
    line-height: 84px;
    transition: all 0.5s;
}

.comment_view {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
}
.comment_view_list {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
    background: var(--color-bg-2);
    padding: 10px 10px 20px 10px;
    border-radius: 5px;
}

.comment_po {
    background: rgba(0, 0, 0, 0.5);
    color: #dddddd;
    padding: 0 15px 0 15px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    margin: 0 5px 0 0;
    font-weight: 300;
    border-radius: 5px;
    transition: all 0.5s;
}
.comment_view_text {
    float: left;
    width: 100%;
    font-size: 15px;
    color: #f4f5fe;
    padding: 10px 8px 8px 8px;
    line-height: 22px;
    transition: all 0.5s;
}

/* 게임리스트 리스트 */
.game_list {
    float: left;
    width: 100%;
}
.game_list ul {
    margin: 30px 0 0 0;
}
.game_list li {
    float: left;
    width: 15%;
    margin: 0 2% 2% 0;
    transition: all 0.5s;
}

.game_list li:nth-child(6n) {
    margin: 0 0 2% 0;
}
.game_list li a {
    display: block;
}
.game_list li a img {
    width: 100%;
    transition: all 0.5s;
}

@media screen and (max-width: 1920px) {
    .game_list li {
        width: 23.5%;
        margin: 0 2% 2% 0;
    }
    .game_list li:nth-child(6n) {
        margin: 0 2% 2% 0;
    }
    .game_list li:nth-child(5n) {
        margin: 0 0 2% 0;
    }
}

/* 슬롯리스트 */
.slot_list {
    float: left;
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.slot_list li {
    float: left;
    width: calc(100% / 10);
    padding: 10px;
}
.slot_list li a {
    display: block;
}
.slot_list li a img {
    width: 100%;
}

/* 카지노 팝업 */
.casino_box_wrap {
    float: left;
    width: 100%;
}
.casino_box {
    margin: 0px auto;
    width: 500px;
    transition: all 0.5s;
}
.casino_start {
    float: left;
    width: 100%;
    padding: 35px 50px 50px 50px;
    background: var(--color-bg-0);
    border: 1px solid var(--color-border-1);
    border-radius: 5px;
}
.casino_title {
    float: left;
    width: 100%;
    font-family: "speed";
    font-size: 26px;
    color: #f4f5fe;
    line-height: 50px;
}
.casino_title2 {
    float: left;
    width: 100%;
    text-align: center;
}
.casino_title3 {
    float: left;
    width: 100%;
    font-family: "speed";
    font-size: 20px;
    color: #f4f5fe;
    line-height: 50px;
}
.casino_close_box {
    float: left;
    width: 100%;
    text-align: center;
    padding: 120px 10px 10px;
    position: relative;
    z-index: 1;
}
.casino_input_title {
    float: left;
    width: 100%;
    font-size: 16px;
    color: #f4f5fe;
}
.casino_input {
    background-color: var(--color-bg-2);
    border: 1px solid var(--color-bg-0);
    padding: 4px 10px 4px 10px;
    color: #f4f5fe;
    font-size: 16px;
    border-radius: 5px;
    height: 50px;
    width: 100%;
    text-align: right;
}
.casino_btn1 {
    background: linear-gradient(#606060 0%, #282828 100%);
    width: 100%;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    color: #f4f5fe;
    font-size: 16px;
    letter-spacing: 0pt;
    font-weight: 700;
    transition: all 0.5s;
}
.casino_btn1:hover {
    background: linear-gradient(-45deg, #606060 0%, #282828 100%);
}
.casino_btn2 {
    background: linear-gradient(var(--color-bg-9) 0%, var(--color-bg-10) 100%);
    width: 100%;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    color: #f4f5fe;
    font-size: 16px;
    letter-spacing: 0pt;
    font-weight: 700;
    transition: all 0.5s;
}
.casino_btn2:hover {
    background: linear-gradient(
        -45deg,
        var(--color-bg-9) 0%,
        var(--color-bg-10) 100%
    );
}

/* 머니이동에사용 */
.mypage_wrap_box {
    background: var(--color-bg-12);
    padding: 3px;
    border-radius: 0px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin: 5px;
}
.mypage_wrap {
    background: rgba(0, 0, 0, 0.9);
    float: left;
    width: 100%;
    padding: 5px 0 10px 0;
    text-align: center;
    border-radius: 0px;
}
.mypage1 {
    float: left;
    width: 100%;
    line-height: 26px;
    padding: 20px 30px 0 30px;
    color: #dccfb1;
    font-size: 24px;
    font-family: "RocknRoll One", "GmarketSans", sans-serif;
    font-weight: 700;
}
.mypage2 {
    float: left;
    width: 100%;
    line-height: 50px;
    font-weight: 700;
    color: #dddddd;
    padding: 0 0 0 0;
    font-size: 16px;
    letter-spacing: -1px;
    font-family: "RocknRoll One", "GmarketSans", sans-serif;
}
.mypage3 {
    float: left;
    width: 100%;
    line-height: 22px;
    padding: 0 0 0 0;
    color: var(--color-font-6);
    letter-spacing: -1px;
    font-size: 18px;
    font-family: "RocknRoll One", "GmarketSans", sans-serif;
    font-weight: 700;
    letter-spacing: -1pt;
}

.b1 {
    background: url("../assets/images/b1.png") center top no-repeat;
    width: 194px;
    height: 82px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    color: var(--color-font-6);
    letter-spacing: -1px;
    font-size: 14px;
    font-family: "RocknRoll One", "GmarketSans", sans-serif;
    font-weight: 700;
    letter-spacing: -1pt;
    padding: 15px 0 0 0;
}
.b1:hover {
    background: url("../assets/images/b2.png") center top no-repeat;
}
.b1_on {
    background: url("../assets/images/b3.png") center top no-repeat;
}
.b1_off {
    background: url("../assets/images/b4.png") center top no-repeat;
}

/* 콤프 */
.comp_wrap {
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    float: left;
    width: 100%;
    padding: 25px 0 30px 0;
    border-radius: 5px;
}
.comp_box {
    float: left;
    width: 100%;
}
.comp_box ul {
    float: left;
    width: 100%;
    text-align: center;
}
.comp_box ul li {
    font-family: "speed";
    font-size: 18px;
    color: #f4f5fe;
    line-height: 50px;
}
.comp_box ul li span {
    display: inline-block;
    min-width: 170px;
    text-align: right;
    font-size: 20px;
    color: #ffc600;
}

.comp_input {
    background-color: #2b251f;
    border: 1px solid #4e433a;
    padding: 4px 0 4px 5px;
    color: #f4f5fe;
    font-size: 12px;
    border-radius: 5px;
    height: 34px;
}

/* 23/4/3 슬롯팝업 추가 */
.slot_box_wrap {
    float: left;
    width: 100%;
}
.slot_box {
    margin: 0px auto;
    width: 1400px;
    transition: all 0.5s;
}
.slot_start {
    float: left;
    width: 100%;
    padding: 35px 50px 50px 50px;
    background: #303030;
    border: 1px solid #905b5b;
    border-radius: 5px;
}
.slot_title {
    float: left;
    width: 100%;
    font-family: "speed";
    font-size: 26px;
    color: #f4f5fe;
    line-height: 50px;
}
.slot_close_box {
    float: left;
    width: 100%;
    text-align: center;
    padding: 120px 10px 10px;
    position: relative;
    z-index: 1;
}

.slot_list_wrap {
    float: left;
    width: 100%;
    color: #f4f5fe;
    background: rgba(0, 0, 0, 0.3);
    min-height: 150px;
}
.slot_list2 {
    float: left;
    width: 100%;
    padding: 10px;
}
.slot_list2 ul {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.slot_list2 li {
    float: left;
    text-align: center;
    width: calc(100% / 7);
    padding: 0 5px 10px 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.slot_list2 li a {
    display: block;
    width: 100%;
    font-family: "GmarketSans";
    font-weight: 500;
    color: #f4f5fe;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
}
.slot_list2 li a img {
    width: 100%;
}


/* 유저페이지 페이지네이션 */

/* 페이지네이션 */
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination>li {
    display: inline
}

.pagination>li>a,.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #000000;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
}

.pagination>li:first-child>a,.pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.pagination>li:last-child>a,.pagination>li:last-child>span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover {
    color: #dff0ff;
    background-color: #eee;
    border-color: #ddd
}

.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover {
    z-index: 2;
    background-color: #dff0ff;
    border-color: #dff0ff;
    cursor: default
}

.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
}

.pagination-lg>li>a,.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px
}

.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.pagination-sm>li>a,.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px
}

.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px
}

.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center
}

.pager li {
    display: inline
}

.pager li>a,.pager li>span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #282828;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li>a:focus,.pager li>a:hover {
    text-decoration: none;
    background-color: #eee
}

.pager .next>a,.pager .next>span {
    float: right
}

.pager .previous>a,.pager .previous>span {
    float: left
}

.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span {
    color: #777;
    background-color: rgb(0, 0, 0);
    cursor: not-allowed
}

/* 프라그마틱 배너 스타일 */
.pragmatic_banner_wrap {
    max-width: 1620px;
    width: 100%;
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: center;
}

.pragmatic_banner {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.pragmatic_banner img {
    display: block;
    width: 100%;
    height: auto;
}

.pragmatic_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.pragmatic_logo img {
    height: 40px;
    width: auto;
}

.pragmatic_auth_btn {
    background: #88F950;
    color: #111111;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
    margin-left: 250px;
}

.pragmatic_auth_btn:hover {
    background: #B2FF66;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.pragmatic_auth_btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* 파트너 업체 섹션 스타일 */
.partners_section {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-bg-8-40) 0%, rgba(22, 26, 34, 0.8) 100%);
    padding: 20px 30px 20px 30px;
    border-radius: 15px;
    margin-top:60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.partners_title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    padding-left: 5px;
}

.fist_icon {
    width: 20px;
    height: 20px;
    transform: scale(0.7);
}

.partners_carousel_container {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.partners_carousel_track {
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: space-between;
    flex-wrap: nowrap;
    transition: transform 1s ease-in-out;
}

.partner_card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 180px;
    background: transparent;
    border-radius: 10px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.partner_card:hover {
    transform: scale(1.05);
}

.partner_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* 애니메이션 제거 - 정적 배치 */

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .partners_section {
        padding: 15px;
    }
    
    .partners_carousel_track {
        gap: 10px;
    }
    
    .partner_card {
        width: 140px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .partners_section {
        margin: 20px 0;
        padding: 15px;
    }
    
    .partners_title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .fist_icon {
        width: 18px;
        height: 18px;
        transform: scale(0.5);
    }
    
    .partners_carousel_track {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .partner_card {
        width: 110px;
        height: 80px;
    }
}