/* 
 * OFFSZN Download Gate Styles
 * Isolated styles for the follow-to-download modal.
 */

.share-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.share-modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.share-modal-content {
    background: #111;
    border: 1px solid #333;
    padding: 35px;
    border-radius: 16px;
    width: 95%;
    max-width: 600px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.share-modal-backdrop.active .share-modal-content {
    transform: scale(1);
}

.btn-glass-primary {
    width: 100%;
    padding: 14px 40px;
    background: #fff;
    border: none;
    color: #000;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-glass-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-minimal-link {
    background: none;
    border: none;
    color: #888;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 10px;
    width: 100%;
}

.btn-minimal-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Spinner for buttons */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: #A020F0;
    border-radius: 50%;
    animation: gate-spin 1s linear infinite;
    display: inline-block;
}

@keyframes gate-spin {
    to {
        transform: rotate(360deg);
    }
}