/* Author: Unbox | Marco Moura (https://unboxbr.com.br) | Data/Hora: 2026-02-13 17:41 */

/* ===== BASE & TYPOGRAPHY — ORKUT CLASSIC ===== */

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

body {
    background-color: var(--bg-body);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    color: var(--text-primary);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--text-link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    color: var(--text-primary);
    font-weight: var(--fw-bold);
}

h1 {
    font-size: var(--fs-xl);
}

h2 {
    font-size: var(--fs-lg);
}

h3 {
    font-size: var(--fs-md);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--orkut-blue-border);
    border-radius: var(--radius-full);
}

/* Utils */
.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.text-blue {
    color: var(--text-link);
}

.font-bold {
    font-weight: var(--fw-bold);
}