html {
    scroll-behavior: smooth;
}

.dark-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.dark-overlay {
    position: relative;
}

.dark-overlay > * {
    position: relative;
    z-index: 2;
}

.custom-list li {
    border-bottom: 1px solid #333; 
    padding: 8px 0;
}
.custom-list li:last-child {
    border-bottom: none;
}

.gradient-hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(150, 150, 150, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.navbar {
    background-color: rgba(31, 41, 55, 0);
    transition: background-color 0.3s;
}

.bg-scroll {
    background-color: rgba(255, 255, 255, 0);
}