/* ============================================================
 * profile.css — 个人中心样式（多标签页）
 * ============================================================ */

.forum-profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(22, 20, 17, 0.98);
    border: 1px solid rgba(224, 192, 96, 0.08);
    border-radius: 2px;
    margin-bottom: 2px;
}

.forum-profile-avatar {
    flex-shrink: 0;
}

.forum-profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(224, 192, 96, 0.15);
}

.forum-profile-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(224, 192, 96, 0.08);
    border: 2px solid rgba(224, 192, 96, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'VT323', monospace;
    font-size: 2.2rem;
    color: #e0c060;
}

.forum-profile-details {
    flex: 1;
    min-width: 0;
}

.forum-profile-details h2 {
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
    color: #e0c060;
    margin: 0 0 4px;
}

.forum-profile-signature {
    font-family: 'VT323', monospace;
    font-size: 0.82rem;
    color: rgba(184, 176, 160, 0.5);
    margin-bottom: 8px;
    font-style: italic;
}

.forum-profile-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-family: 'VT323', monospace;
    font-size: 0.85rem;
    color: rgba(184, 176, 160, 0.6);
}

.forum-profile-emerald {
    color: #7cfc00;
}

/* Tab导航 */
.profile-tabs {
    display: flex;
    gap: 0;
    background: rgba(22, 20, 17, 0.98);
    border: 1px solid rgba(224, 192, 96, 0.08);
    border-radius: 2px;
    margin-bottom: 16px;
    overflow-x: auto;
}

.profile-tab {
    padding: 12px 24px;
    font-family: 'VT323', monospace;
    font-size: 0.95rem;
    color: rgba(184, 176, 160, 0.5);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
    white-space: nowrap;
    user-select: none;
}

.profile-tab:hover {
    color: #e0d8c8;
    background: rgba(224, 192, 96, 0.03);
}

.profile-tab.active {
    color: #e0c060;
    border-bottom-color: #e0c060;
}

/* Tab面板 */
.profile-panel { display: none; }
.profile-panel.active { display: block; }

.forum-profile-section {
    margin-bottom: 20px;
}

.forum-profile-section-title {
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    color: #e0c060;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(224, 192, 96, 0.1);
}

/* 钱包 */
.wallet-balance {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-family: 'VT323', monospace;
}

.wallet-balance-label {
    font-size: 1rem;
    color: rgba(184, 176, 160, 0.6);
}

.wallet-balance-value {
    font-size: 1.8rem;
    color: #7cfc00;
}

.wallet-balance-unit {
    font-size: 0.9rem;
    color: rgba(124, 252, 0, 0.6);
}
