body {
    /* Styles */
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    padding: 0px;
    margin: 0px;
    background: hsl(var(--hue), 10%, 20%);
}

body, * {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%; /* For Safari */
    text-size-adjust: 100%; /* For other browsers */
    min-width: 0px;
    word-break: break-word;
    scrollbar-color: hsl(var(--hue), 10%, 40%) hsl(var(--hue), 10%, 15%);
}

*::selection {
    background: hsla(var(--hue), 30%, 60%, 0.8);
    color: white;
}

b {
    font-weight: 800;
}

p, li {
    font-size: 16px;
    line-height: 1.4;
    color: hsl(var(--hue), 20%, 95%);
    font-weight: 500;
}

p {
    margin: 0px 0px 0.8em 0px;
}

li {
    margin: 0px 0px 0.5em 0px;
}

p:last-child, li:last-child {
    margin: 0px;
}
ul:not(:last-child), ol:not(:last-child) {
    margin: 0px 0px 0.8em 0px;
}

small {
    font-size: 14px;
    line-height: 1.2;
    color: hsl(var(--hue), 20%, 80%);
    font-weight: 500;
}

.shadow {
    filter:
        drop-shadow(0px 4px 6px hsla(var(--hue), 20%, 5%, 50%))
        drop-shadow(0px 12px 18px hsla(var(--hue), 20%, 5%, 30%));
}

.navbar {
    width: 100%;
    padding: 8px;
    display: flex;
    justify-content: center;
}

.navbar .inner {
    overflow: hidden;
    border-radius: 64px;
    background: hsla(var(--hue), 10%, 25%);
}

.navbar .scroller {
    display: flex;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px;
}

.navbar .title {
    font-size: 18px;
    font-weight: 700;
    color: hsl(var(--hue), 40%, 80%);
    padding: 0px 8px 0px 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar .tab {
    --bg: transparent;
    --text: hsl(var(--hue), 20%, 90%);
    --bg-hover: hsl(var(--hue), 10%, 35%);
    --text-hover: white;
    height: 36px;
    padding: 0px 12px;
    border-radius: 16px;
    font-family: inherit;
    font-weight: 800;
    font-size: 13px;
    color: var(--text);
    background: var(--bg);
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    user-select: none;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    text-decoration: none;
    transition: 0.1s ease-in-out;
}
.navbar .tab:hover,
.navbar .tab:focus-visible {
    transition: none;
    background: var(--bg-hover);
    text-decoration: none;
    color: var(--text-hover);
}
.navbar .tab.active {
    --bg: hsl(var(--hue), 30%, 40%);
    --text: white;
    --bg-hover: hsl(var(--hue), 30%, 50%);
    --text-hover: white;
}

#main {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: auto;
    scroll-behavior: smooth;
    flex-direction: column;
}

.jumbotron {
    width: 100%;
    height: calc(100% - 8px);
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
    min-height: fit-content;
    line-height: 1;
    background: linear-gradient(
        135deg,
        hsl(calc(var(--hue) + 30),            20%, 30%) 0%,
        hsl(calc(var(--hue) - 30), 20%, 30%) 100%
    );
    border-radius: 0px 0px 32px 32px;
}
.jumbotron .subtitle {
    font-size: 42px;
    font-weight: 800;
    color: hsl(var(--hue), 30%, 80%);
}
.jumbotron .title {
    font-size: 128px;
    font-weight: 900;
    color: hsl(var(--hue), 30%, 90%);
}
.jumbotron .subsubtitle {
    font-size: 28px;
    font-weight: 600;
    color: hsl(var(--hue), 20%, 60%);
    margin-top: 24px;
    line-height: 1.2;
}

.hint {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 16px;
    flex-shrink: 0;
    text-align: center;
    font-weight: 700;
    color: hsl(var(--hue), 30%, 80%);
    overflow-y: visible;
    height: 0px;
    transform: translateY(-80px);
}
.hint .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 48px;
    margin-bottom: -8px;
    user-select: none;
}
.hint .text {
    font-size: 18px;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 48px 8px 32px 8px;
    width: 100%;
    align-items: center;
}

.card {
    padding: 8px;
    border-radius: 16px;
    background: hsl(var(--hue), 10%, 15%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    width: 1000px;
    max-width: 100%;
    box-shadow: 0px 2px 4px hsla(var(--hue), 20%, 5%, 50%);
}

.card .top {
    padding: 8px 12px;
    border-radius: 8px;
    background: hsl(var(--hue), 20%, 40%);
    font-size: 18px;
    font-weight: 800;
    color: hsl(var(--hue), 20%, 90%);
    flex-shrink: 0;
    height: 36px;
    display: flex;
    align-items: center;
}

.card .body {
    padding: 8px;
}

.card .body h3 {
    font-size: 16px;
    color: white;
    font-weight: 700;
    padding: 0px;
    padding-bottom: 4px;
    margin: 0px;
    margin-bottom: 0.8em;
    margin-top: 1.5em;
    width: fit-content;
    border-bottom: 2px solid hsl(var(--hue), 20%, 50%);
}
.card .body h3:first-child {
    margin-top: 0px;
}

.card .body .grid {
    column-count: 2;
    column-gap: 8px;
    gap: 8px;
}

.card .body .stamp {
    border-radius: 8px;
    background: hsl(var(--hue), 10%, 20%);
    padding: 8px 12px;
    break-inside: avoid;
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
}
.card .body .stamp .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    color: hsl(var(--hue), 20%, 80%);
    flex-shrink: 0;
    user-select: none;
    font-weight: normal;
}
.card .body .stamp p {
    line-height: 1.2;
    flex-grow: 1;
}

@media (max-width: 700px) {
    .card .body .grid {
        display: flex;
        flex-direction: column;
    }
    .card .body .stamp {
        margin-bottom: 0px;
    }
}

@media (max-width: 400px) {
    .jumbotron .title {
        font-size: 96px;
    }
}