* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: url('/static/KivotosBg2.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.space-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 500px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.8rem;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #eef2ff;
}

.profile-names h1 {
    font-weight: 500;
    font-size: 1.6rem;
    color: #1f2a3e;
    margin-bottom: 4px;
}

.text-secondary {
    color: #5a6874;
    font-size: 0.9rem;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1rem 0 1.5rem;
}

.info-row {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #2c3e50;
    line-height: 1.5;
}
.info-row.small {
    font-size: 0.85rem;
    color: #5a6874;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.back-button:hover {
    background: #106ebe;
}

.extra-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.7rem;
    color: #94a3b8;
    border-top: 1px solid #eaedf0;
    padding-top: 1rem;
}

@media (max-width: 480px) {
    .space-card {
        padding: 1.6rem 1.5rem;
    }
    .profile-avatar {
        width: 52px;
        height: 52px;
    }
}

/* 动态列表 */
.moment-item {
    padding: 1rem 0;
    border-bottom: 1px solid #edf0f5;
}
.moment-item:last-child {
    border-bottom: none;
}
.moment-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #5a6874;
    margin-bottom: 6px;
}
.moment-name {
    font-weight: 600;
    color: #1f2a3e;
}
.moment-body {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 8px;
}
.moment-image {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
}
.moment-footer {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: #5a6874;
}

.empty-hint {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    padding: 2rem 0 0.5rem;
}
