/* --------------------------------------------------
   RaggioSoft Hub — Fumetti identici e allineati
-------------------------------------------------- */

body {
    margin: 0;
    padding: 0;
    background: #E5E5E7;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
    color: #333;
}

/* Layout */
.hub-page {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.hub-wrapper {
    width: 100%;
    max-width: 600px;
}

/* Logo */
.hub-banner {
    text-align: center;
    margin-bottom: 10px;
}

.hub-banner img {
    width: 120px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
}

/* Titoli */
.hub-title {
    text-align: center;
    font-size: 28px;
    color: #007AFF;
    font-weight: 700;
    margin: 0;
}

.hub-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin: 0 0 25px 0;
}

/* LISTA FUMETTI */
.hub-list,
.hub-buttons-img {
    display: flex;
    flex-direction: column;
    gap: 18px; /* distanza identica */
    padding: 0 20px;
}

/* FUMETTI IDENTICI */
.hub-item,
.hub-img-btn {
    width: 360px;      /* larghezza identica */
    height: 70px;      /* altezza identica */
    margin: 0 auto;    /* centrato */

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px;

    display: flex;
    align-items: center;
    justify-content: flex-start; /* 🔥 testo a sinistra */

    box-shadow: 0 3px 14px rgba(0,0,0,0.08);
    transition: 0.2s ease-in-out;
}

.hub-item:hover,
.hub-img-btn:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}

/* Icone fumetti normali */
.hub-icon {
    font-size: 26px;
    width: 36px;
    text-align: center;
    margin-right: 12px;
}

/* Testo */
.hub-label {
    font-size: 17px;
    font-weight: 600;
}

.hub-status {
    font-size: 14px;
    margin-top: 3px;
    color: #007AFF;
    font-weight: 500;
}

/* BOTTONI IMMAGINE (identici ai fumetti) */
.hub-img-btn img {
    max-height: 45px;
    max-width: 90%;
    object-fit: contain;
    margin-left: 10px;
}

/* Footer */
.hub-footer {
    text-align: center;
    margin-top: 35px;
    font-size: 13px;
    color: #555;
    opacity: 0.8;
    line-height: 1.6;
}

.hub-footer a {
    color: #007AFF;
    text-decoration: none;
}

.hub-footer a:hover {
    text-decoration: underline;
}

