/* Overlay sfondo */
.bestcredits-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

/* Overlay attivo */
.bestcredits-popup-overlay.active {
    display: flex;
}

/* Box popup */
.bestcredits-popup-box {
    position: relative;
    width: 100%;
    max-width: 680px;
    background: #ffffff;
    border-radius: 24px;
    padding: 34px 34px 30px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
    text-align: left;
    animation: bestcreditsFadeIn 0.25s ease;
}

/* Titolo popup */
.bestcredits-popup-box h3 {
    margin: 0 0 22px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: #222;
}

/* Contenuto generale del popup */
.bestcredits-popup-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Bottone chiusura (X) */
.bestcredits-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: transparent;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    padding: 0;
}

.bestcredits-popup-close:hover {
    opacity: 0.7;
}

/* Link trigger "Credits" */
.bestcredits-trigger {
    cursor: pointer;
    text-decoration: none;
}

.bestcredits-trigger:hover {
    opacity: 0.8;
}

/* Blocco centrale del brand */
.bestcredits-brand-block {
    text-align: center;
}

/* Riga introduttiva sopra al logo */
.bestcredits-brand-intro {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 20px;
}

/* Link con scritta BEST + logo */
.bestcredits-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #000 !important;
    margin-bottom: 18px;
}

/* Scritta BEST */
.bestcredits-brand-name {
    font-size: 52px !important;
    line-height: 1;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    color: #111;
}

/* Logo immagine BEST 74 */
.bestcredits-brand-logo {
    display: block;
    width: 38px;
    height: auto;
    max-width: 100%;
}

/* Claim finale sotto logo */
.bestcredits-brand-claim {
    max-width: 560px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

/* Animazione apertura popup */
@keyframes bestcreditsFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tablet e schermi medi */
@media (max-width: 767px) {

    .bestcredits-popup-box {
        max-width: 92%;
        padding: 28px 22px 24px;
        border-radius: 18px;
    }

    .bestcredits-popup-box h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .bestcredits-popup-close {
        font-size: 34px;
        top: 10px;
        right: 14px;
    }

    .bestcredits-brand-intro {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .bestcredits-brand-link {
        gap: 8px;
        margin-bottom: 16px;
    }

    .bestcredits-brand-name {
        font-size: 40px;
    }

    .bestcredits-brand-logo {
        width: 32px;
    }

    .bestcredits-brand-claim {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Responsive mobile */
@media (max-width: 480px) {
    .bestcredits-popup-box {
        padding: 24px 18px 20px;
        border-radius: 16px;
    }

    .bestcredits-popup-box h3 {
        font-size: 18px;
    }

    .bestcredits-brand-name {
        font-size: 32px;
    }

    .bestcredits-brand-logo {
        width: 26px;
    }

    .bestcredits-brand-claim {
        font-size: 14px;
        line-height: 1.5;
    }
}