* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top, #111 0%, #000 70%);
    height: 100vh;
    font-family: 'Orbitron', sans-serif;
    color: #ff4fd8;
    overflow: hidden;
}

/* Logo linksboven */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo img {
    height: 140px;
    width: auto;
}

/* Center content */
.container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.message {
    font-size: clamp(1.6rem, 4vw, 3rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow:
        0 0 10px rgba(255, 79, 216, 0.6),
        0 0 30px rgba(255, 79, 216, 0.3);
    animation: pulse 2.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.85; }
    50% { opacity: 1; }
    100% { opacity: 0.85; }
}

/* Subtiele race-lijn */
.line {
    margin-top: 30px;
    height: 3px;
    width: 120px;
    background: linear-gradient(
        90deg,
        transparent,
        #ff4fd8,
        transparent
    );
    margin-left: auto;
    margin-right: auto;
}
