/* 移动端我的页面样式 */
.mobile-profile-page {
    background: var(--light-skin);
    min-height: 100vh;
    padding-top: 20px; /* 为移动端搜索栏留出空间 */
    padding-bottom: 80px; /* 为底部导航栏留出空间 */
    overflow-y: hidden;
}

/* 用户信息区域 */
.user-info-section {
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.user-avatar-large {
    margin-bottom: 1rem;
}

.user-avatar-large img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.username {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.user-level {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.user-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 功能菜单区域 */
.menu-section {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: var(--light-skin);
}

.menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.menu-icon i {
    color: var(--white);
    font-size: 1.1rem;
}

.menu-content {
    flex: 1;
}

.menu-content h3 {
    color: var(--primary-brown);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.menu-content p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

.menu-arrow {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 登录/注册区域 */
.auth-section {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.auth-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.login-btn {
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    color: var(--white);
}

.register-btn {
    background: linear-gradient(135deg, var(--accent-gold), #CD853F);
    color: var(--white);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 退出登录区域 */
.logout-section {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.logout-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid #dc3545;
    border-radius: 25px;
    background: var(--white);
    color: #dc3545;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logout-btn:hover {
    background: #dc3545;
    color: var(--white);
    transform: translateY(-2px);
}

/* 关于我们区域 */
.about-section {
    background: var(--white);
    margin: 0 1rem 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* 响应式调整 */
@media (max-width: 480px) {
    .user-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .menu-item {
        padding: 0.8rem;
    }
    
    .menu-icon {
        width: 35px;
        height: 35px;
    }
    
    .auth-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .social-buttons {
        gap: 0.5rem;
    }
}
