
#welcomeModal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}
#welcomeModal .tp2tm-logo {
    width: 200px;
    margin-bottom: 20px;
}
#welcomeModal button {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
#welcomeModal button:hover {
    background-color: #cc0000;
}
