@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

body {
    font-family: 'Oswald', sans-serif;
    background: #fff8e1;
    color: #212121;
    margin: 0;
    padding: 2rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
    font-size: 18px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #333;
}

ul {
    background: rgba(255,255,255,0.6);
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(33,33,33,0.04);
    margin: 0 0 1rem 0;
}

ul > li {
    margin: 0.45rem 0;
    padding: 0.3rem 0;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1b1b1b;
}

ul > li > ul {
    margin-top: 0.4rem;
    padding-left: 1.05rem;
    list-style: disc;
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

ul li ul li {
    margin: 0.25rem 0;
    font-weight: 400;
    font-size: 0.95rem;
}

body > ul:first-of-type,
body > ul:nth-of-type(2) {
    display: block;
}

a {
    color: #1565c0;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

a:hover,
a:active {
    color: #0d47a1;
    border-color: #ffc107;
    transform: translateY(-1px);
}

a:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(21,101,192,0.12);
    border-radius: 3px;
}

a[href$="/"]::after {
    content: " \u2192";
    font-weight: 700;
    opacity: 0.75;
    margin-left: 0.25rem;
    font-size: 0.95rem;
}

.inline-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
        font-size: 16px;
    }
    ul {
        padding: 0.5rem 0.7rem;
    }
    ul > li {
        font-size: 1rem;
    }
    a {
        font-size: 0.98rem;
    }
}
