/* =============================================================
   donate.css — Estilos extra de la página de donaciones
   (Los estilos principales están en donation.min.css)
   Ghost's of Lineage II
   ============================================================= */

.page { padding-top: 10vh; }

.donate_calculation p {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
    color: #f5deb3;
}

.logged-user-display {
    background: rgba(0,0,0,0.5);
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid rgba(116, 109, 85, 0.5);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

#processingOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-family: 'Roboto', sans-serif;
}

/* Logos de métodos de pago */
.donate_method div label img {
    max-width: 60%;
    max-height: 6vh;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* ---- RESPONSIVE DESIGN ---- */
@media screen and (max-width: 992px) {
    .page {
        padding-top: 8vh;
    }
}

@media screen and (max-width: 576px) {
    .page {
        padding-top: 7vh;
    }
    .logged-user-display {
        font-size: 13px;
        padding: 8px 12px;
    }
    .donate_method div label img {
        max-width: 70%;
        max-height: 5vh;
    }
}
