:root {
    /* cores principais */
    --background-color: #232323;
    --flog-color: #111111;
    --text-color: #B1B1B1;
    --link-color: #6B6B6B;
    --accent-color: #464646;

    /* botões */
    --button-color: #171717;
    --button-text-color: #616161;
    --cor-text-botao: #FFFFFF;

    /* subtítulo */
    --subtitle-bg: #303030;
    --subtitle-color: #848484;
    --subtitle-align: left;
    --subtitle-font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --subtitle-font-size: 14px;

    /* tipografia */
    --font-family: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-size: 13px;

    /* arredondamento */
    --button-radius: 6px;
    --flog-radius: 5px;
    --thumb-radius: 0px;
    --main-image-radius: 0px;

    /* fundo */
    --background-image: none;
    --background-size: auto;
    --background-position: top right;
    --background-repeat: repeat;

    /* barra do topo */
    --top-icons-color: #4886A0;
    --top-text-color: #FFFFFF;
    --top-links-color: #2467B0;
    --top-bg-color: #DDDDDD;

    /* outros */
    --banner-height: 284px;
    --avatar-border-width: 1px;
    --avatar-shape-radius: 16px;
    --shadow-intensity: 16;
    --border-radius-percent: 20;
}

/* base global */
html,
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: 1.4;
}

/* preview / flog */
#FlogPage {
    background-color: var(--background-color);
}