body {
    margin: 0;
    padding: 48px 16px;
    background-color: #000;
    color: white;
    font-family: 'Bruno Ace', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   /* <-- belangrijk */
    align-items: center;
    min-height: 100vh;            /* <-- belangrijk */
    text-align: center;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;          /* <-- belangrijk */
    will-change: opacity;          /* <-- performance hint */
    background: radial-gradient(
        circle at 50% 40%,
        rgba(255,255,255,0.06),
        rgba(0,0,0,0.9) 60%
    );
    animation: studioPulse 12s ease-in-out infinite;
}


@keyframes studioPulse {
    0%   { opacity: 0.15; }
    50%  { opacity: 0.35; }
    100% { opacity: 0.15; }
}


.logo { order: 1; }
.tagline { order: 2; }
.publisher-block { order: 3; }
.btn-holder { order: 4; }

.logo {
    max-width: 80%;
    height: auto;
}

.tagline {
    margin-top: 30px;
    font-size: 1.5rem;
    opacity: 0.85;
}

.btn-holder {
    margin-top: 20px;
}

.btn-explore {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.2rem;
    border: 2px solid white;
    border-radius: 20px; /* Ronde hoeken */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-explore:hover {
    background-color: white;
    color: black;
}

@media (max-width: 600px) {
    .tagline {
        font-size: 1.2rem;
    }
}


/* Error page styling */
.error-body {
    background: #050814;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.error-container {
    background: rgba(7, 16, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 420px;
    text-align: center;
    color: #E8EDF2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.error-title {
    font-size: 26px;
    margin-bottom: 14px;
    color: #FFFFFF;
}

.error-text {
    margin-bottom: 24px;
    line-height: 1.6;
}

.error-button {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #021016;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transition: 0.15s ease;
}

.error-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(255, 255, 255, 0.45);
}

.publisher-block {
    margin-top: 32px;
    text-align: center;
}

.publisher-label {
    font-size: 12px;
    color: #a1a6b3;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.publisher-title {
    font-size: 26px;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.publisher-sub {
    font-size: 13px;
    color: #a1a6b3;
    margin-bottom: 14px;
}


       