/* ============================================
   更多功能页面样式 - more.html
   包含：菜单列表、密码弹窗
   ============================================ */

/* 菜单列表 */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 15px;
    transition: 0.2s;
    cursor: pointer;
}

.menu-item:active {
    box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
}

.menu-icon {
    font-size: 24px;
    margin-right: 0;
    margin-bottom: 8px;
}

.menu-text {
    font-size: 16px;
    font-weight: 500;
}

/* ============================================
   密码弹窗
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-box {
    width: 85%;
    max-width: 350px;
    padding: 30px 25px;
    text-align: center;
    border-radius: 20px;
}

.modal-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.modal-box .neu-concave {
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 4px;
}

.modal-btns {
    display: flex;
    gap: 15px;
}

.modal-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    background: var(--bg-color);
    box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
}

.modal-btn:active {
    box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
}

.cancel-btn {
    color: #888;
}

.confirm-btn {
    color: var(--accent-color);
}

.modal-error {
    color: red;
    font-size: 13px;
    margin-top: 12px;
    min-height: 18px;
}
