/* Welcome Popup Styles */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup-content {
    text-align: center;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 90%;
}

.popup-logo {
    max-width: 400px;
    margin-bottom: 1.5rem;
    width: 400px;
}

.popup-title {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.popup-text {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}