details>summary {
    list-style: none;
}
details>summary::-webkit-details-marker {
    display: none;
}
.video-scroll::-webkit-scrollbar {
    height: 4px;
}
.video-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 10%;
}
.video-scroll::-webkit-scrollbar-thumb {
    background: rgba(229, 229, 224, 0.3);
    border-radius: 10px;
    transition: background 0.3s;
    cursor: pointer;
}
.video-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(229, 229, 224, 0.8);
}
.dust-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    pointer-events: none;
    overflow: hidden;
}
.mote {
    position: absolute;
    background: #E5E5E0;
    border-radius: 50%;
    opacity: 0;
    animation: float-mote linear infinite;
}
@keyframes float-mote {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}
