/* Dark Mode Base */
body {
    background: #111;
    color: #eee;
    font-family: system-ui, sans-serif;
    margin: 0;
    padding: 2rem;
}

/* Section Headers (Year, Month) */
.section-header {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #9cf;
}

.month-header {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    color: #acf;
}

/* Release Cards */
.release-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    margin-bottom: .8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: background .2s;
}

.release-card:hover {
    background: #222;
}

.release-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.release-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.badge-latest {
    background: #0af;
    color: #000;
    padding: .2rem .5rem;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 700;
}

/* File List */
.file-list {
    margin-top: .8rem;
    display: none;
    flex-direction: column;
    gap: .4rem;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-item a {
    color: #6cf;
    text-decoration: none;
    font-weight: 600;
}

.file-size {
    color: #aaa;
    font-size: .85rem;
}

/* Highlight Suite */
.suite {
    color: #ffea80 !important;
    font-weight: 700;
}

/* Expanded card */
.release-card.expanded .file-list {
    display: flex;
}
