.page_header {
    width: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--primary-bg-light), transparent);
    border-radius: var(--radius-lg);
    padding: 80px 0  var(--sec-gap);
    margin: 0 auto;
}
.ph_inner {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    flex-direction: column;
}
.ph_l {
    display: flex;
    gap: 40px;
}
.ph_logo {
    width: 86px;
    height: 86px;
}
.ph_title h1 {
    font-size: var(--ft32);
    font-weight: var(--semi-bold);
    color: var(--gray-700);
    margin-bottom: 20px;
    text-align: center;
}
.ph_title p {
    font-size: var(--ft16);
    color: var(--gray-500);
    text-align: center;
}
.ph_btns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ph_btns a {
    width: 164px;
    height: 50px;
    border-radius: var(--radius-sm);
    color: white;
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ph_btns .sell_btn {
    background: var(--primary);
}
.ph_btns .guide_btn {
    background: var(--gray-500);
}

.sec_header {
    margin-bottom: 50px;
}
.sec_header h2 {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
    color: var(--gray-700);    
}
.sec_header p {
    font-size: var(--ft16);
    color: var(--gray-500);
    margin-top: 24px;
}


/* 티어컬러 */
.level.bronze {
    color: var(--tier-bronze);
    background: color-mix(in srgb, var(--tier-bronze) 10%, transparent);
}
.level.silver {
    color: var(--tier-silver);
    background: color-mix(in srgb, var(--tier-silver) 10%, transparent);
}
.level.gold {
    color: var(--tier-gold);
    background: color-mix(in srgb, var(--tier-gold) 10%, transparent);
}
.level.platinum {
    color: var(--tier-platinum);
    background: color-mix(in srgb, var(--tier-platinum) 10%, transparent);
}
.level.diamond {
    color: var(--tier-diamond);
    background: color-mix(in srgb, var(--tier-diamond) 10%, transparent);
}
.level.master {
    color: var(--tier-master);
    background: color-mix(in srgb, var(--tier-master) 10%, transparent);
}
.level.grandmaster {
    color: var(--tier-grandmaster);
    background: color-mix(in srgb, var(--tier-grandmaster) 10%, transparent);
}
.level.challenger {
    color: var(--tier-challenger);
    background: color-mix(in srgb, var(--tier-challenger) 10%, transparent);
}


/* 내티어 */
.my_tier_box {
    width: 100%;
    border-radius: var(--radius-lg);
    background: var(--bg);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    padding: 20px;
}

.my_tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.my_tier h2 {
    margin-bottom: var(--content-gap);
    font-size: var(--ft20);
    color: var(--gray-700);
    font-weight: var(--semi-bold);
}
.my_tier_icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
}
.my_tier_meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.my_tier_meta .name {
    font-size: var(--ft18);
    color: var(--gray-700);
    font-weight: var(--semi-bold);
}
.my_tier_meta .level {
    padding: 8px 16px;
    border-radius: 99px;
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
}

/* 내경험치 */
.my_exp_progress {
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.my_ep_wrap {
    margin-top: 60px;
    padding: 0 30px;
}
.my_ep_bar {
    --exp: 0;
    width: 100%;
    height:  8px;
    background: var(--white);
    border-radius: 9px;
    position: relative;
}
.my_ep_value {
    width: calc(var(--exp) * 1%);
    height: 100%;
    border-radius: 9px;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gray-500);
}
.my_ep_tooltip {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: var(--gray-500);
    color: var(--white);
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    position: absolute;
    left: calc(var(--exp) * 1%);
    top: -14px;
    transform: translate(-50%, -100%);
    margin-bottom: 14px;
}
.my_ep_tooltip::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(90%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 7px solid var(--gray-500);
}
.my_ep_bot {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.my_ep_info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: var(--content-gap);
}
.next_tier_badge {
    padding: 8px 16px;
    border-radius: 99px;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}
.next_tier_badge .icon {
    width: 20px;
    height: 20px;
}
.next_tier_badge p {
    font-weight: var(--semi-bold);
    color: var(--gray-700);
}
.my_ep_info > p {
    color: var(--gray-600);
}


/* 티어목록 */
.tier_list_sec {
    margin-bottom: var(--sec-gap);
}
.tier_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.t_card {
    height: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-line);
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.t_card .icon {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
}
.t_card h3 {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
    color: var(--gray-700);
    margin-bottom: 20px;
}
.t_card p {
    font-size: var(--ft16);
    color: var(--gray-500);
    margin-bottom: 20px;
    text-align: center;
}
.t_card .level {
    padding: 8px 20px;
    font-weight: var(--medium);
    border-radius: 99px;
}





/* exp_sec */
.exp_info_sec {
    margin-bottom: var(--sec-gap);
}

.exp_table {
    width: 100%;
}

th, td {
    font-size: var(--ft16);
    padding: 20px 30px;
    border-bottom: 1px solid var(--dark-line);
}

thead th {
    background: var(--gray-100);
    border-top: 1px solid var(--dark-line);
}

tfoot th,
tfoot td {
    border: 0;
}

th {
    text-align: left;
    color: var(--gray-600);
    font-weight: var(--semi-bold);
}
tr.plus th, tr.plus td {
    background: var(--primary-bg-light);
}
tr.pro th, tr.pro td {
    background: var(--pro-bg);
}


.plan_name {
    width: fit-content;
    font-size: var(--ft14);
    color: var(--gray-400);
    font-weight: var(--medium);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 10px;
}
.plan_name.plus {
    color: white;
    background: linear-gradient(160deg, var(--primary-gradient));
    padding: 5px 10px;
    border-radius: 99px;
}
.plan_name.pro {
    color: white;
    background: linear-gradient(160deg, var(--pro-gradient));
    padding: 5px 10px;
    border-radius: 99px;
}
.plan_name.plus::before,
.plan_name.pro::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url('/images/membership.svg') no-repeat center / contain;
}
.plan_price {
    font-size: var(--ft28);
    font-weight: var(--semi-bold);
    color: var(--gray-700);
}







/* 안내사항 */
.info_sec .inner {
    border-top: 1px solid var(--gray-400);
    padding: 40px 20px; 
}
.info_box {
    display: flex;
    align-items: start;
    gap: 20px 40px;
    margin-bottom: var(--content-gap);    
}
.info_box:last-child {
    margin-bottom: 0;
}
.info_box h2 {
    width: 80px;
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-700);
    flex-shrink: 0;
}


@media all and (max-width: 1200px) {
    /*-- page_header --*/
    .page_header {
        padding-top: 60px;
    }
    .ph_inner {
        gap: 30px;
    }
    .ph_logo {
        width: 60px;
        height: 60px;
    }
    .ph_title h1 {
        font-size: var(--ft28);
    }

    /*-- my_tier_box --*/
    .my_tier h2 {
        margin-bottom: 24px;
    }
    .my_tier_icon {
        width: 80px;
        height: 80px;
    }
    .my_exp_progress {
        padding: 20px;
    }

    /*-- tier_list --*/
    .tier_list {
        grid-template-columns: repeat(3, 1fr);
    }
    .t_card {
        padding: 40px 20px;
    }
    .t_card .icon {
        width: 80px;
        height: 80px;
    }
}


@media all and (max-width: 768px) {
    .sec_header {
        margin-bottom: 24px;
    }
    .sec_header h2 {
        font-size: var(--ft20);
    }
    .sec_header p {
        margin-top: 16px;
    }

    /*-- page_header --*/
    .page_header {
        width: 100%;
        padding-top: 40px;
        border-radius: 0;
    }
    .ph_inner {
        gap: 16px;
    }
    .ph_logo {
        width: 40px;
        height: 40px;
    }
    .ph_title h1 {
        font-size: var(--ft24);
    }

    /*-- my_tier_box --*/
    .my_tier_box {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
    }
    .my_tier {
        padding: 0;
    }
    .my_tier h2 {
        font-size: var(--ft16);
        margin-bottom: 16px;
    }
    .my_tier_icon {
        margin-bottom: 16px;
        width: 60px;
        height: 60px;
    }
    .my_tier_meta .name {
        font-size: var(--ft16);
    }
    .my_tier_meta .level {
        padding: 6px 12px;
        font-size: var(--ft13);
    }
    .my_ep_wrap {
        margin-top: 40px;
        padding: 0;
    }
    .my_ep_tooltip {
        font-size: var(--ft12);
    }
    .my_ep_bot {
        margin-top: 12px;
    }
    .my_ep_bot span {
        font-size: var(--ft13);
    }
    .my_ep_info {
        margin-top: 20px;
    }
    .next_tier_badge {
        padding: 4px 8px;
    }
    .next_tier_badge .icon {
        width: 12px;
        height: 12px;
    }
    .next_tier_badge p {
        font-size: var(--ft13);
    }
    .my_ep_info > p {
        font-size: var(--ft13);
    }

    /*-- tier_list --*/
    .tier_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .t_card {
        padding: 24px 10px;
    }
    .t_card .icon {
        width: 60px;
        height: 60px;
    }
    .t_card h3 {
        margin-bottom: 12px;
        font-size: var(--ft18);
    }
    .t_card p {
        font-size: var(--ft14);
    }
    .t_card .level {
        font-size: var(--ft14);
    }

    /*-- exp_info_sec --*/
    th, td {
        font-size: var(--ft14);
        padding: 16px 6px;
    }

    tr.plus > th > div,
    tr.pro > th > div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    /*-- info_sec --*/
    .info_sec .inner {
        padding: 30px 0 0;
    }
    .info_box {
        flex-direction: column;
    }
}