

/* -------------------------------------*/
/* Login mit Button und Overlay Fenster */
/*--------------------------------------*/


/* Wrapper nimmt gesamte Höhe, alles zentriert */
.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

/* Überschrift zentriert */
.vip-title {
    font-size: 36px;
    color: #fff;
    text-shadow:
        0 0 5px #00f,
        0 0 10px #00f,
        0 0 20px #00f,
        0 0 40px #00f;
}

/* Glühender Text */
.vip-glow-text {
    font-size: 16px;
    color: #fff;
    text-shadow:
        0 0 5px #00f,
        0 0 10px #00f,
        0 0 20px #00f,
        0 0 40px #00f;
}


.vip-button {




    background: linear-gradient(135deg, #0077ff, #0052cc);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}


.vip-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.vip-button .icon {
    font-size: 20px;
}




/* Overlay */
#loginOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Modal */
#loginModal {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    position: relative;
    font-family: sans-serif;
}

/* Close button */
#closeLogin {
    position: absolute;
    right: 12px;
    top: 5px;
    cursor: pointer;
    font-size: 22px;
}

/* Inputs */
#loginModal input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #bbb;
}

/* Buttons */
#loginModal button {
    width: 95%;
    padding: 10px;
    margin-top: 10px;
    background: #0077ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#loginModal button:hover {
    background: #005cd1;
}





