/* Blur content for non-authenticated users */
.blur-content {
    position: relative;
    pointer-events: none;
    user-select: none;
}

.blur-content-inner {
    filter: blur(8px);
    opacity: 0.3;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 100%
    );
    padding: 2rem;
    text-align: center;
    pointer-events: auto;
    z-index: 10;
}

.dark .blur-overlay {
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.98) 100%
    );
}

.blur-overlay-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.blur-overlay-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.blur-overlay-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    max-width: 20rem;
}

.blur-overlay-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.blur-overlay-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* For hidden items (e.g., show first 3, hide rest) */
.blur-hidden-item {
    display: none;
}
