html {
    background: #0033a1;
    height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #0033a1;
}

canvas {
    display: block;
    background: #0033a1;
    width: 100vw;
    height: 100vh;
}

#centerImage {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 10;
    max-width: 28vw;
    max-height: 28vh;
    object-fit: contain;
}

#statusText {
    position: fixed;
    top: 63%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 12;
    text-align: center;
}

.status-line {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2rem;
    color: #BD9c61;
    text-shadow: 
        -1px -1px 0 #0033a1,
        1px -1px 0 #0033a1,
        -1px 1px 0 #0033a1,
        1px 1px 0 #0033a1,
        -2px 0 0 #0033a1,
        2px 0 0 #0033a1,
        0 -2px 0 #0033a1,
        0 2px 0 #0033a1;
    line-height: 1.2;
    margin: 0;
}

