#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.25s ease;
}
#loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}
#loading-overlay .loading-icon {
    width: 80px;
    height: 80px;
    z-index: 2;
}
.sparkle-container {
    position: absolute;
    width: 200px;
    height: 200px;
}
.sparkle {
    position: absolute;
    width: 12px;
    height: 12px;
    opacity: 0;
    background: #fff;
    clip-path: polygon(50% 0%, 60% 35%, 100% 50%, 60% 65%, 50% 100%, 40% 65%, 0% 50%, 40% 35%);
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.8));
}
.s1 { top: 10%; left: 20%; animation: shimmer 2s ease-in-out infinite 0s; }
.s2 { top: 5%; left: 65%; animation: shimmer 2s ease-in-out infinite 0.3s; }
.s3 { top: 35%; left: 5%; animation: shimmer 2s ease-in-out infinite 0.5s; }
.s4 { top: 30%; left: 90%; animation: shimmer 2s ease-in-out infinite 0.8s; }
.s5 { top: 70%; left: 15%; animation: shimmer 2s ease-in-out infinite 0.2s; }
.s6 { top: 75%; left: 80%; animation: shimmer 2s ease-in-out infinite 0.6s; }
.s7 { top: 90%; left: 40%; animation: shimmer 2s ease-in-out infinite 1.0s; }
.s8 { top: 55%; left: 50%; animation: shimmer 2s ease-in-out infinite 1.3s; }
@keyframes shimmer {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #ad9263;
    color: #fff;
    padding: 10px 20px;
    z-index: 100000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s ease;
}
.skip-to-content:focus {
    top: 0;
    color: #fff;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid #ad9263;
    outline-offset: 2px;
}
