ul, li{list-style:none;}

body {
    background-color: #000;
    line-height: 1.8;
}

.nav {
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0px;
    display: flex;
    align-items: center;
    gap: 45px;
    max-width: 1440px;
    margin: 0 auto;
    flex-direction: row;
}

.nav.active {
    max-width: 1440px;
    background-color: var(--color-black_01);
    border-radius: 35px;
    backdrop-filter: blur(5px);
    padding: 15px 20px;
    -webkit-backdrop-filter: blur(5px);
}

.nav.active .nav-right {
    right: 20px;
}

.nav.active .nav-lang {
    background-color: var(--color-black_02);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    gap: 25px;
    flex-shrink: 0;
    justify-content: center;
    position: absolute;
    right: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-right .back-btn{color: #aaa;font-size: 16px;text-decoration: unset;height: 30px;background: #1a1a1ae6;border-radius: 15px;padding: 0px 15px;line-height: 30px;}

.nav.active .nav-right .back-btn { background-color: var(--color-black_02);}

.nav-lang {
    display: flex;
    height: 30px;
    background: #1a1a1ae6;
    border-radius: 15px;
    padding: 0px 15px;
    color: rgba(255,255,255,0.7);
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.nav-lang svg {width: 20px;height: 20px;}

.nav-lang select {
    background: transparent;
    border: none;
    color: #ffffffb3;
    font-size: 15px;
    cursor: pointer;
    outline: none;
    flex: 1;
    min-width: 0;
}

.nav-lang select:hover {
    color: #fff;
}

.nav-lang select option {
    background: #1a1a1a;
    color: #fff;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 0 80px;
}

.page-title {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 7px;
    line-height: 1.6;
}

.page-title span{font-size:26px; display:block;}

.effective-date {
    font-size: 16px;
    color: #888;
    text-align: center;
    margin-bottom: 63px;
    font-weight: 300;
}

.intro {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 64px;
    line-height: 1.6;
}

.section-title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.section-content {
    color: #888;
    font-size: 13px;
    line-height: 1.8;
}

.section-content .section-sub-items + .section-sub-items{margin-top: 14px;}

.section-content p {
    margin-bottom: 6px;
    font-size: 18px;
    padding-left: 18px;
    text-indent: -18px;
    line-height: 1.4;
    font-weight: 400;
    color: #aaa;
}

.section-content .dots + div{margin-top: 13px;}

.section-content p.tit{padding-left:0; text-indent:0}

.section-content p.tit + p.dot{margin-top: 19px;}

.section-content p.dot{
    position:relative;
    padding-left: 10px;
    text-indent: unset;
    margin-bottom: 9px;
}

.section-content p.dot:before{content:"";width: 4px;height: 4px;background-color:#fff;display:block;border-radius:2px;position:absolute;left:0;top: 12px;}

.section-content .colorB{
    color:#347fd4;
}

.section-content strong {
    color: #fff;
    font-weight: 400;
}

.section + .section{margin-top:80px}

.bullet-list li{padding-left: 12px;font-size: 16px;color: #aaa;position:relative;margin-left: 10px;}

.bullet-list li:before{content:"";display:block;width:4px;height:4px;border:1px solid #aaa;border-radius:4px;position:absolute;left: 0px;top: 12px;}

a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
}

.legal-table th,
.legal-table td {
    border: 1px solid #333;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: #aaa;
}

.legal-table th {
    background-color: #1a1a1a;
    color: #fff;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .legal-table th,
    .legal-table td {
        font-size: 13px;
        padding: 8px 10px;
    }
}


/* ===== Footer ===== */
.footer {
    padding: 80px 0;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: #ffffffe6;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}


@media (max-width: 1440px) {
    .nav {
        padding: 15px 15px;
    }

    .nav-right {
        right: 15px;
    }

    .nav.active{margin:0 15px}

    .lang-select-dropdown {
        padding: 10px 10px;
        transform: translateX(-62%);
        top: 35px;
    }

    .lang-select-option {
        padding: 0 15px;
        font-size: 16px;
        line-height: 38px;
        border-radius: 19px;
        text-align: center;
    }

    /* ===== Footer ===== */
    .footer {
        padding: 80px 15px;
    }

    .footer-links {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
    }

    .footer-link {
        font-size: 14px;
        font-weight: 400;
        color: #ffffffe6;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-link:hover {
        color: #fff;
    }
}


@media (max-width: 1130px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .footer-left {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        flex-wrap: nowrap;
    }

    .footer-copy-block {
        align-items: center;
    }

    .footer-links {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
    }

    .footer-links a{
        padding:5px;
    }
}


@media (max-width: 1024px) {
    /* ===== Navigation ===== */
    .nav {
        top: 10px;
    }

    .nav.active {
        padding: 15px 15px;
    }

    .nav.active .nav-right {
        right: 15px;
    }

    .nav.active .nav-lang {
        background-color: var(--color-black_02);
    }

    .nav-logo-img {
        width: 100px;
    }

    .nav-right .back-btn {
        font-size: 14px;
    }

    .nav-lang {
        height: 30px;
        padding: 0px 15px;
        color: rgba(255,255,255,0.7);
        gap: 10px;
    }

    .nav-lang svg {width: 16px;height: 16px;}

    .nav-lang select {
        background: transparent;
        border: none;
        color: #ffffffb3;
        font-size: 15px;
        cursor: pointer;
        outline: none;
        flex: 1;
        min-width: 0;
    }

    .nav-lang select:hover {
        color: #fff;
    }

    .nav-lang select option {
        background: #1a1a1a;
        color: #fff;
    }

    .lang-select-dropdown {
        transform: translateX(-60%);
        top: 30px;
    }

    .lang-select-option {
        padding: 0 15px;
        font-size: 14px;
        line-height: 35px;
    }

    .content {
        max-width: 800px;
        margin: 0 auto;
        padding: 100px 20px 60px;
    }

    .page-title {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .page-title span{font-size: 20px;}

    .effective-date {
        font-size: 14px;
        margin-bottom: 43px;
    }

    .intro {
        font-size: 14px;
        margin-bottom: 60px;
    }

    .section + .section {
        margin-top: 60px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .section-content {
        color: #888;
        font-size: 13px;
        line-height: 1.8;
    }

    .section-content .section-sub-items + .section-sub-items {
        margin-top: 8px;
    }

    .section-content p {
        margin-bottom: 5px;
        font-size: 14px;
        padding-left: 15px;
        text-indent: -15px;
        line-height: 1.4;
    }

    .section-content .dots + div{margin-top: 12px;}

    .section-content p.tit + p.dot{margin-top: 12px;}

    .section-content p.dot{
        padding-left: 8px;
        margin-bottom: 5px;
    }

    .section-content p.dot:before{width: 3px;height: 3px;background-color:#fff;display:block;border-radius:2px;position:absolute;left:0;top: 9px;}

    .section-content .colorB{
        color:#347fd4;
    }

    .section-content strong {
        color: #fff;
        font-weight: 400;
    }

    .bullet-list li{padding-left: 8px;font-size: 12px;margin-left: 8px;}

    .bullet-list li:before{width: 2px;height: 2px;top: 10px;}

    a {
        color: var(--color-primary);
        text-decoration: underline;
    }

    .footer {
        padding: 60px 15px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .footer-left {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        flex-wrap: nowrap;
    }

    .footer-logo-img {
        width: 100px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-adobe {
        font-size: 12px;
    }

    .footer-links {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
    }

    .footer-link {
        font-size: 12px;
    }
}


@media (max-width: 768px) {
    .nav-right {
        gap: 15px;
    }
}


@media (max-width: 640px) {
    .nav {
        top: 0;
    }

    .nav.active {
        margin: 0 10px;
        padding:10px;
        top:10px;
    }

    .nav.active .nav-right {
        right: 10px;
    }

    .nav-logo-img {
        width: 80px;
    }

    .nav-lang {
        height: 30px;
        line-height:30px;
        padding: 0px 15px;
        color: rgba(255,255,255,0.7);
        gap: 10px;
    }

    .nav-lang svg {
        width: 14px;
        height: 14px;
    }

    .lang-select-option {
        padding: 0 15px;
        font-size: 12px;
        line-height: 30px;
    }

    .footer {
        padding: 50px 15px;
    }

    .footer-left {
        gap: 10px;
    }

    .footer-logo-img {
        width: 60px;
    }

    .footer-copyright {
        font-size: 10px;
    }

    .footer-adobe {
        font-size: 10px;
    }

    .footer-links {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-link {
        font-size: 10px;
    }
}
