/* ── Blur Wall (daily limit reached) ──────────────────── */

.blur-wall {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius-md);
    animation: blurWallIn 0.4s ease;
}

@keyframes blurWallIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Skeleton cards — blurred to look like real results */
.blur-wall__skeletons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    filter: blur(6px);
    -webkit-filter: blur(6px);
    user-select: none;
    pointer-events: none;
}

/* Card matches real .track-card appearance */
.skeleton-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.skeleton-card__info {
    flex: 1;
    min-width: 0;
}

.skeleton-card__platforms {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Skeleton shapes — varied opacity for realism */
.skeleton {
    border-radius: 4px;
}
.skeleton--cover {
    width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
}
.skeleton--title {
    height: 14px; margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.18);
}
.skeleton--text {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
}
.skeleton--icon {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

/* Gradient overlay — fade from visible to background */
.blur-wall__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(10, 10, 15, 0.4) 25%,
        rgba(10, 10, 15, 0.8) 50%,
        var(--bg-primary) 75%
    );
    pointer-events: none;
}

/* CTA block — vertically centered over blur */
.blur-wall__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 24px 16px;
    width: 100%;
    max-width: 400px;
    z-index: 2;
}
.blur-wall__cta-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
    line-height: 1;
}
.blur-wall__cta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 3px;
}
.blur-wall__cta span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.blur-wall__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 640px) {
    .blur-wall__cta {
        padding: 16px 12px;
        max-width: none;
        width: calc(100% - 24px);
    }
    .blur-wall__cta-icon { font-size: 1.2rem; margin-bottom: 4px; }
    .blur-wall__cta strong { font-size: 0.9rem; }
    .blur-wall__cta span { font-size: 0.82rem; margin-bottom: 12px; }
    .blur-wall__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .blur-wall__actions .signup-banner__google,
    .blur-wall__actions .signup-banner__email {
        width: 100%;
        justify-content: center;
    }
}

/* ── RTL ─────────────────────────────────────────────── */
[dir="rtl"] .blur-wall { direction: rtl; }
