/* Hidden */
.gsp-hidden {
    display: none !important;
}

/* 🎁 Ikona */
#gsp-bf-icon.gsp-bf-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 56px;
    height: 56px;

    background: #768D7F;
    color: #ffffff;

    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 30px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;

    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 999998;

    animation: gsp-bf-pulse 2s infinite ease-in-out;
}

@keyframes gsp-bf-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* Overlay */
#gsp-bf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 999999;
}

/* Modal */
#gsp-bf-modal {
    background: radial-gradient(circle at top, #3a3a3a 0%, #0b0b0b 75%);
    color: #ffffff;

    padding: 36px 28px;
    border-radius: 22px;

    max-width: 420px;
    width: 100%;
    text-align: center;

    position: relative;
    font-family: "Poppins", sans-serif;

    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    animation: gsp-bf-fadeIn .25s ease-out;
}

@keyframes gsp-bf-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modal text */
#gsp-bf-modal-inner h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

#gsp-bf-modal-inner p {
    font-size: 18px;
    margin: 6px 0;
    color: #ffffff;
}

/* Code block */
.gsp-bf-code {
    font-size: 34px;
    font-weight: 800;

    margin-top: 10px;
    background: #ffffff;
    color: #000000;

    padding: 8px 14px;
    border-radius: 10px;

    display: inline-block;
    letter-spacing: 2px;
}

/* Mobile */
@media (max-width: 480px) {
    #gsp-bf-modal {
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px);
        border-radius: 20px;
    }

    #gsp-bf-icon.gsp-bf-icon {
        width: 52px;
        height: 52px;
        right: 18px;
    }
}
