/* Scroll progress bar styles - Updated with Golden color scheme */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 8px;
    background: linear-gradient(90deg, #DAB678, #402E25, #DAB678);
    z-index: 9999;
    transition: width 0.25s ease-out;
    box-shadow: 0 0 8px rgba(218, 182, 120, 0.5);
}