/* Reset & Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

.main-container {
    text-align: center;
    padding: 20px;
}

/* De subtiele tekst boven het logo */
.status-label {
    font-size: 11px;
    font-weight: 400;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.4em; /* Zorgt voor die moderne, ruimtelijke 'flow' */
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Logo styling */
.logo-wrapper {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s ease forwards 0.3s; /* Start iets later voor een vloeiend effect */
}

.brand-logo {
    width: 100%;
    max-width: 420px; /* Groot en impactvol */
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.02)); /* Zeer subtiele diepte */
}

/* Vloeiende animatie */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile optimalisatie */
@media (max-width: 480px) {
    .brand-logo {
        max-width: 280px;
    }
    .status-label {
        font-size: 9px;
        letter-spacing: 0.3em;
    }
}