/**
 * User Profile V2 - Styles
 * 
 * Extends gallery-v2 styles with profile header.
 * Uses same CSS variables and button styles as gallery-v2.
 * 
 * @package FlagCreator
 * @since 2.0.0
 */

/* ============================================
   CSS Variables (same as gallery-v2)
   ============================================ */
.fc-user-profile-v2 {
    --fc-bg: #404854;
    --fc-card-bg: #2d3139;
    --fc-card-border: rgba(255, 255, 255, 0.06);
    --fc-text: #f6f7f9;
    --fc-text-muted: rgba(246, 247, 249, 0.5);
    --fc-text-secondary: rgba(246, 247, 249, 0.7);
    --fc-red: #C60C30;
    --fc-red-dark: #990924;
    --fc-green: #008C45;
    --fc-gap: 16px;
}

/* ============================================
   Profile Header
   ============================================ */
.fc-profile-header {
    margin-bottom: 32px;
}

.fc-profile-header__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--fc-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.fc-profile-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.fc-profile-header__follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 28px;
    padding: 0 12px;
    background: var(--fc-red);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
    line-height: 1;
    outline: none;
    box-sizing: border-box;
}

.fc-profile-header__follow-btn:hover {
    background: var(--fc-red-dark);
}

.fc-profile-header__follow-btn.is-following {
    background: var(--fc-green);
}

.fc-profile-header__follow-btn.is-following:hover {
    background: #026031;
}

.fc-profile-header__follow-btn.is-own {
    background: rgba(255, 255, 255, 0.15);
    cursor: default;
}

.fc-profile-header__follow-count {
    font-size: 11px;
    font-weight: 600;
    color: white;
}

/* Error message */
.fc-user-profile-v2__error {
    padding: 24px;
    text-align: center;
    color: var(--fc-text-muted);
    font-size: 16px;
}
