/* Quick Scroll Menu */
.quick-scroll-menu {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 1100;
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 0.25rem;
    background-color: var(--overlay-light-soft);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 2px 8px var(--overlay-dark-light);
    pointer-events: auto;
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.quick-scroll-menu--hidden {
    display: none !important;
}

.quick-scroll-item {
    margin: 0;
    padding: 0;
}

.quick-scroll-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Pretendard', 'Roboto', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    line-height: 1;
    background: transparent;
}

.quick-scroll-link:hover {
    background-color: var(--hover-color);
}

.quick-scroll-link.active {
    background-color: var(--primary-color);
    color: var(--color-white);
    border-color: var(--primary-color);
}

/* Tablet & Mobile */
@media (max-width: 1023px) {
    .quick-scroll-menu {
        display: flex;
    }

    .detail-view-open .quick-scroll-menu {
        transform: translateX(120px);
        opacity: 0;
        pointer-events: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .quick-scroll-menu {
        bottom: 20px;
    }
}
