/* css/profile.css */
.main-profile {
    padding: 80px 20px 60px;
    min-height: calc(100vh - 80px - 70px);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.main-profile .container {
    max-width: 800px;
}

.main-profile h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.main-profile .subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* 个人信息卡片 */
.profile-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.user-info h3 {
    color: #ffeb3b;
    margin-bottom: 5px;
}

/* 统计数据网格 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.stat-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffeb3b;
}

.stat-item p {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

/* 最近活动 */
.recent-activity {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
}

.recent-activity h3 {
    color: #ffeb3b;
    margin-bottom: 20px;
    text-align: center;
}

#activity-list {
    list-style: none;
    padding: 0;
}

#activity-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

#activity-list li:last-child {
    border-bottom: none;
}

/* css/profile.css */

.logout-section {
    text-align: center;
    margin: 40px 0 -20px;
}

.btn-logout {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-logout:hover {
    background-color: #b71c1c;
}