/* 头像区域 */
.profile-section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.user-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.user-info p {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    letter-spacing: 1px;
}

.heart-center {
    font-size: 28px;
    color: #ff6b81;
    animation: pulse 2s infinite ease-in-out;
}

/* 计时器 */
.timer-title {
    font-size: 13px;
    color: #888;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.timer-num {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin: 0 4px;
}

/* 分割线 */
.divider-light {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 24px 0 20px;
}

/* 心跳动画 */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}