@charset "utf-8";
.head {
    align-items: center;
    box-shadow: var(--bx-shadow4);
    min-height: 8rem;
    position: sticky;
    z-index: 10;
    top: 0;
    background-color: var(--originWhite);
}
.head .head_cover {
    display: flex;
    justify-content: space-between;
    background: var(--originWhite);
    padding: 1em;
    border-bottom: 1px solid #f2f2f2;
}
.head .head_l {
    display: flex;
    align-items: center;
}
.head .copy-link {
    background-color: var(--pointColor);
    border-radius: 10rem;
    color: var(--originWhite);
    padding: 0.8rem;
    width: 4rem;
    height: 4rem;
}
.logo_head {
    max-width: 12rem;
    font-size: 2.4rem;
    font-weight: 700;
    a {
        color: #000;
    }
}
.ham_btn {
    display: flex;
    flex-direction: column;
    margin-right: 1.5rem;
    background: linear-gradient(to bottom, #507cff, #5a4ef9);
    box-shadow: 10px 13px 42px rgba(72, 77, 218, 0.8);
    border-radius: 0.5rem;
    padding: 1rem;
}
.ham_btn * {
    transition: 0.5s;
}
.ham_btn span {
    display: inline-flex;
    width: 2.4rem;
    height: 0.2rem;
    background-color: var(--pointReverse);
    margin-bottom: 0.4rem;
    border-radius: 1rem;
}
.ham_btn span:nth-child(1) {
    transform: rotate(-45deg) translate(-1px, 1px);
    width: 1rem;
}
.ham_btn.on span:nth-child(1) {
    transform: rotate(45deg) translate(1.1rem, -0.8rem);
}
.gnb {
    display: flex;
    background-color: var(--defaultBg);
    width: 100%;
    max-width: 28rem;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 12;
    transition: 0.5s;
    container-name: gnb-container;
    container-type: inline-size;
    border-radius: 0;
    box-shadow: var(--bxShadow8);
    border-right: 1px solid #f2f2f2;
}
.gnb_bg {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 11;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: none;
}
.gnb.on {
    max-width: 8rem;
    transition: 0.5s;
}
.gnb_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 4rem 0;
    align-items: center;
}
.gnb_list {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.gnb_list > ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.5rem;
}
.gnb_list > ul > li {
    display: flex;
    flex-direction: column;
    transition: 0.5s;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
}
.gnb_list > ul > li > button,
.gnb_list > ul > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    line-height: 4.8rem;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
}
.gnb_list > ul > li > button > p,
.gnb_list > ul > li > a > p {
    color: var(--textColor);
    font-size: 1.4rem;
}
.gnb_list > ul > li > button > span,
.gnb_list > ul > li > a > span {
    color: var(--textColor);
    margin: 0 1rem;
    font-size: 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
}
.gnb_list > ul > li > button > i,
.gnb_list > ul > li > a > i {
    display: inline-flex;
    justify-self: flex-end;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--originWhite);
}
.gnb_list > ul > li > button > i > span,
.gnb_list > ul > li > a > i > span {
    transition: 0.5s;
    color: var(--textColor);
}
.gnb_list > ul > li:hover {
    background-color: var(--pointColor);
    transition: 0.5s;
}
.gnb_list > ul > li.active {
    background-color: var(--pointColor);
}
.gnb_list > ul > li.active > button > p,
.gnb_list > ul > li.active > a > p {
    color: var(--originWhite);
}
.gnb_list > ul > li.active > button > span,
.gnb_list > ul > li.active > a > span {
    color: var(--originWhite);
}
.gnb_list > ul > li.active > button > i > span,
.gnb_list > ul > li.active > a > i > span {
    transform: rotate(180deg);
    transition: 0.5s;
    color: var(--originWhite);
}
.gnb_list > ul > li:hover > button,
.gnb_list > ul > li:hover > a {
    color: var(--originWhite);
}
.gnb_list > ul > li:hover > button > span,
.gnb_list > ul > li:hover > a > span {
    color: var(--originWhite);
}
.gnb_list > ul > li:hover > button > p,
.gnb_list > ul > li:hover > a > p {
    color: var(--originWhite);
}
.gnb_list > ul > li:hover > button > i,
.gnb_list > ul > li:hover > a > i {
    color: var(--originWhite);
}
.gnb_list > ul > li:hover > button > i > span,
.gnb_list > ul > li:hover > a > i > span {
    color: var(--originWhite);
}
.gnb_list > ul > li > ul {
    display: none;
    flex-direction: column;
    padding: 1em;
    background-color: var(--pointSecond);
}
.gnb_list > ul > li > ul > li > a {
    color: #fff;
    font-size: 1.4rem;
    line-height: 3rem;
    transition: 0.5s;
    border-radius: 1em;
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
}
.gnb_list > ul > li > ul > li > a.active {
    background-color: var(--pointColorHover);
}
.gnb_list > ul > li > ul > li > a:hover {
    background-color: var(--pointColorHover);
    transition: 0.5s;
}
.gnb_list > ul > li > ul > li > a > span {
    font-size: 1.2rem;
    margin: 0 0.5rem;
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
}
.gnb_util {
    width: calc(100% - 2rem);
    justify-content: center;
    display: flex;
}
.gnb_util a {
    background-color: var(--pointColor);
    color: var(--originWhite);
    width: 100%;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    border-radius: 10rem;
    line-height: 4.4rem;
}
.gnb_util a:hover {
    background-color: var(--pointColorHover);
    transition: 0.5s;
    color: #fff;
}
.gnb_util a span {
    margin: 0 0.5rem;
    width: 2.4rem;
    height: 2.4rem;
}
.info_box {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info_box a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.info_box a > img {
    color: var(--originWhite);
    font-size: 4rem;
    padding: 0;
    width: 7.4rem;
    height: 7.4rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.info_box .user-name {
    margin-top: 1rem;
    color: var(--pointColor);
    font-size: 1.4rem;
    font-weight: 700;
}
.info_box .user-total-info {
    margin-top: 0.5rem;
    color: var(--originWhite);
    display: flex;
    align-items: center;
    background-color: var(--pointColor);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 1.4rem;
}
.info_box .user-total-info span {
    font-size: 1.4rem;
    margin-right: 0.5rem;
    transform: translateY(-2px);
    width: 1.4rem;
    height: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sidebar-language-toggle-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    > div {
        position: inherit !important;
        transform: translateX(-10%);
    }
}
@container gnb-container (max-width:200px) {
    .gnb * {
        transition: none;
    }
    .gnb_list > ul > li > button,
    .gnb_list > ul > li > a {
        width: 4.8rem;
        height: 4.8rem;
        border-radius: 5rem;
        justify-content: center;
    }
    .gnb_list > ul > li > button > p,
    .gnb_list > ul > li > a > p {
        display: none;
    }
    .gnb_list > ul > li > button > i,
    .gnb_list > ul > li > a > i {
        display: none;
    }
    .gnb_list > ul > li > ul {
        position: absolute;
        left: calc(100% + 1.5rem);
        top: 0;
        z-index: 13;
        border-radius: 1rem;
        padding: 0.5rem;
        box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
    }
    .gnb_list > ul > li > ul > li > a {
        white-space: nowrap;
        padding: 0 1rem;
    }
    .gnb_list > ul > li > ul > li > a > span {
        width: 1rem;
        height: 1rem;
    }
    .gnb_util a {
        width: 4.8rem;
        height: 4.8rem;
    }
    .gnb_util a em {
        display: none;
    }
    .info_box {
        padding: 0.9rem;
    }
    .info_box .user-total-info {
        display: none;
    }
    .info_box a > img {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
        padding: 0s;
    }
    .info_box .user-name strong {
        font-size: 1.1rem;
    }
}
@media (max-width: 1200px) {
    .gnb {
        max-width: 8rem;
    }
    .gnb.on {
        max-width: 30rem;
    }
    .con {
        padding: 0 0 8rem 9rem;
    }
    .con.on {
        padding: 0 0 7.5rem 31rem;
    }
    .ham_btn span:nth-child(1) {
        transform: rotate(45deg) translate(1.2rem, -0.9rem);
    }
    .ham_btn.on span:nth-child(1) {
        transform: rotate(-45deg) translate(-1px, 1px);
        width: 1rem;
    }
}
@media (max-width: 720px) {
    .wrap {
        padding: 0;
    }
    .gnb {
        transform: translateX(-100%);
        max-width: 24rem;
        left: 0rem;
    }
    .gnb.on {
        max-width: 24rem;
        transform: translateX(0);
    }
    .con {
        padding: 0 0 7.5rem 0;
    }
    .con.on {
        padding: 0 0 7.5rem 0;
    }
    .info_box a > span {
        width: 3rem;
        height: 3rem;
        padding: 0;
        font-size: 2.4rem;
        padding: 1px;
    }
    .info_box {
        padding: 1rem;
    }
    .gnb_list > ul {
        padding: 1rem;
    }
    .gnb_list > ul > li > button,
    .gnb_list > ul > li > a {
        line-height: 4rem;
    }
    .gnb_list > ul > li > ul {
        padding: 1rem;
    }
    .gnb_list > ul > li > ul > li > a {
        line-height: 3.2rem;
    }
    .head {
        padding: 0 6rem 0 1rem;
        min-height: 6rem;
    }
    .con.on .head {
        padding: 0 6rem 0 2rem;
    }
    .logo_head {
        max-width: 10rem;
    }
    .ham_btn {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--pointColor);
        width: 4rem;
        height: 4rem;
        border-radius: 10rem;
        display: inline-flex;
        justify-content: space-around;
        align-items: center;
        margin-right: 0;
        padding: 0.7rem 0;
        overflow: hidden;
        z-index: 12;
    }
    .gnb_bg.on {
        display: block;
    }
    .ham_btn span {
        background-color: var(--originWhite);
        margin-bottom: 0;
        height: 0.3rem;
    }
    .ham_btn span:nth-child(1) {
        display: none;
    }
    .ham_btn.on span:nth-child(2) {
        transform: rotate(45deg) translate(0.6rem, 0.6rem);
    }
    .ham_btn.on span:nth-child(3) {
        transform: translateX(-200%);
    }
    .ham_btn.on span:nth-child(4) {
        transform: rotate(-45deg) translate(0.6rem, -0.6rem);
    }
}

.signup {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bgIndex);
    background-size: cover;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
}
.Member {
    width: 100%;
    max-width: 40rem;
    background: var(--indexBg);
    padding: 4.5rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--inputBorder);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--bxShadow4);
    position: relative;
    overflow: hidden;
}
.Member ul {
    margin-top: 3rem;
    width: 100%;
}
.Member ul li {
    margin-top: 1.5rem;
    width: 100%;
}
.Member ul li button {
    width: 100%;
}
.Member ul li h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--textColor);
}
.Member ul.login_form li p {
    display: flex;
    margin-top: 1rem;
    font-size: 1.4rem;
    justify-content: center;
    color: var(--textColor);
}
.login_form li:last-child {
    margin-top: 4rem;
}
.Member ul li p a {
    margin-left: 1rem;
    color: var(--pointColor);
}
.Member > img {
    width: 100%;
    max-width: 16rem;
}
.Member .text-danger {
    margin-top: 0.5rem;
    display: inline-flex;
}
.copy_txt {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
}
.copy_txt p {
    font-size: 1rem;
    text-align: center;
    color: var(--inputPlaceholder);
}
.language {
    position: absolute;
    right: 3rem;
    top: 1rem;
    line-height: 2rem;
}
.Member h6 {
    color: var(--textColor);
    font-weight: 700;
    position: relative;
}
.Member h6::after {
    position: absolute;
    content: "";
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.3rem;
    background-color: var(--pointColor);
}
.join_form {
    height: 80vh;
    overflow-y: scroll;
}
.join_form > ul > li > p {
    justify-content: flex-start;
    color: var(--originWhite);
    background-color: var(--pointColor);
    display: inline-flex;
    padding: 1rem 2rem 1rem 0.5rem;
    min-width: 12rem;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    border-radius: 5px 20px 0 0;
    align-items: center;
}
.join_form .material-symbols-outlined {
    font-size: 1.8rem;
    margin-right: 0.2rem;
}
.join_form::-webkit-scrollbar {
    width: 5px;
}
.join_form::-webkit-scrollbar-track {
    background: none;
}
.join_form::-webkit-scrollbar-thumb {
    background: var(--pointColor);
    border-radius: 5px;
}
.join_form::-webkit-scrollbar-thumb:hover {
    background: var(--pointColorHover);
}
.join_form > ul > li > button {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
}
.ip_btn {
    display: flex;
}
.ip_btn input {
    flex: 1;
}
.ip_btn button {
    max-width: 10rem;
    margin-left: 0.5rem;
}
@media (max-width: 720px) {
    .Member {
        border-radius: 0;
    }
}

.contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    container-name: contents-box;
    container-type: inline-size;
}
.contents_tit {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--inputBorder);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    justify-content: space-between;
    .contentsTitleText {
        display: flex;
        align-items: center;
        span {
            color: var(--pointColor);
            font-size: 4rem;
            margin-right: 2.4rem;
        }
        h2 {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            margin-bottom: 0;
            background: none;
            b {
                font-size: 2rem;
                font-weight: 700;
                color: #000;
            }
            span {
                font-size: 1.2rem;
                font-weight: 500;
                color: #999;
                line-height: 1.2;
            }
        }
    }
    button {
        background-color: var(--pointColor);
        color: var(--originWhite);
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 2.4rem;
        margin-left: 1rem;
        display: flex;
        align-items: center;
        transition: all 0.2s;
        img {
            max-width: 1.4rem;
            margin-left: 1rem;
        }
        &:hover {
            background-color: var(--pointColorHover);
        }
    }
}
.subcontents_tit {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--inputBorder);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    padding: 2rem 3rem;
    justify-content: space-between;
    width: 100%;
    .contentsTitleText {
        display: flex;
        align-items: center;
        span {
            color: var(--pointColor);
            font-size: 4rem;
            margin-right: 2.4rem;
        }
        h2 {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            margin-bottom: 0;
            background: none;
            b {
                font-size: 2rem;
                font-weight: 700;
                color: #000;
            }
            span {
                font-size: 1.2rem;
                font-weight: 500;
                color: #999;
                line-height: 1.2;
            }
        }
    }
    button {
        background-color: var(--pointColor);
        color: var(--originWhite);
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 2.4rem;
        margin-left: 1rem;
        display: flex;
        align-items: center;
        transition: all 0.2s;
        img {
            max-width: 1.4rem;
            margin-left: 1rem;
        }
        &:hover {
            background-color: var(--pointColorHover);
        }
    }
}
.info_notice_progress {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1.2rem;
    padding: 3rem;
}
.info_notice {
    flex-basis: calc(40% - 1rem);
}
.top_notice_box {
    flex-basis: calc(60% - 1rem);
    position: relative;
    display: flex;
    flex-direction: column;
}

.notice_list {
    display: flex;
    flex-direction: column;
}
.notice_list li a {
    font-size: 1.4rem;
    color: var(--inputColor);
    line-height: 4rem;
    padding: 0.5rem 2.4rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: var(--defaultBg);
    margin-bottom: 0.5rem;
    box-shadow: var(--bxShadow6);
    border-radius: 0.5rem;
    transition: 0.5s;
}
.notice_list li:last-child a {
    margin-bottom: 0;
}
.notice_list li a:hover {
    transform: translateY(0.05rem) scale(1.01);
    transition: 0.2s;
}
.notice_list li a span {
    font-size: 1.4rem;
}
/*
.notice_list li a b {
    max-width: 20rem;
    white-space: nowrap;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1.6rem;
}
.notice_list li a::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 0.2rem;
    background-color: var(--pointColor);
    border-radius: 1rem;
}
 */

.user_info_box {
    flex-basis: 100%;
}
.user_info_box ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}
.user_info_box ul li {
    display: flex;
    flex-basis: calc(33.3333% - 0.6rem);
    background-color: var(--defaultBg);
    padding: 1rem 0;
    border-radius: 2rem;
    box-shadow: var(--bxShadow6);
    flex-direction: column;
    align-items: center;
}
.user_info_box ul li span {
    padding: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 4rem;
    margin-bottom: 1rem;
}
.user_info_box ul li:nth-child(1) span {
    background-color: var(--freeBgBl);
    color: var(--freecolorBl);
}
.user_info_box ul li:nth-child(2) span {
    background-color: var(--freeBgOg);
    color: var(--freecolorOg);
}
.user_info_box ul li:nth-child(3) span {
    background-color: var(--freeBgGr);
    color: var(--freecolorGr);
}
.user_info_box ul li p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--inputLabel);
}
.user_info_box ul li strong {
    font-size: 1.6rem;
    color: var(--textColor);
    font-weight: 700;
}
.uib_inTxt {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cash_info_content {
    flex-basis: 100%;
    background-color: var(--defaultBg);
    padding: 1rem;
    border-radius: 2rem;
    box-shadow: var(--bxShadow6);
}

.user_total {
    flex-basis: calc(50% - 0.6rem);
    background-color: var(--defaultBg);
    padding: 1rem;
    border-radius: 2rem;
    box-shadow: var(--bxShadow6);
    margin-bottom: 1.2rem;
    align-items: center;
    display: flex;
}
.user_total ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.user_total ul li {
    display: flex;
    flex-basis: 50%;
    padding: 0 1rem;
    position: relative;
    align-items: center;
}
.user_total ul li > span {
    font-size: 3rem;
    padding: 1rem;
    border-radius: 5rem;
    width: 6rem;
    height: 6rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.2rem;
}
.user_total ul li:nth-child(1) {
    border-right: 1px solid var(--inputBorder);
}
.user_total ul li:nth-child(1) > span {
    background: var(--blueGradient);
    color: var(--originWhite);
}
.user_total ul li:nth-child(2) > span {
    background: var(--pinkGradient);
    color: var(--originWhite);
}
.user_total ul li .list_inner h4 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: var(--inputLabel);
}
.user_total ul li .list_inner span {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--pointColor);
}
.user_total ul li .list_inner a.more_btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.price_total {
    flex-basis: calc(50% - 0.6rem);
    background-color: var(--defaultBg);
    padding: 1rem;
    border-radius: 2rem;
    box-shadow: var(--bxShadow6);
    margin-bottom: 1.2rem;
}
.price_total ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.price_total ul li {
    display: flex;
    flex-basis: 50%;
    padding: 0 1rem;
    align-items: center;
}
.price_total ul li > span {
    font-size: 3rem;
    padding: 1rem;
    border-radius: 5rem;
    width: 6rem;
    height: 6rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.2rem;
}
.price_total ul li:nth-child(1) {
    border-right: 1px solid var(--inputBorder);
}
.price_total ul li:nth-child(1) > span.material-symbols-outlined {
    background: var(--purpleGradient);
    color: var(--originWhite);
}
.price_total ul li:nth-child(2) > span.material-symbols-outlined {
    background: var(--redGradient);
    color: var(--originWhite);
}
.price_total ul li p {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: var(--inputLabel);
}
.price_total ul li h4 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--pointColor);
}
.price_total ul li .pt_txt span {
    font-size: 1.1rem;
    color: var(--inputLabel);
}

.indexTable {
}
.info_text_group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: flex-end;
    padding: 1rem 1rem 0 1rem;
}
.info_text_group .info_tit {
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pointColor);
}
.info_text_group .info_tit span {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--textColor);
    margin-bottom: 0.5rem;
}
.info_data {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pointColor);
}
.info_data span {
    color: var(--inputLabel);
    font-size: 1.1rem;
}
.cash_info {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0 1rem;
}
.info_item {
}
.info_item strong {
    font-size: 1.2rem;
    color: var(--textColor);
}
.info_item span {
    font-size: 1.2rem;
    color: var(--pointColor);
}
.s_ing {
    background: var(--freecolorGr);
    color: var(--originWhite);
    padding: 0 1rem;
    border-radius: 1rem;
    min-width: 7rem;
    display: inline-flex;
    justify-content: center;
}
.s_complet {
    background: var(--pointBg5);
    padding: 0 1rem;
    border-radius: 1rem;
    min-width: 7rem;
    display: inline-flex;
    justify-content: center;
}
.s_wait {
    background: var(--freecolorRd);
    padding: 0 1rem;
    border-radius: 1rem;
    min-width: 7rem;
    display: inline-flex;
    justify-content: center;
    color: var(--originWhite);
}

.indexTit {
    display: flex;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding: 0 1rem;
    margin-bottom: 0.4rem;
    align-items: center;
}
.indexTit h6 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--textColor);
}
.indexTit a {
    background-color: var(--pointColor);
    border-radius: 1rem;
    color: var(--originWhite);
    padding: 0.5rem;
    transition: 0.5s;
}
.indexTit a:hover {
    background-color: var(--pointColorHover);
    transition: 0.5s;
}
.indexTit a span {
    font-size: 2rem;
}

.second_contents {
    display: grid;
    grid-template-columns: 6fr 4fr; /* 60%, 40% 비율 */
    gap: 2rem;
    width: 100%;
    padding: 0 3rem;
}
@media (max-width: 950px) {
    .second_contents {
        grid-template-columns: 1fr; /* 모바일에서는 세로 배치 */
        gap: 3rem;
        padding: 0;
    }
}
.weekly {
    display: flex;
    flex-direction: column;
}
.weekly h6 {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 1.6rem;
}
.weekly h6 b {
    font-weight: 300;
}
.weekly_list {
    display: flex;
    flex-direction: column;
}
.weekly_list > p {
    font-size: 1.4rem;
    line-height: 3rem;
    border-radius: 1rem 1rem 0 0;
    padding-left: 1rem;
}
.weekly_list > ul {
    display: flex;
    flex-direction: column;
}
.weekly_list > ul > li {
    display: flex;
    justify-content: space-between;
    background-color: var(--whiteBg);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--inputBorder);
    margin-top: 1.2rem;
}
.weekly_list > ul > li > div {
    display: flex;
    padding: 1rem;
    line-height: 2.4rem;
}
.weekly_list > ul > li .wl_r .price {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 1rem;
    color: var(--pointColor);
}
.weekly_list > ul > li .wl_l .day {
    font-size: 1.6rem;
    font-weight: 200;
    margin-right: 1rem;
}
.weekly_list > ul > li .wl_l .week {
    font-size: 1.6rem;
    font-weight: 500;
    background-color: var(--pointColor);
    min-width: 10rem;
    text-align: center;
    color: var(--originWhite);
    border-radius: 10rem;
}
.weekly_list > ul > li:nth-child(1) {
    background: var(--pointBg1);
}
.weekly_list > ul > li:nth-child(2) {
    background: var(--pointBg2);
}
.weekly_list > ul > li:nth-child(3) {
    background: var(--pointBg3);
}
.weekly_list > ul > li:nth-child(4) {
    background: var(--pointBg4);
}
.weekly_list > ul > li:nth-child(5) {
    background: var(--pointBg5);
}
.foot_con {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 0.5rem;
    z-index: 9;
    display: none;
}
.fnb ul {
    display: flex;
    background-color: var(--whiteBg);
    box-shadow: var(--bxShadow6);
    border-radius: 1rem;
}
.fnb ul li {
    flex-basis: calc(100% / 4);
    display: flex;
    justify-content: center;
}
.fnb ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    color: var(--textColor);
}
.fnb ul li a span {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    border-radius: 5rem;
    background-color: var(--pointColor);
    color: var(--originWhite);
    font-size: 2rem;
    justify-content: center;
    align-items: center;
}
.fnb ul li a p {
    margin-top: 1rem;
    font-size: 1.2rem;
}
@container contents-box (max-width:924px) {
    .user_total ul li > span {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }
    .user_total ul li .list_inner h4 {
        font-size: 1.2rem;
    }
    .user_total ul li .list_inner span {
        font-size: 2rem;
    }
    .price_total ul li > span {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }
    .price_total ul li p {
        font-size: 1.2rem;
    }
    .price_total ul li h4 {
        font-size: 2rem;
    }
}
@container contents-box (max-width:860px) {
    .user_total {
        flex-basis: 100%;
    }
    .price_total {
        flex-basis: 100%;
    }
    .info_notice_progress {
        flex-direction: column-reverse;
        flex-wrap: nowrap;
        padding: 2rem 0;
    }
    .info_notice_progress > div {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }

    .indexTable {
    }
    .weekly {
        width: 100%;
    }
}
@media (max-width: 720px) {
    .contents {
        padding: 3.2rem 1rem;
    }
    .notice_list li a b {
        flex: 1;
    }
    .user_info_box ul {
        background-color: var(--defaultBg);
        border-radius: 0.5rem;
        box-shadow: var(--bxShadow6);
        padding: 0.5rem 0;
    }
    .info_notice_progress {
        margin-bottom: 0;
    }
    .top_notice_box {
        margin-bottom: 1rem !important;
    }
    .info_notice {
        margin-bottom: 1rem !important;
    }
    .user_info_box ul li {
        flex: 1;
        flex-direction: row;
        padding: 0.5rem;
        background: none;
        box-shadow: none;
        border-radius: 0;
    }
    .user_info_box ul li span {
        margin-bottom: 0;
        padding: 0;
        width: 3rem;
        height: 3rem;
        font-size: 2rem;
        margin-right: 0.5rem;
    }
    .uib_inTxt {
        align-items: flex-start;
    }
    .user_info_box ul li p {
        margin-bottom: 0;
    }
    .user_info_box ul li strong {
        font-size: 1.4rem;
        line-height: 1.4rem;
        font-weight: 500;
    }
    .cash_info_content {
        border-radius: 0.5rem;
    }
    .user_total {
        border-radius: 0.5rem 0.5rem 0 0;
        margin-bottom: 0;
        border-bottom: 1px solid var(--inputBorder);
    }
    .user_total ul li {
        padding: 0 0.5rem;
    }
    .user_total ul li > span {
        width: 3rem;
        height: 3rem;
    }
    .user_total ul li .list_inner span {
        font-size: 1.4rem;
    }
    .price_total {
        border-radius: 0 0 0.5rem 0.5rem;
    }
    .price_total ul li {
        padding: 0 0.5rem;
    }
    .price_total ul li h4 {
        font-size: 1.4rem;
    }
    .price_total ul li > span {
        width: 3rem;
        height: 3rem;
    }
    .indexTable {
        width: 100%;
    }
    .weekly {
        width: 100%;
    }
    .weekly_list > ul > li {
        padding: 0.6rem;
        margin-top: 0.6rem;
    }
    .weekly_list > ul > li .wl_l .day {
        font-size: 1.2rem;
    }
    .weekly_list > ul > li .wl_l .week {
        min-width: 6rem;
        font-size: 1.4rem;
    }
    .weekly_list > ul > li .wl_r .price {
        font-size: 1.6rem;
    }
    .table_b {
        border-radius: 0.5rem;
    }
    .foot_con {
        display: block;
    }
}

.sub_contents {
    width: 100%;
}
.sub_contents h2 {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 700;
    color: var(--textColor);
    padding-left: 2rem;
    position: relative;
}
.sub_contents h2::after {
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.4rem;
    height: 1.4rem;
    border: 0.4rem solid var(--pointColor);
    content: "";
    transform: translateY(-50%);
    border-radius: 2rem;
}
.tab_nav {
    margin-top: 2rem;
}
.tab_nav ul {
    display: flex;
    padding: 0 0.5rem;
}
.tab_nav ul li {
    display: flex;
    margin: 0 0.1rem;
    transform: translateY(0.1rem);
}
.tab_nav ul li a {
    white-space: nowrap;
    background: var(--inputBg);
    font-size: 1.4rem;
    line-height: 3rem;
    padding: 0 1rem;
    border-radius: 0.5rem 1.5rem 0 0;
    border: 1px solid var(--inputBorder);
    color: var(--inputLabel);
    text-align: center;
}
.tab_nav ul li a:hover {
    background: var(--pointSecond);
    color: var(--originWhite);
    border-color: var(--pointSecond);
}
.tab_nav ul li a.active {
    background: var(--pointColor);
    color: var(--originWhite);
    border-color: var(--pointColor);
}
.tab_con {
    background: var(--whiteBg);
    width: 100%;
    border: 1px solid var(--pointColor);
    border-radius: 1rem;
    padding: 1rem;
    min-height: 65vh;
    position: relative;
    z-index: 1;
    container-name: tab-contents;
    container-type: inline-size;
}
@container contents-box (max-width:886px) {
    .table-responsive .table {
        min-width: 72rem;
    }
}
.sub_li_con {
    padding: 2rem;
    border-bottom: 1px solid var(--inputBorder);
}
.sub_li_con:last-child {
    border-bottom: 0;
}
.sub_li_con .tbc_tit {
    margin-bottom: 2rem;
}
.sub_li_con .tbc_tit h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--textColor);
    position: relative;
}
.sub_li_con .tbc_tit h3::after {
    content: "";
    position: absolute;
    width: 0.4rem;
    height: 100%;
    left: -3rem;
    background-color: var(--pointColor);
}
.tbc_tit_2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--textColor);
    position: relative;
}
.tbc_tit_2::after {
    content: "";
    position: absolute;
    width: 0.4rem;
    height: 100%;
    left: -3rem;
    background-color: var(--pointColor);
}

.sub_li_con li {
    margin-bottom: 1rem;
}
.sub_li_con li label {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    padding-left: 0.4rem;
}
.sub_li_con .text-danger {
    margin: 0.5rem 0;
    padding-left: 0.5rem;
}
.tbc_btn {
    display: flex;
    justify-content: center;
}
.tbc_btn button {
    margin: 0 0.4rem;
}
.btn_input_group {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.btn_input_group button {
    align-items: center;
    display: flex;
    line-height: 4.8rem;
    height: 4.8rem;
    padding: 0 1rem;
}
.btn_input_group input.form-control {
    width: 100%;
    flex: 1;
    max-width: 5rem;
    text-align: center;
}
.input_btn_group {
    display: flex;
}
.input_btn_group .btn_point {
    display: flex;
    white-space: nowrap;
    margin-left: 0.4rem;
}
.tb_timePick {
    margin-top: 1rem;
}
.tb_timePick .time_pick {
    display: flex;
}
.tb_timePick .time_pick .tp_date {
    display: flex;
    flex: 1;
}
.tb_timePick .time_pick .tb_btn button {
    align-items: center;
    display: inline-flex;
    justify-content: center;
}
.total_item {
    display: flex;
}
.total_item ul {
    display: flex;
    margin-top: 2rem;
}
.total_item ul li {
    display: flex;
    padding: 0 20px;
    line-height: 40px;
    border-radius: var(--border-r10);
    margin-bottom: 0;
    border-radius: 0.5rem;
}
.total_item ul li.tt_primary {
    background-color: #cfe2ff;
    color: #084298;
    border: 1px solid #b6d4fe;
    margin-right: 0.4rem;
}
.total_item ul li.tt_secondary {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}
.total_item ul li span {
    font-size: 1.4rem;
    font-weight: bold;
    margin-left: 0.4rem;
}
.btn_group {
    display: flex;
    gap: 0.4rem;
    margin-top: 1rem;
}
.btn_group button {
    flex: 1;
}
.btn_group button.active {
    background-color: var(--pointColor);
    border-color: var(--pointColor);
    color: var(--originWhite);
}
@media (max-width: 720px) {
    .tab_con {
        border-radius: 0.5rem;
    }
    .sub_li_con {
        padding: 2rem 0;
    }
    .sub_li_con .tbc_tit h3::after {
        left: -1rem;
    }
    .tbc_tit_2::after {
        left: -1rem;
    }
}
@media (max-width: 420px) {
    .tab_nav ul li a {
        font-size: 1.2rem;
        padding: 0 0.4rem;
    }
    .tb_timePick .time_pick .tp_date {
        display: flex;
        flex: 1;
    }
    .tb_timePick .time_pick {
        flex-wrap: wrap;
    }
    .tb_timePick .time_pick .tb_btn {
        flex-basis: 100%;
        margin-top: 0.4rem;
    }
    .tb_timePick .time_pick .tb_btn button {
        width: 100%;
    }
}
.ellipsis {
    width: 100%;
    display: block;
    overflow: hidden;
    max-width: 30rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 1rem;
    color: var(--inputColor);
}
.ellipsis:hover {
    color: var(--pointColor);
}

.notice_contents {
    background-color: var(--inputBg);
    padding: 1.6rem;
    border-radius: 0.5rem;
    box-shadow: var(--bxShadow6);
}
.notice_contents p {
    line-height: 2.4rem;
}
.notice_title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.6rem;
    border-bottom: 1px solid var(--inputBorder);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.notice_date {
    font-size: 1.4rem;
    line-height: 2rem;
    color: var(--inputLabel);
    display: inline-flex;
    align-content: center;
    background-color: var(--disableBg);
    padding: 1rem;
    border-radius: 3rem;
    margin-bottom: 1rem;
}
.notice_date span {
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
}
.notice_btm_btn {
    margin-top: 1rem;
    justify-content: space-between;
    display: flex;
}

/* Crypto Fear & Greed Index */
.crypto_fear_greed {
    flex-basis: 100%;
    margin-bottom: 2rem;
}

.fear_greed_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--defaultBg);
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: var(--bxShadow6);
    margin-top: 1.2rem;
    position: relative;
    overflow: hidden;
}

.fear_greed_container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gauge_wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gauge_svg {
    width: 400px;
    height: 200px;
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.gauge_background {
    stroke: var(--inputBorder);
    stroke-width: 48;
    fill: none;
    stroke-linecap: round;
}

.gauge_progress {
    fill: none;
    stroke-width: 48;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), stroke 0.6s ease-in-out;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

.scale_text {
    font-size: 20px;
    font-weight: 600;
    fill: var(--inputLabel);
    font-family: system-ui, -apple-system, sans-serif;
}

.scale_marker {
    stroke: var(--inputLabel);
    stroke-width: 9;
    transition: stroke 0.3s ease;
}

/* 감정 레벨별 마커 색상 */
.crypto_fear_greed.extreme-fear .scale_marker {
    stroke: rgba(220, 38, 38, 0.6);
}

.crypto_fear_greed.fear .scale_marker {
    stroke: rgba(234, 88, 12, 0.6);
}

.crypto_fear_greed.greed .scale_marker {
    stroke: rgba(101, 163, 13, 0.6);
}

.crypto_fear_greed.extreme-greed .scale_marker {
    stroke: rgba(22, 163, 74, 0.6);
}

.index_display {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    margin-top: -7rem;
}

.index_value {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.index_number {
    font-size: 6rem;
    font-weight: 800;
    color: var(--pointColor);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: color 0.6s ease-in-out;
}

.sentiment_badge {
    position: relative;
    display: inline-block;
}

.sentiment_text {
    background: var(--pointColor);
    color: var(--originWhite);
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.6s ease-in-out;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.sentiment_text::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease-in-out;
}

.sentiment_text:hover::before {
    left: 100%;
}

/* Sentiment Level Colors & Animations */
.crypto_fear_greed.extreme-fear .gauge_progress {
    stroke: #dc2626;
}

.crypto_fear_greed.extreme-fear .index_number {
    color: #dc2626;
}

.crypto_fear_greed.extreme-fear .sentiment_text {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    animation: pulse-red 2s ease-in-out infinite;
}

.crypto_fear_greed.fear .gauge_progress {
    stroke: #ea580c;
}

.crypto_fear_greed.fear .index_number {
    color: #ea580c;
}

.crypto_fear_greed.fear .sentiment_text {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    animation: pulse-orange 2s ease-in-out infinite;
}

.crypto_fear_greed.greed .gauge_progress {
    stroke: #65a30d;
}

.crypto_fear_greed.greed .index_number {
    color: #65a30d;
}

.crypto_fear_greed.greed .sentiment_text {
    background: linear-gradient(135deg, #65a30d, #4d7c0f);
    animation: pulse-green 2s ease-in-out infinite;
}

.crypto_fear_greed.extreme-greed .gauge_progress {
    stroke: #16a34a;
}

.crypto_fear_greed.extreme-greed .index_number {
    color: #16a34a;
}

.crypto_fear_greed.extreme-greed .sentiment_text {
    background: linear-gradient(135deg, #16a34a, #15803d);
    animation: pulse-dark-green 2s ease-in-out infinite;
}

/* Pulse Animations */
@keyframes pulse-red {
    0%,
    100% {
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
    }
}

@keyframes pulse-orange {
    0%,
    100% {
        box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(234, 88, 12, 0.5);
    }
}

@keyframes pulse-green {
    0%,
    100% {
        box-shadow: 0 6px 20px rgba(101, 163, 13, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(101, 163, 13, 0.5);
    }
}

@keyframes pulse-dark-green {
    0%,
    100% {
        box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(22, 163, 74, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gauge_svg {
        width: 480px;
        height: 240px;
    }

    .index_number {
        font-size: 4.8rem;
    }

    .sentiment_text {
        font-size: 1.6rem;
        padding: 1.2rem 2.4rem;
    }

    .scale_text {
        font-size: 20px;
    }
}

@media (max-width: 720px) {
    .fear_greed_container {
        padding: 2rem;
        border-radius: 1.5rem;
    }

    .gauge_svg {
        width: 360px;
        height: 180px;
    }

    .index_number {
        font-size: 3.6rem;
    }

    .sentiment_text {
        font-size: 1.3rem;
        padding: 1rem 2rem;
    }

    .scale_text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .fear_greed_container {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .gauge_svg {
        width: 300px;
        height: 150px;
    }

    .index_number {
        font-size: 2.8rem;
    }

    .sentiment_text {
        font-size: 1.1rem;
        padding: 0.8rem 1.6rem;
        border-radius: 2rem;
    }

    .scale_text {
        font-size: 12px;
    }
}

/* Crypto Trading Profit Dashboard */
.crypto_trading_dashboard {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dashboard_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard_header h6 {
    color: var(--textColor);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.strategy_selector select {
    background: var(--pointColor);
    border: 2px solid var(--pointColor);
    border-radius: 1rem;
    padding: 1.2rem 1.5rem;
    color: var(--originWhite);
    font-size: 1.4rem;
    font-weight: 700;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.6rem;
    padding-right: 3.5rem;
    box-shadow: 0 4px 12px rgba(90, 78, 249, 0.3);
    text-align: center;
    letter-spacing: 0.5px;
}

.strategy_selector select:hover {
    background: #6d5dfa;
    border-color: #6d5dfa;
    box-shadow: 0 6px 20px rgba(90, 78, 249, 0.4);
    color: var(--originWhite);
}

.strategy_selector select:focus {
    outline: none;
    background: #6d5dfa;
    border-color: #6d5dfa;
    box-shadow: 0 6px 20px rgba(90, 78, 249, 0.4), 0 0 0 3px rgba(90, 78, 249, 0.2);
    color: var(--originWhite);
}

.strategy_selector select:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(90, 78, 249, 0.3);
}

.strategy_selector select option {
    background: var(--originWhite);
    color: #333 !important;
    padding: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    border: none;
}

.dashboard_metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric_card {
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.metric_header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.metric_header span {
    background: var(--pointColor);
    color: var(--originWhite);
    border-radius: 0.5rem;
    font-size: 1.25rem;
}

.metric_header h4 {
    color: var(--textColor);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.metric_value {
    margin-bottom: 0.5rem;
}

.roi_value,
.profit_value,
.mdd_value {
    font-size: 2rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.roi_value.positive,
.profit_value.positive {
    color: #22c55e;
}

.roi_value.negative,
.profit_value.negative,
.mdd_value {
    color: #ef4444;
}

.metric_subtitle {
    color: var(--inputLabel);
    font-size: 1.2rem;
    font-weight: 500;
}

.period_values {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.period_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--inputBorder);
}

.period_item:last-child {
    border-bottom: none;
}

.period_label {
    color: var(--inputLabel);
    font-size: 1.4rem;
    font-weight: 500;
}

.period_value {
    font-size: 1.6rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.period_value.positive {
    color: #22c55e;
}

.period_value.negative {
    color: #ef4444;
}

.dashboard_chart {
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.chart_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart_header h6 {
    color: var(--textColor);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.chart_controls {
    display: flex;
    gap: 0.5rem;
}

.chart_period_btn {
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    color: var(--textColor);
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart_period_btn.active,
.chart_period_btn:hover {
    background: var(--pointColor);
    color: var(--originWhite);
    border-color: var(--pointColor);
}

.chart_container {
    position: relative;
    height: 300px;
    margin-bottom: 1rem;
}

.chart_legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.legend_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    color: var(--inputLabel);
}

.legend_color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend_color.highest {
    background: #ef4444;
}

.legend_color.lowest {
    background: #4444ef;
}

.dashboard_status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
}

.status_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--inputLabel);
    font-size: 1.2rem;
}

.status_indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 2s infinite;
}

.status_indicator.active {
    background: #22c55e;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard_metrics {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .chart_container {
        height: 250px;
    }

    .dashboard_header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .crypto_trading_dashboard {
        padding: 1.5rem;
    }

    .dashboard_metrics {
        grid-template-columns: 1fr;
    }

    .metric_card {
        padding: 1rem;
    }

    .roi_value,
    .profit_value,
    .mdd_value {
        font-size: 1.5rem;
    }

    .chart_container {
        height: 200px;
        canvas {
            width: 100% !important;
        }
    }

    .chart_legend {
        flex-direction: column;
        gap: 1rem;
    }

    .dashboard_status {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .crypto_trading_dashboard {
        padding: 1rem;
    }

    .dashboard_header h6 {
        font-size: 1.25rem;
    }

    .period_values {
        gap: 0.5rem;
    }

    .chart_header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Crypto Chart Page Styles */
.crypto_chart_page {
    min-height: 100vh;
    background: var(--cardBg);
    padding: 0;
}

/* Price Ticker */
.price_ticker {
    color: #333;
    padding: 0.75rem 0;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.ticker_container {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 3rem;
}

.ticker_item {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    min-width: 250px;
    flex-shrink: 0;
}

.ticker_symbol {
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ticker_price {
    font-weight: 600;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ticker_change {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.ticker_change.positive {
    color: #22c55e;
}

.ticker_change.negative {
    color: #ef4444;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Chart Header */
.chart_header_section {
    background: var(--cardBg);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--inputBorder);
}

.chart_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.coin_selector select {
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--textColor);
    font-size: 1.4rem;
    min-width: 200px;
}

.chart_mode_toggle {
    display: flex;
    gap: 0.5rem;
}

.chart_mode_btn {
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    color: var(--textColor);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart_mode_btn.active,
.chart_mode_btn:hover {
    background: var(--pointColor);
    color: var(--originWhite);
    border-color: var(--pointColor);
}

.theme_btn {
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.375rem;
    padding: 0.5rem;
    color: var(--textColor);
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.theme_btn:hover {
    background: var(--pointColor);
    color: var(--originWhite);
}

/* Price Information */
.price_info_section {
    background: var(--cardBg);
    padding: 2rem;
    border-bottom: 1px solid var(--inputBorder);
}

.main_price_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.coin_header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coin_icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.coin_details h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--textColor);
}

.coin_details span {
    color: var(--inputLabel);
    font-size: 1.4rem;
    font-weight: 500;
}

.price_display {
    text-align: right;
}

.current_price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

#currentPrice {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--textColor);
}

.price_change {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.price_change.positive {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.price_change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.price_stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.5rem;
}

.stat_label {
    color: var(--inputLabel);
    font-size: 1.4rem;
    font-weight: 500;
}

.stat_value {
    color: var(--textColor);
    font-size: 1.4rem;
    font-weight: 600;
}

/* Chart Section */
.chart_section {
    background: var(--cardBg);
    padding: 2rem;
}

.chart_timeframe {
    margin-bottom: 2rem;
}

.timeframe_buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.timeframe_btn {
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    color: var(--textColor);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeframe_btn.active,
.timeframe_btn:hover {
    background: var(--pointColor);
    color: var(--originWhite);
    border-color: var(--pointColor);
}

.chart_container {
    position: relative;
    height: 400px;
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.75rem;
    padding: 1rem;
}

/* Additional Info */
.additional_info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: var(--cardBg);
}

.info_card {
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.info_card h3 {
    color: var(--textColor);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info_card p {
    color: var(--inputLabel);
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
}

.market_info_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.market_info_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--cardBg);
    border: 1px solid var(--inputBorder);
    border-radius: 0.5rem;
}

.info_label {
    color: var(--inputLabel);
    font-size: 1.4rem;
    font-weight: 500;
}

.info_value {
    color: var(--textColor);
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 600;
}

/* Dark Theme */
.crypto_chart_page.dark {
    --cardBg: #1f2937;
    --textColor: #f9fafb;
    --inputLabel: #9ca3af;
    --inputBorder: #374151;
    --pointColor: #3b82f6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .chart_controls {
        flex-direction: column;
        gap: 1rem;
    }

    .main_price_info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .price_display {
        text-align: center;
    }

    .current_price {
        align-items: center;
    }

    .price_stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .chart_header_section,
    .price_info_section,
    .chart_section,
    .additional_info {
        padding: 1rem;
    }

    .ticker_container {
        gap: 2rem;
    }

    .ticker_item {
        min-width: 200px;
        gap: 0.8rem;
    }

    #currentPrice {
        font-size: 2rem;
    }

    .chart_container {
        height: 300px;
    }

    .timeframe_buttons {
        justify-content: center;
    }

    .additional_info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .chart_header_section,
    .price_info_section,
    .chart_section,
    .additional_info {
        padding: 0.75rem;
    }

    .coin_selector select {
        min-width: 100%;
    }

    .price_stats {
        grid-template-columns: 1fr;
    }

    .market_info_grid {
        grid-template-columns: 1fr;
    }

    .timeframe_buttons {
        gap: 0.25rem;
    }

    .timeframe_btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .ticker_item {
        min-width: 180px;
        gap: 0.6rem;
    }

    .ticker_symbol,
    .ticker_price {
        font-size: 1.2rem;
    }

    .ticker_change {
        font-size: 1.1rem;
        padding: 0.15rem 0.3rem;
    }
}

/* News List Styles */
.news_list {
    background: var(--defaultBg);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--bxShadow6);
}

.news_item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--inputBorder);
    transition: all 0.3s ease;
}

.news_item:last-child {
    border-bottom: none;
}

.news_item:hover {
    background: var(--pointBg1);
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    margin: 0 -1rem;
}

.news_badge_container {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.news_badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news_badge.new {
    background: var(--pointColor);
    color: var(--originWhite);
}

.news_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--textColor);
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.news_title:hover {
    color: var(--pointColor);
}

.news_date {
    font-size: 1.1rem;
    color: var(--inputLabel);
    font-weight: 400;
}

.news_summary {
    font-size: 1.4rem;
    color: var(--textColor);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .news_list {
        padding: 1rem;
    }

    .news_item {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.2rem 0;
    }

    .news_badge_container {
        margin-top: 0;
    }

    .news_title {
        font-size: 1.3rem;
    }

    .news_summary {
        font-size: 1.1rem;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .news_title {
        font-size: 1.6rem;
    }

    .news_summary {
        font-size: 1.4rem;
    }

    .news_date {
        font-size: 1.1rem;
    }
}

/* ======================================
   PRICING PAGE STYLES (이미지와 동일한 스타일)
   ====================================== */

.pricing_page {
    max-width: 120rem;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: white;
    min-height: 100vh;
}

/* 헤더 섹션 */
.pricing_header_section {
    text-align: center;
    margin-bottom: 6rem;
}

.pricing_breadcrumb {
    color: #6b46ff;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pricing_main_title {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.pricing_event_text {
    color: #6b46ff;
    font-size: 1.6rem;
    font-weight: 500;
}

/* 요금제 카드 컨테이너 */
.pricing_cards_container {
    display: grid;
    /* 카드가 3개든 4개든 자동으로 줄 바꿈 + 반응형 배치 */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;

    /* 컨테이너 자체를 중앙에 */
    margin: 0 auto 5rem;
    max-width: 1200px;

    /* 그리드 트랙을 중앙으로 정렬 */
    justify-content: center;   /* 행 방향(가로) 중앙 */
    align-content: start;      /* 열 방향(세로) 시작 정렬 (원하면 center) */

    /* 각 그리드 아이템(카드)을 가운데 정렬 */
    justify-items: center;
    align-items: start;
}

/* 개별 카드 */
.pricing_card_item {
    width: 320px; /* 필요 시 고정 너비 또는 아래 clamp로 유연하게 */
    /* width: clamp(260px, 28vw, 340px); */

    background: #f8f9fa;
    border: 0.2rem solid #e9ecef;
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;

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


.pricing_card_item.popular_card {
    border-color: #6b46ff;
    background: #f8f9fa;
}

/* 인기 배지 */
.popular_badge_top {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #6b46ff;
    color: white;
    padding: 0.6rem 1.6rem;
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

/* 카드 제목 */
.card_title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* 원래 가격 (취소선) */
.original_price_text {
    font-size: 1.4rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

/* 현재 가격 */
.card_price {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* 기간 */
.card_period {
    font-size: 1.6rem;
    color: #6b46ff;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

/* 기능 목록 */
.card_features {
    text-align: center;
    margin-bottom: 2.5rem;
}

.feature_line {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature_line::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 0.8rem;
}

/* 할인 배지 */
.discount_tag {
    background: #ff6b9d;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    max-width: 10rem;
    margin-bottom: 2rem;
}

/* 카드 버튼 */
.card_button {
    width: 100%;
    padding: 1.2rem;
    border: 0.2rem solid #e9ecef;
    background: white;
    color: #1a1a1a;
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card_button:hover {
    border-color: #6b46ff;
    color: #6b46ff;
}

.popular_button {
    background: #6b46ff;
    color: white;
    border-color: #6b46ff;
}

.popular_button:hover {
    background: #5a37d4;
}

/* 결제 방법 탭 섹션 */
.payment_tab_section {
    margin-bottom: 4rem;
}

/* 탭 네비게이션 */
.payment_tab_nav {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: #f8f9fa;
    border-radius: 2.5rem;
    padding: 0.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.payment_tab_btn {
    background: transparent;
    color: #666;
    border: none;
    padding: 1.2rem 2.4rem;
    border-radius: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.payment_tab_btn.active {
    background: #6b46ff;
    color: white;
    box-shadow: 0 0.2rem 1rem rgba(107, 70, 255, 0.3);
}

.payment_tab_btn:hover:not(.active) {
    color: #6b46ff;
}

/* 탭 콘텐츠 */
.payment_tab_content {
    display: none;
}

.payment_tab_content.active {
    display: block;
}

/* 주문 정보 섹션 */
.order_info_section {
    background: #f8f9fa;
    border-radius: 1.5rem;
    margin-bottom: 3rem;
    border: 0.1rem solid #e9ecef;
    padding: 2rem;
}

/* 주문 정보 그리드 */
.order_info_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.order_info_item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 0.1rem solid #e9ecef;
}

.order_info_item.full_width {
    grid-column: 1 / -1;
}

.info_label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.info_value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    word-break: break-all;
}

/* 암호화폐 주소 스타일 */
.crypto_address {
    font-family: monospace;
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 0.5rem;
    border: 0.1rem dashed #6b46ff;
    font-size: 1.3rem !important;
    color: #6b46ff !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crypto_address:hover {
    background: #6b46ff;
    color: white !important;
}

/* 공지 메시지 */
.notice_message {
    background: #6b46ff;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
}

/* 입금정보 입력 섹션 */
.deposit_input_section {
    max-width: 40rem;
    margin: 0 auto;
}

.deposit_title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.input_row {
    margin-bottom: 2rem;
}

.input_row label {
    display: block;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.input_row input,
.input_row select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 0.2rem solid #e9ecef;
    border-radius: 0.8rem;
    background: white;
    color: #1a1a1a;
    font-size: 1.6rem;
    box-sizing: border-box;
}

.input_row input:focus,
.input_row select:focus {
    outline: none;
    border-color: #6b46ff;
}

.input_row input::placeholder {
    color: #999;
}

/* 결제하기 버튼 */
.submit_payment_btn {
    width: 100%;
    padding: 1.5rem;
    background: #6b46ff;
    color: white;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit_payment_btn:hover {
    background: #5a37d4;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .pricing_cards_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing_cards_container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing_main_title {
        font-size: 3.2rem;
    }

    .pricing_card_item {
        padding: 2.5rem 2rem;
    }

    .card_price {
        font-size: 2.8rem;
    }

    .order_info_grid {
        grid-template-columns: 1fr;
    }

    .payment_tab_nav {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .payment_tab_btn {
        padding: 1rem 1.5rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .pricing_page {
        padding: 4rem 1.5rem;
    }

    .payment_tab_nav {
        flex-direction: column;
        padding: 0.3rem;
    }

    .payment_tab_btn {
        padding: 1rem;
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

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

    .order_info_section {
        padding: 1.5rem;
    }

    .order_info_item {
        padding: 1.2rem;
    }

    .info_label {
        font-size: 1.2rem;
    }

    .info_value {
        font-size: 1.4rem;
    }

    .crypto_address {
        font-size: 1.1rem !important;
        padding: 0.6rem;
    }

    .pricing_main_title {
        font-size: 28px;
    }

    .pricing_card_item {
        padding: 20px 15px;
    }

    .card_price {
        font-size: 24px;
    }

    .order_table_section,
    .deposit_input_section {
        padding: 20px 15px;
    }
}

/* ===========================================
   전략 페이지 스타일
   =========================================== */

/* 전략 페이지 메인 컨테이너 */
.strategy_page {
    display: grid;
    grid-template-columns: 35rem 1fr ;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
    min-height: 70vh;
    max-height: 85vh;
}

/* 좌측 전략 설정 패널 */
.strategy_left_panel {
    background: #f8f9fa;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 0.1rem solid #e9ecef;
    height: fit-content;
}

.section_title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

/* API 설정 */
.api_settings {
    margin-bottom: 3rem;
}

.input_group {
    margin-bottom: 1.5rem;
}

.input_group label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.8rem;
}

.input_group input {
    width: 100%;
    padding: 1.2rem;
    border: 0.2rem solid #e9ecef;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    background: white;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input_group input:focus {
    outline: none;
    border-color: #6b46ff;
}

.apply_btn {
    width: 100%;
    padding: 1.2rem;
    background: #6b46ff;
    color: white;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.apply_btn:hover {
    background: #5a37d4;
}

/* 전략 방식 선택 */
.strategy_methods {
    margin-bottom: 3rem;
}

.method_group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method_btn {
    padding: 1.2rem;
    background: white;
    color: #666;
    border: 0.2rem solid #e9ecef;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method_btn.active,
.method_btn:hover {
    background: #6b46ff;
    color: white;
    border-color: #6b46ff;
}

/* 봇 제어 */
.bot_controls {
    display: flex;
    gap: 1rem;
}

.bot_btn {
    flex: 1;
    padding: 1.2rem;
    border: 0.2rem solid;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start_btn {
    background: white;
    color: #28a745;
    border-color: #28a745;
}

.start_btn.active,
.start_btn:hover {
    background: #28a745;
    color: white;
}

.stop_btn {
    background: white;
    color: #dc3545;
    border-color: #dc3545;
}

.stop_btn.active,
.stop_btn:hover {
    background: #dc3545;
    color: white;
}

/* 중앙 패널 */
.strategy_center_panel {
    background: #f8f9fa;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 0.1rem solid #e9ecef;
    display: flex;
    flex-direction: column;

    overflow: hidden;
}

/* 거래 탭 */
.trading_tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    background: white;
    border-radius: 1rem;
    padding: 0.5rem;
}

.trading_tab_btn {
    flex: 1;
    padding: 1rem 2rem;
    background: transparent;
    color: #666;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trading_tab_btn.active {
    background: #6b46ff;
    color: white;
}

/* 탭 콘텐츠 */
.trading_tab_content {
    display: none;
    flex: 1;
}

.trading_tab_content.active {
    display: flex;
    flex-direction: column;
}

/* 수익률 메트릭 */
.profit_metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: auto;
    gap: 2rem;
    padding: 2rem 0;
}

.metric_item {
    text-align: center;
    flex: 1;
}

.metric_item h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.gauge_container {
    position: relative;
    display: inline-block;
}

.gauge_value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* 코인 관리 */
.coin_management {
    display: flex;
    gap: 2rem;
    height: auto;

}

.coin_section {
    flex: 1;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 0.1rem solid #e9ecef;
    height: 100%;

}

.coin_section h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.coin_list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height:50vh;
    overflow-y: auto;
}

.coin_item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.8rem;
    border: 0.1rem solid #e9ecef;
}

.coin_item input[type="checkbox"] {
    width: 1.6rem;
    height: 1.6rem;
}

.coin_item label {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
}

.move_btn {
    padding: 0.5rem 1rem;
    background: #6b46ff;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.move_btn:hover {
    background: #5a37d4;
}

/* 우측 패널 */
.strategy_right_panel {
    background: #f8f9fa;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 0.1rem solid #e9ecef;
    height: fit-content;
}

.coin_lists_container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coin_list_section {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 0.1rem solid #e9ecef;
}

.coin_list_section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.coin_scroll_list {
    max-height: 25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.coin_scroll_list .coin_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.8rem;
    border: 0.1rem solid #e9ecef;
}

.coin_name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

.coin_symbol {
    font-size: 1.2rem;
    font-weight: 500;
    color: #6b46ff;
}

/* 반응형 디자인 */
@media (max-width: 1440px) {
    .strategy_page {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-height: none;
        min-height: auto;
    }

    .strategy_center_panel {
        max-height: none;
    }

    .strategy_right_panel {
        display: block !important;
    }

    .profit_metrics {
        flex-direction: row;
        gap: 2rem;
    }

    .coin_management {
        flex-direction: column;
        max-height: none;
    }

    .coin_list,
    .coin_scroll_list {
        max-height: 25rem;
    }
}

@media (max-width: 768px) {
    .strategy_page {
        padding: 1rem;
        gap: 1.5rem;
    }

    .strategy_left_panel,
    .strategy_center_panel,
    .strategy_right_panel {
        padding: 1.5rem;
    }

    .section_title {
        font-size: 1.8rem;
    }

    .bot_controls {
        flex-direction: column;
    }

    .trading_tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trading_tab_btn {
        padding: 1rem;
        font-size: 1.4rem;
    }

    .method_group {
        gap: 0.8rem;
    }

    .coin_lists_container {
        gap: 1.5rem;
    }
    .gauge_container {
        canvas {
            width: 120px;
        }
    }
}

@media (max-width: 480px) {
    .strategy_page {
        padding: 1rem 0.5rem;
    }

    .section_title {
        font-size: 1.6rem;
    }

    .input_group input,
    .apply_btn,
    .method_btn,
    .bot_btn {
        padding: 1rem;
        font-size: 1.3rem;
    }

    .trading_tab_btn {
        padding: 0.8rem;
        font-size: 1.3rem;
    }

    .gauge_value {
        font-size: 1.8rem;
    }

    .coin_item {
        padding: 0.8rem;
    }

    .coin_item label {
        font-size: 1.3rem;
    }
}


.pricing_card_item.selected {
    border: 2px solid #6b46ff;
}

.card_button.active {
    background-color: #6b46ff;
    color: white;
    border-color: #6b46ff;
}

.htmlContent p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.htmlContent ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.htmlContent h3, .htmlContent h4 {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}