﻿/*:root {
    --page-bg: #F7F9FA;
    --profile-header-bg: transparent;
}

body {
    background: var(--page-bg);
    
}*/
/* ===== PAGE BACKGROUND ===== */

body {
    background: var(--page-bg);
    font-family: Inter, system-ui, -apple-system, sans-serif !important;
    font-size: 15px;
    line-height: 1.55;
    color: #505061;
    overflow-x: hidden;
}

body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: var(--page-bg);
        filter: blur(var(--page-bg-blur, 0px));
        z-index: -1;
}

/* ===== PROFILE HEADER ===== */

.profile-header {
    background: var(--profile-header-bg);
    backdrop-filter: blur(10px);
}

