body{
    overflow: hidden;
}
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    margin-top: 5rem;
    height: calc(100vh - 10rem);
}

.language-title {
    font-size: 2.5rem;
     /* font-weight: 600; */
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 15rem;
}

.language-btn {
    padding: 0.5rem ;
    border: 1px solid #000000;
    background-color: transparent;
    color: #000000;
    font-size: 1rem;
    /* font-weight: 500; */
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease; /* Safari 兼容性 */
    margin-top: 2rem;
}

.language-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.language-btn.active {
    background-color: #000000;
    color: #ffffff;
}
/* 响应式：按 Figma 手机端 LANGUAGE 框架 (222×34 按钮, 13px 字体, 0.5px 边框) */
@media (max-width: 768px) {
    .content {
        padding: var(--mobile-content-padding, 1rem);
        margin-top: 5rem;
    }
    .language-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .language-buttons {
        max-width: 222px;
        gap: 12px;
    }
    .language-btn {
        width: 222px;
        min-height: var(--mobile-btn-height, 34px);
        height: 34px;
        font-size: var(--mobile-font-body, 13px);
        border: var(--mobile-btn-border, 0.5px) solid rgb(0, 0, 0);
        background-color: #fff;
        padding: 0 1rem;
        margin-top: 0;
    }
    .copyright {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .language-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .language-buttons {
        max-width: min(222px, 100%);
    }
    .language-btn {
        width: 100%;
        max-width: 222px;
        min-height: 34px;
        font-size: 13px;
        border: 0.5px solid rgb(0, 0, 0);
        padding: 0 1rem;
    }
}
.footer{
    margin-top: 0px;
}
.default-language-control {
    text-align: center;
}

.default-language-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.default-language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
