/* Preload overlay styles */
.preload-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.preload-progress-bar-container {
    width: 300px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
}

.preload-progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.preload-text {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

.preload-subtext {
    color: #888;
    font-size: 12px;
    text-align: center;
}