#splash-screen{
    position:fixed;
    inset:0;
    background:#f5f7fa;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.splash-card{
    width:min(90%,650px);
    background:#ffffff;
    border-radius:18px;
    padding:50px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #e5e7eb;
}

.splash-logo{
    max-width:220px;
    margin-bottom:25px;
}

.splash-card h1{
    color:#1f2937;
    font-size:2rem;
    margin-bottom:20px;
}

.splash-card p{
    color:#4b5563;
    line-height:1.8;
    margin-bottom:15px;
}

.notice{
    background:#f8fafc;
    border-left:4px solid #2563eb;
    padding:15px;
    border-radius:8px;
    text-align:left;
}

.buttons{
    margin-top:30px;
}

#enter-site,
#leave-site{
    padding:14px 28px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
    transition:.2s;
}

#enter-site{
    background:#2563eb;
    color:white;
}

#enter-site:hover{
    transform:translateY(-2px);
}

#leave-site{
    background:#e5e7eb;
    color:#374151;
    margin-left:10px;
}

#leave-site:hover{
    background:#d1d5db;
}