/* Share to Unlock Styles */
.share-to-unlock-container {
    position: relative;
    margin: 20px 0;
}

.share-unlock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(3px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.share-to-unlock-container[data-unlocked='true'] .share-unlock-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.share-unlock-box {
    text-align: center;
    padding: 40px 30px;
    max-width: 500px;
}

.share-unlock-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.share-unlock-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.share-unlock-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn-facebook {
    background: #1877f2;
}

.share-btn-facebook:hover:not(:disabled) {
    background: #0d65d9;
}

.share-btn-twitter {
    background: #1da1f2;
}

.share-btn-twitter:hover:not(:disabled) {
    background: #0c8bd9;
}

.share-btn-whatsapp {
    background: #25d366;
}

.share-btn-whatsapp:hover:not(:disabled) {
    background: #1eb855;
}

.share-btn-linkedin {
    background: #0077b5;
}

.share-btn-linkedin:hover:not(:disabled) {
    background: #006399;
}

.share-unlock-note {
    font-size: 13px;
    color: #666;
    margin-top: 15px;
}

.share-unlock-content {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    transition: filter 0.5s ease;
}

.share-to-unlock-container[data-unlocked='true'] .share-unlock-content {
    filter: blur(0);
    user-select: auto;
    pointer-events: auto;
}

@media (max-width: 600px) {
    .share-unlock-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}