html, body {
    padding: 0;
    margin: 0;
    height: 100%;
}
body {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: #4a4a4a;
    transition: background-color 0.4s;
}
body.opened { background-color: #1e6b2e; }
body.closed { background-color: #8b1a1a; }
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
    min-width: 0;
}
@media (min-width: 1500px) {
    .main { padding-left: 20rem; }
}
img {
    width: 80%;
    max-width: 700px;
    aspect-ratio: 1;
}
@media (max-width: 900px) {
    body {
        flex-direction: column;
        height: auto;
        min-height: 100%;
    }
    img { width: 100%; }
}
.status {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}
@media (max-width: 900px) {
    .status { font-size: 1.5rem; }
}
.donate {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
.donate:hover {
    color: #fff;
}
.sidebar {
    width: 20rem;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    color: #fff;
    overflow-y: auto;
}
@media (max-width: 900px) {
    .sidebar {
        width: auto;
        margin: 0 0.5rem 0.5rem;
        border-radius: 0.5rem;
    }
}
.sidebar h2 {
    margin: 0;
    padding: 1rem 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.sidebar ol {
    margin: 0;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
    overflow-y: auto;
    list-style: none;
}
.sidebar ol::-webkit-scrollbar { width: 4px; }
.sidebar ol::-webkit-scrollbar-track { background: transparent; }
.sidebar ol::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.5); border-radius: 2px; }
.sidebar ol li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.15s;
}
.sidebar ol li a:hover {
    background: rgba(255, 255, 255, 0.1);
}
.sidebar ol li .date {
    display: block;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2px;
}
