/* imports all shared CSS and defines global text, background, utility, and section styles. */

@import url("./fonts.css");
@import url("./variables.css");
@import url("./reset.css");
@import url("./layout.css");
@import url("./components.css");
@import url("./badges.css");

@import url("./pages/home.css");

body {
    background:
        radial-gradient(
            circle at top right,
            rgb(75 185 233 / 8%),
            transparent 35%
        ),
        var(--color-background);

    color: var(--color-text);
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.5;
}

::selection {
    color: white;
    background: var(--color-primary-dark);
}

.hidden {
    display: none !important;
}

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

.text-primary {
    color: var(--color-primary);
}

.text-success {
    color: var(--color-success);
}

.text-danger {
    color: var(--color-danger);
}

.page-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    line-height: 1.1;
}

.page-description {
    max-width: 680px;
    margin-top: 8px;
    color: var(--color-text-muted);
}

.section {
    margin-top: 32px;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.soggycoin {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 750;
}

.soggycoin::before {
    content: "💧";
}
