#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8,8,10,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

#splashContent {
    background: linear-gradient(180deg,#0f1720 0%, #0a0b0e 100%);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 36px;
    max-width: 680px;
    box-shadow: 0 12px 40px rgba(2,6,23,0.7);
}

#splashContent h1 {
    font-size: 2.2em;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: none;
}

#splashContent p {
    margin-bottom: 22px;
    color: #b7c3cf;
    font-size: 14px;
}

#splashContent button {
    font-size: 1em;
    padding: 10px 20px;
    margin: 8px;
    border-radius: 8px;
}

#splashScreen.hidden {
    display: none;
}