/* Freemium Blurring */
.freemium-container {
    position: relative;
}

.freemium-blur {
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    overflow: hidden;
    max-height: 250px; /* Limit height to force blur effect */
    user-select: none; /* Prevent selection */
    pointer-events: none;
}

.unlock-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,1) 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
    z-index: 10;
    opacity: 0; 
    transition: opacity 0.5s;
    pointer-events: none;
}

/* When blur is active, always show the overlay */
.freemium-active .unlock-overlay {
    opacity: 1;
    pointer-events: all;
}

.unlock-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
