:root {
    color-scheme: dark;
    font-family: Inter, system-ui, sans-serif;
    background: #111;
    color: #e0e0e0;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

main,
.content-page {
    max-width: 700px;
}

h1,
h2 {
    color: #f5f5f5;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.2rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgb(255 255 255 / 5%);
}

h2 {
    font-size: 1.25rem;
}

p,
li {
    color: #bdbdbd;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
}

footer {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    color: #888;
    font-size: 0.9rem;
}

a,
.text-button {
    color: #b9d7ff;
}

.text-button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
}

.consent-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: min(28rem, calc(100vw - 2rem));
    padding: 1.25rem;
    border: 1px solid #3c3c3c;
    border-radius: 0.75rem;
    background: #1c1c1c;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 35%);
    text-align: left;
}

.consent-banner h2,
.consent-banner p {
    margin-top: 0;
}

.consent-banner p {
    font-size: 0.95rem;
}

.consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.primary-button,
.secondary-button {
    border: 1px solid #5d8fc7;
    border-radius: 0.4rem;
    padding: 0.6rem 0.85rem;
    cursor: pointer;
    font: inherit;
}

.primary-button {
    background: #5d8fc7;
    color: #101820;
}

.secondary-button {
    background: transparent;
    color: #e0e0e0;
}

.content-page {
    text-align: left;
}

.content-page ul {
    padding-left: 1.3rem;
}

@media (max-width: 600px) {
    body {
        padding: 24px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p,
    li {
        font-size: 1rem;
    }
}
