#nms-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    /* Semi-transparent black */
    backdrop-filter: blur(10px);
    /* Blur the content behind */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    color: #fff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: sans-serif;
}

.nms-hidden {
    display: none !important;
}

.nms-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nms-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.nms-h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

.nms-h2 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

#nms-countdown {
    font-size: 4rem;
    font-weight: bold;
    margin-top: 80px;
}

/* Block user interaction */
body.nms-active {
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

#nms-banner {
    pointer-events: auto;
}