/* Locked Content Styles for Premium Access Control */

/* Locked content wrapper - blurs the content */
.locked-content {
    position: relative;
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s ease;
}

/* Container for the overlay */
.locked-content-wrapper {
    position: relative;
}

/* Overlay that appears over locked content */
.locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.92) 0%, rgba(30, 30, 30, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

/* Call-to-action content */
.unlock-cta {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

.unlock-cta i {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

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

.unlock-cta h3 {
    font-family: var(--font-family-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.unlock-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

.unlock-cta .pricing-quick {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffce08;
    margin: 1rem 0;
}

.unlock-cta .btn {
    font-weight: 600;
    padding: 12px 32px;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(210, 10, 10, 0.3);
}

.unlock-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(210, 10, 10, 0.4);
}

.unlock-cta .text-muted {
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Inline locked badge for smaller elements */
.locked-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #ffc107;
    font-size: 0.875rem;
    font-weight: 600;
}

.locked-badge i {
    font-size: 1rem;
}

/* Free tier indicator */
.free-tier-notice {
    background: linear-gradient(135deg, rgba(210, 10, 10, 0.1) 0%, rgba(160, 0, 0, 0.1) 100%);
    border-left: 4px solid var(--color-primary);
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.free-tier-notice h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.free-tier-notice p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Pick counter for free users */
.picks-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid #00c853;
    border-radius: 6px;
    color: #00c853;
    font-weight: 600;
    margin: 1rem 0;
}

.picks-counter i {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .unlock-cta {
        padding: 1.5rem;
    }
    
    .unlock-cta h3 {
        font-size: 1.5rem;
    }
    
    .unlock-cta i {
        font-size: 2.5rem;
    }
    
    .unlock-cta .btn {
        padding: 10px 24px;
        font-size: 1rem;
    }
}

/* Subtle animation on hover for locked wrapper */
.locked-content-wrapper:hover .locked-overlay {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(30, 30, 30, 0.97) 100%);
}

