/* =============================================================
   downloads.css — Estilos de la página de descargas
   Ghost's of Lineage II
   ============================================================= */

.download-card {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-icon {
    font-size: 50px;
    color: rgb(237, 224, 203);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(237, 224, 203, 0.3);
}

.download-title {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.download-info {
    font-family: 'Roboto', sans-serif;
    color: #b0a99a;
    font-size: 14px;
    margin-bottom: 25px;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 4px;
    border: 1px solid rgba(116, 109, 85, 0.2);
}

/* Botón reducido al 80% dentro de la carta */
.download-card .main_btn {
    border: none;
    background: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
    margin-top: auto;
    transform: scale(0.8);
    margin-bottom: -15px;
}
.download-card .main_btn span {
    font-size: 1.8vh !important;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: white;
}
.download-card .main_btn:hover span {
    transform: scale(1.05) !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

/* ---- RESPONSIVE DESIGN ---- */
@media screen and (max-width: 992px) {
    .download-card {
        padding: 30px 15px;
    }
}

@media screen and (max-width: 576px) {
    .download-card {
        padding: 25px 15px;
    }
    .download-icon {
        font-size: 40px;
    }
    .download-title {
        font-size: 20px;
    }
    .download-card .main_btn {
        transform: scale(0.9);
        margin-bottom: -10px;
    }
}
