.welcome-popup {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
}

.welcome-content {
    background: rgba(255,255,255,0.9);
    padding: 40px 60px;
    border-radius: 10px;
    text-align: center;
    color: #222;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.welcome-content h1 {
    margin: 0 0 10px;
    font-size: 2em;
}

.welcome-content p {
    margin: 0;
    font-size: 1.2em;
}
