body { 
    font-family: sans-serif; 
    text-align: center; 
    padding-top: 50px; 
    background: #f4f4f9; 
    margin: 0;
} 

.container { 
    background: white; 
    padding: 30px; 
    display: inline-block; 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
    user-select: none;
} 

.image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 25px auto;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 280px;
}

.circle {
    animation: spin 6s linear infinite;
    z-index: 1;
}

.shield {
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

.text-img {
    z-index: 3; /* De tekst-afbeelding ligt statisch bovenop */
}

.loading-bar-container {
    width: 280px;
    height: 8px;
    background: #e0e0e6;
    border-radius: 4px;
    margin: 20px auto 15px auto;
    overflow: hidden;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: #2c3e50; /* Zelfde kleurthema als h1 */
    border-radius: 4px;
    /* De balk animeert vloeiend in exact 2,5 seconden naar 100% */
    animation: fillBar 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.loading-text {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: bold;
    min-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.04); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

@keyframes fillBar {
    0% { width: 0%; }
    100% { width: 100%; }
}
