﻿@charset "utf-8";
/*-------------------------------------------------
Style Sheet
Version : 1.0
Author :  Kang HyeYeon
Create date : 2026. 01. 15.
-------------------------------------------------*/
html,
body {
    position: relative;
    height: 100%;
    background: #000;
}
body.hidden {
    overflow: hidden;
}
#wrap {
    min-width: 1440px;
}
.inner {
    width: 1440px;
    margin: 0 auto;
}
.cont {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 200px 0;
    box-sizing: border-box;
}

/* header */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    padding: 60px 60px 0;
    box-sizing: border-box;
    z-index: 100;
}
header .head_sns {
    opacity: .7;
    display: flex;
}
header .head_sns a {
    display: block;
    margin-left: 50px;
}

/* gnb */
aside {
    position: fixed;
    top: 228px;
    left: 60px;
    z-index: 100;
}
.gnb > ul > li > a {
    display: block;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    color: #fffcdc;
    text-transform: uppercase;
    margin-bottom: 48px;
}
.gnb > ul > li > ul {
    padding-left: 12px;
    margin: -30px 0 38px;
}
.gnb > ul > li > ul a {
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #fffcdc;
}
.gnb ul > li > a:hover,
.gnb ul > li > a.active {
    color: #41bde8;
}

/* common */
.gr_btn {
    display: block;
    background: linear-gradient(135deg, #02e9cb, #07bfeb);
    color: #fffcdc;
    text-align: center;
    color: #fff;
}
.gr_btn.lg_btn {
    width: 402px;
    height: 96px;
    line-height: 96px;
    font-size: 35px;
    font-weight: 800;
    border-radius: 15px;
}
.gr_btn.md_btn {
    width: 200px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    font-weight: 300;
    border-radius: 10px;
}
.gr_btn.sm_btn {
    width: 180px;
    height: 46px;
    line-height: 46px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
}
.gr_btn.disabled {
    background: #787878;
    color: #fff;
    cursor: default;
}
.bg_btn {
    display: block;
    width: 180px;
    height: 46px;
    line-height: 46px;
    background: #0a6377;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin: 56px auto 0;
}

.tit_wrap {
    margin-top: -20px;
}
.tit_wrap .tit span {
    display: block;
    font-size: 75px;
    line-height: 92px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff 10%, #fff3c2 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
    font-weight: 900;
    margin-top: -14px;
}
.tit_wrap .tit span:nth-of-type(1) {
    margin-top: 0;
}
.tit_wrap .desc {
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    margin-top: 22px;
}

/* checkbox */
.chk {
    display: block;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    margin-top: 12px;
    padding-left: 40px;
    box-sizing: border-box;
}
.chk input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.chk_box {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border: 1px solid #ffec9f;
    background: none;
    vertical-align: -8px;
    position: absolute;
    left: 0;
}
.chk .chk_text {
    font-size: 18px;
    line-height: 24px;
    color: #ffec9f;
    display: block;
}
.chk input:checked + .chk_box::after {
    content: '';
    width: 26px;
    height: 26px;
    background: url(../images/common/checked_ico.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: -5px;
    left: 2px;
}

/* input box */
.ipt_box {
    position: relative;
    width: 100%;
    height: 74px;
    border: 1px solid #00d5aa;
    border-radius: 15px;
    box-sizing: border-box;
}
.ipt_box input {
    display: block;
    width: 100%;
    height: 70px;
    line-height: 70px;
    background: none;
    border: none;
    padding: 0 38px;
    box-sizing: border-box;
}
.ipt_box input::placeholder {
    font-size: 24px;
    font-weight: 700;
    color: #00d5aa;
}
.ipt_box label {
    font-size: 18px;
    font-weight: 700;
    color: #00d5aa;
    position: absolute;
    top: 6px;
    left: 38px;
    opacity: 0;
}
.ipt_box input:focus,
.ipt_box input:not(:placeholder-shown) {
    height: 48px;
    line-height: 48px;
    font-size: 24px;
    font-weight: 500;
    margin-top: 22px;
}
.ipt_box input:focus + label,
.ipt_box input:not(:placeholder-shown) + label {
    opacity: 1;
}
.color_error {
    color: #fa5d01 !important;
}
.color_secondary {
    color: #02bdc4 !important;
}
.link_text {
    color: #00d5aa !important;
    border-bottom: 1px solid #00d5aa !important;
}
.ipt_box input:focus::placeholder {
    color: transparent;
}

/* info txt */
.info_txt {
    margin-top: 16px;
}
.info_txt li {
    font-size: 16px;
    line-height: 20px;
    list-style: disc;
    list-style-position: inside;
    text-indent: -23px;
    padding-left: 23px;
}
.info_txt li .link_text {
    font-size: 16px;
    line-height: 16px;
}

/* layer */
.layer_deem {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    z-index: 500;
    display: none;
}
.layer_wrap {
    width: 800px;
    height: auto;
    min-height: 332px;
    max-height: calc(100vh - 100px);
    border: 3px solid rgba(172,172,172,.5);
    background: #000;
    border-radius: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 550;
    align-items: center;
    display: none;
}
.layer_wrap > .layer_close {
    position: absolute;
    top: 34px;
    right: 34px;
    z-index: 90;
}
.layer_wrap .layer_body {
    width: 100%;
    max-height: calc(100vh - 100px);
    padding: 103px 53px;
    box-sizing: border-box;
    overflow-y: auto;
}
.layer_wrap .layer_tit_wrap {
    margin-top: -7px;
}
.layer_wrap .layer_tit_wrap .tit {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #d1d1d1;
    text-align: center;
}
.layer_wrap .layer_tit_wrap .desc {
    font-size: 18px;
    color: #969696;
    text-align: center;
    margin-top: 14px;
}
.layer_wrap .layer_text {
    font-size: 18px;
    color: #969696;
    text-align: center;
    margin-top: -6px;
}
.layer_wrap.media_layer {
    width: 1440px;
    border: 0;
    overflow: visible;
}
.layer_wrap.media_layer > .layer_close {
    top: 0;
    right: -80px;
}
.layer_wrap.media_layer .layer_body {
    padding: 0;
    max-height: 100%;
    overflow: visible;
}
.layer_wrap.media_layer #video_cont {
    aspect-ratio: 16 / 9;
}
.layer_wrap.media_layer iframe,
.layer_wrap.media_layer video {
    width: 100%;
    height: 100%;
    border: 0;
}

/* class */
.hide {
    display: none !important;
}

/* border_box */
.border_box {
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    position: relative;
    box-sizing: border-box;
}
.border_box > * {
    z-index: 20;
}
.border_box::after {
    content: '';
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border: 2px solid rgba(14,172,192,.5);
    border-radius: 15px;
    box-sizing: border-box;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: -1;
}
.border_box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: inherit;
    background: linear-gradient(-50deg, #0599ce, #00ebc7);
    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* selectbox */
.selectbox {
    width: 100%;
    position: relative;
    cursor: pointer;
    user-select: none;
}
.selectbox select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.selected {
    padding: 12px;
    border: 1px solid #46474a;
    border-radius: 3px;
    font-size: 18px;
    line-height: 18px;
    position: relative;
    background: #063d37;
    color: #00d5aa;
}
.selected::after {
    content: "";
    width: 38px;
    height: 100%;
    background: url(../images/common/selec_arrow.png) no-repeat center #07171a;
    background-size: 13px 8px;
    border-left: 1px solid #46474a;
    border-radius: 0 3px 3px 0;
    position: absolute;
    top: 0;
    right: 0;
}
.options {
    display: none;
    width: calc(100% - 41px);
    position: absolute;
    top: calc(100% + -1px);
    left: 0;
    right: 0;
    background: #07171a;
    border: 1px solid #46474a;
    border-radius: 0 0 3px 3px;
    max-height: 180px;
    overflow-y: auto;
    z-index: 10;
}
.selectbox.active .options {
    display: block;
}
.options li {
    padding: 12px;
    font-size: 18px;
    line-height: 18px;
    color: #5a5d67;
}
.options li:hover {
    background: #063d37;
    color: #00d5aa;
}

/* table */
.round_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
}
.round_table th,
.round_table td {
    padding: 15px 16px;
}
.round_table thead th {
    background: #0a2b39;
    border-right: 1px solid #46474a;
    text-align: center;
}
.round_table td {
    background: #081c24;
    border-right: 1px solid #46474a;
    border-bottom: 1px solid #46474a;
    text-align: center;
}
.round_table tbody th {
    border-right: 1px solid #46474a;
}
.round_table thead th:first-child { 
    border-top-left-radius: 12px; 
}
.round_table thead th:last-child { 
    border-top-right-radius: 12px;
    border-right: 0;
}
.round_table td:last-child,
.round_table tbody th:last-child { 
    border-right: 0;
}
.round_table tr:last-child td:first-child { 
    border-bottom-left-radius: 12px; 
}
.round_table tr:last-child td:last-child { 
    border-bottom-right-radius: 12px; 
}
.round_table tr:last-child td {
    border-bottom: none;
}

/* top button */
.top_btn {
    position: fixed;
    bottom: 80px;
    right: 60px;
    display: none;
}
.top_btn.show {
    display: block;
}


/* main */
.main {
    width: 100%;
    min-height: 100vh;
    background: url(../images/main/bg.jpg) no-repeat center top;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main .main_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
}
.main .main_tit {
    margin-top: 26px;
}
.main .main_tit span {
    display: block;
    font-size: 85px;
    line-height: 85px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff 20%, #fff3c2 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
    font-weight: 900;
}
.main .main_tit span:nth-of-type(2) {
    margin-top: -2px;
}
.main .main_stit {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 28px;
}
.main .gr_btn {
    margin-top: 29px;
}

/* cookies */
.cookies_wrap {
    width: 100%;
    padding: 40px 0;
    background: rgba(0,0,0,.95);
    position: fixed;
    bottom: 0;
    left: 0;
}
.cookies_wrap .close_btn {
    position: absolute;
    top: 30px;
    right: 60px;
}
.cookies_wrap .inner {
    display: flex;
    flex-direction: column;
}
.cookies_wrap p {
    font-size: 18px;
    line-height: 28px;
    color: #969696;
}
.cookies_wrap .accept_btn {
    width: 180px;
    height: 46px;
    line-height: 46px;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 500;
    background: #6a6a6a;
    display: block;
    margin-left: auto;
    margin-top: -12px;
    color: #000;
}

/* pre regist */
.pre_regist_wrap {
    background: url(../images/preRegist/bg_01.webp) no-repeat center top;
    background-size: cover;
}
.no_webp .pre_regist_wrap {
    background: url(../images/preRegist/bg_01.jpg) no-repeat center top;
    background-size: cover;
}
.pre_regist_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.pre_regist_box > div {
    width: 715px;
    height: 719px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pre_regist_box > div > * {
    position: relative;
    z-index: 15;
}
.pre_regist_box h3 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-top: 38px;
}
.pre_regist_box .reward_item {
    margin-top: 68px;
    text-align: center;
}
.pre_regist_box .reward_item p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
}
.pre_regist_box .reward_item p span {
    font-size: 30px;
    color: #00d5aa;
    vertical-align: -5px;
}
.pre_regist_box .store_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 38px;
}
.pre_regist_box .store_wrap a {
    display: block;
    margin: 0 10px;
}
.pre_regist_box .reward_area .txt {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin-top: 22px;
}
.pre_regist_box .regist_area fieldset {
    max-width: 615px;
}
.pre_regist_box .regist_area .desc {
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    text-align: center;
    margin-top: 6px;
}
.pre_regist_box .regist_chk {
    padding-bottom: 12px;
    border-bottom: 1px solid #fffcdc;
    position: relative;
    margin-top: 30px;
    margin-bottom: 15px;
}
.pre_regist_box .regist_chk .chk_box {
    border-color: #fffcdc;
}
.pre_regist_box .regist_chk .chk_text {
    font-weight: 700;
    color: #fffcdc;
}
.pre_regist_box .chk_text a {
    font-weight: 700;
    border-bottom: 1px solid #ffec9f;
}
.pre_regist_box .regist_chk button {
    font-size: 18px;
    font-weight: 700;
    color: #00d5aa;
    position: absolute;
    bottom: 10px;
    right: 0;
}
.pre_regist_box .regist_chk .notice_ico {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/common/notice_ico.png) no-repeat center;
    background-size: contain;
    margin-right: 5px;
    vertical-align: -4px;
}
.pre_regist_box .regist_area .ipt_box {
    margin-top: 37px;
}
.pre_regist_box .regist_area .ipt_box input {
    width: 606px;
}
.pre_regist_box .regist_area .gr_btn {
    margin: 38px auto 0;
}

/* regist notice layer */
.regist_notice_layer .info_txt {
    margin-top: 28px;
}
.regist_notice_layer .info_txt li {
    font-size: 18px;
    line-height: 26px;
    color: #969696;
}

/* unlock event*/
.unlock_event_wrap {
    background: url(../images/preRegist/bg_02.webp) no-repeat center top;
    background-size: cover;
}
.no_webp .unlock_event_wrap {
    background: url(../images/preRegist/bg_02.jpg) no-repeat center top;
    background-size: cover;
}
.unlock_event .total_num {
    font-size: 85px;
    font-weight: 700;
    color: #ff4f10;
    text-align: center;
    margin-top: 38px;
}
.unlock_event .bar_wrap {
    width: 100%;
    position: relative;
    margin-top: 18px;
}
.unlock_event .bar_wrap .bar_outer {
    width: 100%;
    height: 39px;
    background: url(../images/preRegist/bar_outer.png) no-repeat left center;
    background-size: cover;
}
.unlock_event .bar_wrap .bar_inner {
    height: 39px;
    background: url(../images/preRegist/bar_inner.png) no-repeat left center;
    background-size: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
}
.unlock_event .item_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.unlock_event .item_list .num {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
    margin-top: 20px;
}
.unlock_event .item_list .num::after {
    content: '';
    width: 34px;
    height: 30px;
    background: url(../images/preRegist/bar_arrow.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: -29px;
    left: 50%;
    transform: translateX(-50%);
}
.unlock_event .item_list .item_img {
    margin-top: 10px;
    position: relative;
}
.unlock_event .item_list .item_img .item_name {
    width: 100%;
    height: 130px;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}
.unlock_event .item_list .clear .item_img::after {
    content: 'CLEAR';
    width: 280px;
    height: 382px;
    background: url(../images/preRegist/clear_img.png) no-repeat center;
    background-size: cover;
    font-size: 28px;
    font-weight: 900;
    padding-top: 126px;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}


/* jackpot */
.jackpot_wrap {
    background: url(../images/preRegist/bg_03.webp) no-repeat center top;
    background-size: cover;
}
.no_webp .jackpot_wrap {
    background: url(../images/preRegist/bg_03.jpg) no-repeat center top;
    background-size: cover;
}
.million_jackpot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 38px;
}
.million_jackpot .round_area {
    width: 570px;
    padding: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.million_jackpot .round_area .round_num {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: -15px;
}
.million_jackpot .round_area .round_date {
    font-weight: 600;
    line-height: 28px;
}
.million_jackpot .round_area ul {
    margin-top: 25px;
}
.million_jackpot .round_area ul li {
    width: 100%;
    padding: 53px 0;
    text-align: center;
    background: rgba(10,47,64,.8);
    border-radius: 15px;
    margin-top: 10px;
}
.million_jackpot .round_area ul li:nth-child(2) {
    background: rgba(10,47,64,.5);
    padding: 33px 0;
}
.million_jackpot .round_area ul li:nth-child(3) {
    background: rgba(10,47,64,.25);
    padding: 20px 0;
}
.million_jackpot .round_area ul li dl dt {
    font-size: 22px;
    font-weight: 700;
    margin-top: -8px;
}
.million_jackpot .round_area ul li dl dd {
    font-size: 30px;
    font-weight: 700;
    color: #00d5aa;
    margin: -2px 0 -7px;
}
.million_jackpot .round_area ul li dl dd .cross_ico {
    display: inline-block;
    width: 23px;
    height: 23px;
    background: url(../images/preRegist/cross_ico.png) no-repeat center;
    background-size: contain;
    vertical-align: -1px;
}
.million_jackpot .round_area ul li dl dd strong {
    display: block;
    font-size: 28px;
    color: #00b7e3;
    margin-top: -7px;
    font-weight: 700;
}
.million_jackpot .my_area {
    width: 820px;
    height: 314px;
}
.million_jackpot .my_area .auth_guest {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.million_jackpot .my_area .auth_guest .btn_area {
    display: flex;
    align-items: center;
    justify-content: center;
}
.million_jackpot .my_area .auth_guest .btn_area a {
    margin: 0 30px;
}
.million_jackpot .my_area .auth_guest p {
    margin-top: 37px;
}
.million_jackpot .my_area .auth_user {
    width: 100%;
    height: 100%;
}
.million_jackpot .my_area .auth_user ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.million_jackpot .my_area .auth_user li {
    width: 267px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.million_jackpot .my_area .auth_user li dt {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.million_jackpot .my_area .auth_user li p {
    font-size: 70px;
    font-weight: 700;
}
.million_jackpot .my_area .auth_user li p
.million_jackpot .my_area .auth_user li .gr_btn {
    margin-top: 6px;
}

.million_jackpot .info_area {
    width: 100%;
    height: 474px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10px;
    padding: 0 45px;
}
.million_jackpot .info_area p {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    margin-top: 20px;
}
.million_jackpot .info_area p:nth-of-type(1) {
    margin-top: 0;
}
.million_jackpot .info_area ul {
    padding-left: 24px;
    box-sizing: border-box;
    margin-top: 5px;
}
.million_jackpot .info_area ul li {
    line-height: 28px;
    font-weight: 300;
}

.jackpot_result {
    width: 100%;
    height: auto;
    margin-top: 40px;
    padding: 50px 54px;
}
.ball_list ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ball_list ul .ball {
    display: block;
    width: 56px;
    height: 56px;
    line-height: 54px;
    border: 1px solid #33353e;
    border-radius: 50%;
    box-sizing: border-box;
    text-align: center;
    font-size: 23px;
    color: #d0d5dd;
    font-weight: 500;
}
.ball_list.big_ball ul .ball {
    width: 68px;
    height: 68px;
    line-height: 65px;
    background: transparent;
    box-shadow: inset 1px 1px 16px #000;
}
.ball_list.big_ball ul .ball span {
    font-size: 28px;
    background: linear-gradient(to bottom, #d4b475 10%, #fff4df 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}
.ball_list ul.line_01 .ball.active,
.ball_list ul .ball.line_01 {
    background: #4189a5 !important;
    border-color: #4189a5 !important;
    box-shadow: none;
}
.ball_list ul.line_11 .ball.active,
.ball_list ul .ball.line_11 {
    background: #c59d4b !important;
    border-color: #c59d4b !important;
    box-shadow: none;
}
.ball_list ul.line_21 .ball.active,
.ball_list ul .ball.line_21 {
    background: #a23320 !important;
    border-color: #a23320 !important;
    box-shadow: none;
}
.ball_list ul.line_31 .ball.active,
.ball_list ul .ball.line_31 {
    background: #5d6517 !important;
    border-color: #5d6517 !important;
    box-shadow: none;
}
.ball_list ul.line_41 .ball.active,
.ball_list ul .ball.line_41 {
    background: #14676c !important;
    border-color: #14676c !important;
    box-shadow: none;
}
.ball_list ul.line_51 .ball.active,
.ball_list ul .ball.line_51 {
    background: #6c3952 !important;
    border-color: #6c3952 !important;
    box-shadow: none;
}
.ball_list ul.line_61 .ball.active,
.ball_list ul .ball.line_61 {
    background: #855936 !important;
    border-color: #855936 !important;
    box-shadow: none;
}
.jackpot_result .ball_list .ball {
    margin: 0 10px;
}
.jackpot_result .result_select {
    width: 248px;
    position: absolute;
    top: 50px;
    right: 54px;
}
.jackpot_result .result_table {
    margin-top: 40px;
}
.jackpot_result .result_table .cross_ico {
    display: inline-block;
    width: 23px;
    height: 23px;
    background: url(../images/preRegist/cross_ico.png) no-repeat center;
    background-size: contain;
    vertical-align: -5px;
    margin-right: 9px;
}

.wallet_address_layer .ipt_box,
.wallet_address_layer02 .ipt_box {
    margin: 45px auto 0;
    width: 610px;
}

.layer_wrap.ticket_entry_layer .layer_tit_wrap > * {
    text-align: left;
}
.ticket_entry_layer .layer_body {
    position: relative;
}
.ticket_entry_layer .my_tk {
    width: 224px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 5em;
    background-image: linear-gradient(#101011, #101011), linear-gradient(to bottom, #000, #353741);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    top: 92px;
    right: 55px;
}
.ticket_entry_layer .my_tk span {
    display: block;
    line-height: 35px;
    font-size: 20px;
    font-weight: 300;
    color: #d0d5dd;
}
.ticket_entry_layer .my_tk span strong {
    font-size: 24px;
    color: #00d5aa;
    margin-left: 20px;
}
.ticket_entry_layer .ball_list {
    margin-top: 45px;
}
.ticket_entry_layer .ball_list ul {
    justify-content: space-between;
}
.ticket_entry_layer .ball_list ul.line_61 {
    max-width: 610px;
}
.ticket_entry_layer .ball_list ul li {
    margin: 6px 0;
    cursor: pointer;
}
.ticket_entry_layer .select_ball {
    width: 100%;
    padding: 29px 32px;
    background: rgba(0,0,0,.2);
    border: 1px solid #33353e;
    border-radius: 10px;
    margin-top: 26px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ticket_entry_layer .select_ball .ball_list {
    margin-top: 0;
}
.ticket_entry_layer .select_ball .ball_list ul {
    justify-content: center;
}
.ticket_entry_layer .select_ball .ball_list ul li {
    margin-right: 20px;
}
.ticket_entry_layer .select_ball .btn_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ticket_entry_layer .select_ball .btn_wrap button {
    width: 180px;
    height: 46px;
    line-height: 46px;
}
.ticket_entry_layer .select_ball .btn_wrap .quick_btn {
    background: #092b39;
    margin-top: 0;
}
.ticket_entry_layer .select_ball .btn_wrap .clear_btn {
    background: #33353e;
    color: #8c8d92;
    margin-top: 24px;
}

.invite_code_layer .code_copy {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
}
.invite_code_layer .code_copy img {
    vertical-align: -8px;
    margin-left: 6px;
}
.invite_code_layer .layer_text {
    margin-top: 38px;
}



.my_post_layer .link_check {
    margin-top: 40px;
}
.my_post_layer .ipt_box {
    width: 610px;
    border-color: #969696;
    border-radius: 10px;
    margin-top: 20px;
}
.my_post_layer .ipt_box button {
    display: block;
    width: 74px;
    height: 74px;
    border: 1px solid #969696;
    border-radius: 10px;
    position: absolute;
    top: 0;
    right: -85px;
    background: url(../images/common/link_check.png) no-repeat center;
    background-size: 26px;
}
.my_post_layer .ipt_box.is_active {
    border-color: #00d5aa;
}
.my_post_layer .ipt_box.is_active button {
    border: 1px solid #00d5aa;
    background: url(../images/common/link_check_on.png) no-repeat center;
    background-size: 26px;
}
.my_post_layer .ipt_box.disabled,
.my_post_layer .ipt_box.disabled button {
    border-color: #969696 !important;
}
.my_post_layer .ipt_box.disabled button {
    background: url(../images/common/link_check_off.png) no-repeat center !important;
    background-size: 26px !important;
}
.my_post_layer .ipt_box.disabled::after,
.my_post_layer .ipt_box.disabled button::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(150,150,150,.2);
    border-radius: 10px;
    position: absolute;
    top: 0;
    right: 0;
}
.my_post_layer .ipt_box.disabled input {
    color: #969696 !important;
    height: 70px !important;
    line-height: 70px !important;
    font-size: 24px;
    font-weight: 500 !important;
    margin-top: 0 !important;
}
.my_post_layer .ipt_box.disabled label {
    display: none !important;
}


/* class */
.class_wrap {
    background: url(../images/gameInfo/bg_01.webp) no-repeat center top;
    background-size: cover;
}
.no_webp .class_wrap {
    background: url(../images/gameInfo/bg_01.jpg) no-repeat center top;
    background-size: cover;
}

.class_slide .bg_name {
    display: block;
    font-size: 265px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 75px;
    position: relative;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent;
}
.class_slide .warrior .bg_name {
    background: linear-gradient(to right, #c70a26, #980614);
}
.class_slide .jester .bg_name {
    background: linear-gradient(to right, #ffba00, #ff7e00);
}
.class_slide .priest .bg_name {
    background: linear-gradient(to right, #d34fdf, #ae2bc3);
}
.class_slide .mage .bg_name {
    background: linear-gradient(to right, #ff9335, #ff4f1d);
}
.class_slide .knight .bg_name {
    background: linear-gradient(to right, #89e342, #4acb24);
}
.class_slide .char_img {
    position: absolute;
    top: -10px;
    left: 0;
}
.class_slide .char_info {
    display: flex;
    align-items: center;
    margin-top: 58px;
    padding-bottom: 3px;
    border-bottom: 1px solid #858e85;
}
.class_slide .char_info > * {
    display: flex;
    align-items: center;
}
.class_slide .char_info .name {
    margin-right: 21px;
}
.class_slide .char_info .name p {
    font-size: 48px;
    font-weight: 700;
    margin-left: 16px;
}
.class_slide .char_info dl {
    margin-top: 20px;
}
.class_slide .char_info dl dt {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 25px;
}
.class_slide .char_info dl dd {
    font-size: 22px;
    margin-left: 8px;
}
.class_slide .char_desc {
    font-size: 24px;
    line-height: 30px;
    padding-left: 20px;
    margin-top: 16px;
}
.class_thum ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 44px;
}
.class_thum ul li {
    width: auto !important;
    cursor: pointer;
    margin: 0 7px;
}
.class_thum ul li .thum_on {
    display: none;
}
.class_thum ul li.swiper-slide-thumb-active .thum_on {
    display: block;
}
.class_thum ul li.swiper-slide-thumb-active .thum_off {
    display: none;
}
.class_slide .class_nav_wrap {
    width: 100%;
    position: absolute;
    top: calc(50% - 80px);
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 150;
}
.class_slide .class_nav {
    width: 38px;
    height: 66px;
    background: url(../images/common/slide_arrow.png) no-repeat center;
    background-size: contain;
    cursor: pointer;
}
.class_slide .class_nav.class_next {
    transform: rotate(180deg);
}


/* game_content */
.game_contents_wrap {
    background: url(../images/gameInfo/bg_02.webp) no-repeat center top;
    background-size: cover;
}
.no_webp .game_contents_wrap {
    background: url(../images/gameInfo/bg_02.jpg) no-repeat center top;
    background-size: cover;
}
.game_contents_wrap ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}
.game_contents_wrap ul li {
    width: 446px;
    height: 370px;
    margin: 23.5px 25px;
    padding: 175px 70px 0;
    box-sizing: border-box;
    cursor: pointer;
}
.game_contents_wrap ul li:nth-child(1) {
    margin-left: 0;
}
.game_contents_wrap ul li:nth-child(3) {
    margin-right: 0;
}
.game_contents_wrap ul li .ico_area {
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
}
.game_contents_wrap ul li .ico_area p {
    width: 86px;
    height: 98px;
    background: url(../images/gameInfo/play_ico.png) no-repeat center;
    background-size: contain;
    margin: 0 auto;
    display: none;
}
.game_contents_wrap ul li dt {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-top: -6px;
}
.game_contents_wrap ul li dd {
    font-size: 22px;
    line-height: 26px;
    font-weight: 300;
    text-align: center;
    margin-top: 20px;
}
.game_contents_wrap ul li:hover .ico_area img {
    display: none;
}
.game_contents_wrap ul li:hover .ico_area p {
    display: block;
}
.game_contents_wrap ul li:hover dl > * {
    color: #03beb5;
}

.media_wrap {
    background: url(../images/media/bg_01.webp) no-repeat center top;
    background-size: cover;
}
.no_webp .media_wrap {
    background: url(../images/media/bg_01.jpg) no-repeat center top;
    background-size: cover;
}
.media_wrap .thum_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 53px;
}
.media_wrap .thum_area p {
    font-size: 30px;
    font-weight: 600;
    margin-top: 10px;
}

/* footer */
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #171717;
    padding: 80px 0;
    position: relative;
}
footer .foot_link a {
    display: inline-block;
    color: #8b8b8b;
    font-size: 14px;
    line-height: 14px;
    border-left: 1px solid #8b8b8b;
    font-weight: 500;
    padding: 0 13px;
    margin-left: -4px;
}
footer .foot_link {
    margin-top: -10px;
    margin-bottom: 26px;
}
footer .foot_link a:first-child {
    border: 0;
}
footer .copyright {
    color: #8b8b8b;
    font-size: 14px;
    font-weight: 500;
    padding: 0 13px;
    margin-top: 24px;
    margin-bottom: -4px;
}
.selectbox.lang_select {
    width: 177px;
    position: absolute;
    top: 58px;
    right: 60px;
}
.selectbox.lang_select .selected {
    padding: 11px;
    box-sizing: border-box;
    background: #363636;
    color: rgba(255,255,255,.7);
    border-radius: 0;
    font-size: 14px;
    line-height: 14px;
}
.selectbox.lang_select .selected::after {
    width: 17px;
    height: 17px;
    background: url(../images/common/selec_g_ico.png) no-repeat center;
    background-size: contain;
    border: 0;
    top: 11px;
    right: 14px;
}
.selectbox.lang_select .options {
    max-height: 340px;
    width: 100%;
    top: calc(100% + -343px);
    border: 0;
    border-radius: 0;
    background: #080806;
}
.selectbox.lang_select .options li {
    font-size: 14px;
    line-height: 14px;
    color: rgba(132,132,132.7);
}
.selectbox.lang_select .options li:hover {
    background: #363636;
    color: rgba(255,255,255,.7);
}

/* tokenomics */
.tokenomics_wrap {
    background: url(../images/tokenomics/bg.webp) no-repeat center top;
    background-size: cover;
}
.no_webp .tokenomics_wrap {
    background: url(../images/tokenomics/bg.jpg) no-repeat center top;
    background-size: cover;
}
.tokenomics_wrap .border_box {
    padding: 53px;
    margin-top: 52px;
}
.tokenomics_wrap .border_box h3 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: -6px;
}
.tokenomics_wrap .border_box .desc {
    font-size: 18px;
    line-height: 28px;
    margin-top: 18px;
}
.tokenomics_wrap .flow_wrap {
    width: 1334px;
    height: 690px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    background: url(../images/tokenomics/cont_img.png) no-repeat center;
    background-size: contain;
    margin-top: 76px;
}
.tokenomics_wrap .flow_wrap > div {
    width: 623px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tokenomics_wrap .flow_wrap p {
    width: 286px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    font-weight: 700;
}
.tokenomics_wrap .flow_wrap > div div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tokenomics_wrap .flow_wrap .flow_03 {
    margin-top: 110px;
}
.tokenomics_wrap .flow_wrap .ruby_ico {
    display: inline-block;
    width: 45px;
    height: 41px;
    background: url(../images/tokenomics/ruby_ico.png) no-repeat center;
    background-size: contain;
    margin-right: 8px;
}
.tokenomics_wrap .flow_wrap .mile_ico {
    display: inline-block;
    width: 43px;
    height: 43px;
    background: url(../images/tokenomics/mile_ico.png) no-repeat center;
    background-size: contain;
    margin-right: 8px;
}
.tokenomics_wrap .flow_wrap .flow_02 {
    margin-top: 110px;
}
.tokenomics_wrap .flow_wrap .right {
    width: 637px;
}
.tokenomics_wrap .flow_wrap .flow_07 {
    margin-top: 310px;
}
.tokenomics_wrap .flow_wrap .flow_06 {
    margin-top: 11px;
}
.tokenomics_wrap .flow_wrap .flow_05 {
    margin-top: 11px;
    font-weight: 400;
}
.tokenomics_wrap .flow_wrap .flow_05 span {
    position: relative;
    z-index: 5;
}
.tokenomics_wrap .flow_wrap .flow_05 span::after {
    content: 'MINT & BURN';
    -webkit-text-stroke: 6px #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.tokenomics_wrap dl {
    margin-top: 63px;
}
.tokenomics_wrap dl dt {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.tokenomics_wrap dl dd {
    font-size: 18px;
    line-height: 22px;
    margin-top: 14px;
}
.tokenomics_wrap table {
    margin-top: 30px;
}
.tokenomics_wrap .round_table thead th {
    background: #19475a;
}
.tokenomics_wrap .round_table tbody th {
    background: #0a2b39;
}
.tokenomics_wrap .txt {
    font-size: 18px;
    margin-top: 16px;
}

/* system */
.system_wrap {
    background: url(../images/system/bg.webp) no-repeat center top;
    background-size: cover;
}
.no_webp .system_wrap {
    background: url(../images/system/bg.jpg) no-repeat center top;
    background-size: cover;
}
.system_wrap .border_box {
    padding: 50px;
    margin-top: 53px;
}
.system_wrap .round_table thead tr th {
    height: 150px;
    font-size: 24px;
    font-weight: 700;
    background: #19475a;
    box-sizing: border-box;
    border-color: #0a2b39;
}
.system_wrap .round_table thead tr th.sub_th {
    height: 78px;
    font-size: 18px;
    font-weight: 400;
    background: #0a2b39;
    border-radius: 0 !important;
    border-bottom: 1px solid #46474a;
    border-color: #46474a;
}
.system_wrap .round_table tbody th {
    background: #0a2b39;
    border-bottom: 1px solid #46474a;
}
.system_wrap .round_table tbody tr:last-child th {
    border-bottom: 0;
}
.system_wrap .round_table tbody td {
    height: 110px;
    padding: 15px 30px;
}
.system_wrap .round_table i {
    display: inline-block;
    margin-right: 20px;
    vertical-align: -13px;
}
.system_wrap .round_table .and_ico {
    width: 40px;
    height: 46px;
    background: url(../images/system/and_ico.png) no-repeat center;
    background-size: contain;
}
.system_wrap .round_table .ios_ico {
    width: 40px;
    height: 46px;
    background: url(../images/system/ios_ico.png) no-repeat center;
    background-size: contain;
}
.system_wrap .round_table .pc_ico {
    width: 40px;
    height: 46px;
    background: url(../images/system/pc_ico.png) no-repeat center;
    background-size: contain;
}


@media (max-width: 2090px) {
    header, aside, .main, .inner, .layer_wrap, footer, .top_btn {
        zoom: 0.85;
    }
}
@media (max-width: 1680px) {
    header, aside, .main, .inner, .layer_wrap, footer, .top_btn {
        zoom: 0.75;
    }
}