* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    background:
    radial-gradient(
        circle at 50% 45%,
        rgba(25, 105, 220, 0.35),
        transparent 35%
    ),
    linear-gradient(
        135deg,
        #041a43 0%,
        #07347d 45%,
        #0861d7 100%
    );
}

body {
    width: 100%;
    min-height: 100%;
    background: #041a43;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

/* VOLLEDIGE PAGINA */

.coming-soon {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(25, 105, 220, 0.35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #041a43 0%,
            #07347d 45%,
            #0861d7 100%
        );
}

/* LOGO + BALK */

.content {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 28px;

    padding: 30px;
}

/* LOGO */

.logo {
    width: clamp(280px, 30vw, 500px);
    height: auto;

    display: block;

    filter:
        drop-shadow(0 15px 25px rgba(0, 0, 0, 0.18))
        drop-shadow(0 0 20px rgba(0, 102, 255, 0.18));
}

/* MORE INFO BALK */

.info-bar {
    min-width: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    padding: 18px 28px;

    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 18px;

    background: rgba(0, 25, 80, 0.25);

    transform: translateY(-80px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.15),
        0 0 18px rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(6px);
}

/* TEKST */

.info-bar p {
    color: white;

    font-size: 17px;
    font-weight: 700;

    letter-spacing: 5px;

    white-space: nowrap;
}

/* LIJNTJES LINKS EN RECHTS */

.line {
    width: 42px;
    height: 2px;

    background: rgba(255, 255, 255, 0.9);

    border-radius: 10px;
}

/* GSM */

@media (max-width: 650px) {

    .content {
        gap: 22px;
        width: 100%;
    }

    .logo {
    width: 100vw;
    max-width: 500px;
}

    .info-bar {
        min-width: 0;
        width: 90%;

        gap: 12px;

        padding: 15px 18px;

        border-radius: 14px;
    }

    .info-bar p {
        font-size: 12px;
        letter-spacing: 2.5px;
    }

    .line {
        width: 22px;
    }
}