.section#chapters {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    z-index: 1000;

    backdrop-filter: blur(10px) brightness(0.5);
    background-color: rgba(15, 15, 15, 0.95);
    gap: var(--sz10);

    padding-bottom: 0;
    
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.section#chapters.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.section#chapters .section_title {
    justify-content: center;
    cursor: pointer;
}

.section#chapters .section_content {
    font-size: var(--sz3);
    text-align: center;
    gap: var(--sz3);
    
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.section#chapters .section_content table {
    padding-bottom: var(--sz5);
}

.section#chapters .section_content table * {
    color: var(--txt0);
    text-align: center;
    background-color: transparent;
}

.section#chapters .section_content table th {
    font-weight: 600;
    position: sticky;
    top: 0;
    background: var(--bg0);
    z-index: 10;
    padding: var(--sz3);
}

.section#chapters .section_content table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}