/* 基础字体设置 */
body { 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    color: #333;
    line-height: 1.6;
}

html { 
    scroll-behavior: smooth; 
}

/* 隐藏滚动条但保留功能 */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* 蓝色勾选列表的自定义样式 (用于首页) */
.blue-check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

/* --- 3D 按钮通用样式 --- */
.btn-3d {
    display: inline-block;
    width: 100%;
    background-color: #00C040;
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 0.75rem; /* rounded-xl */
    border-bottom: 6px solid #008a2e;
    transition: all 0.2s;
    font-size: 1.25rem; /* text-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .btn-3d {
        width: auto;
        font-size: 1.5rem; /* md:text-2xl */
    }
}

.btn-3d:hover {
    background-color: #00D045;
}

.btn-3d:active {
    border-bottom-width: 0;
    transform: translateY(6px);
}

/* --- 法律页面 (Legals) 通用样式 --- */
.legals {
    font-family: 'Source Sans Pro', sans-serif;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3.2rem;
}

.legals-container-header h1 {
    font-weight: 800;
    font-size: 2.5em; /* 对应 3.6rem */
    margin-bottom: 20px;
    text-align: center;
}

.legals-container-main h2 {
    font-weight: 700;
    font-size: 1.8em; /* 对应 3rem */
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.legals-container-main p {
    margin-bottom: 15px;
    font-size: 16px; /* 对应 2.1rem (在 html font-size默认情况下) */
    color: #333;
    line-height: 1.5;
}

.legals-container-main a {
    text-decoration: none;
    color: #4089c3;
}
.legals-container-main a:visited {
    color: #4089c3;
}

.legals-container-main ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    padding-left: 2rem;
}

.legals-container-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 2rem;
    flex-wrap: wrap;
    font-size: 14px;
}

.legals-container-links a {
    color: #4089c3;
    margin: 0 10px;
    font-weight: 600;
}

.legals-container-links a:visited {
    color: #4089c3;
}

.legals-container-links a:hover {
    text-decoration: underline;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .legals-container-header h1 {
        font-size: 2em;
    }
    
    .legals-container-links a {
        display: block;
        margin: 5px 10px;
    }
}