/* ═══════════════════════════════════════════════════════════
   LOTORADAR — Premium Lock Component
   ═══════════════════════════════════════════════════════════ */

.premium-lock {
    position: relative;
    background: linear-gradient(145deg, #0d1520 0%, #111a28 50%, #0d1520 100%);
    border: 1px solid #1a2838;
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
    animation: lockFadeIn 0.4s ease;
}

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

.premium-lock::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 212, 255, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 214, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.premium-lock-icon {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 0 12px rgba(255, 214, 0, 0.3));
}

.premium-lock-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-lock-features {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: #8899aa;
    line-height: 1.8;
    max-width: 360px;
}

.premium-lock-features span {
    display: inline-block;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 6px;
    padding: 2px 10px;
    margin: 3px 4px;
    font-size: 0.85rem;
    color: #66bbdd;
    white-space: nowrap;
}

.premium-lock-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: #aabbcc;
    margin-top: 4px;
}

.premium-lock-price b {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    color: #ffd600;
    font-weight: 700;
}

.premium-lock-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd600 0%, #ff9100 100%);
    color: #0a0a0f;
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.25);
    margin-top: 8px;
}

.premium-lock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 214, 0, 0.4);
    background: linear-gradient(135deg, #ffe033 0%, #ffaa33 100%);
}

/* Tab button premium indicator (star instead of lock — tab is accessible) */
.tab-btn.premium-tab::after {
    content: '✦';
    font-size: 0.55rem;
    margin-left: 4px;
    vertical-align: middle;
    opacity: 0.5;
    color: #ffd600;
}

/* ── Demo Mode: soft lock overlay with gradient + watermark + CTA ── */
.premium-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(to bottom, transparent 0%, rgba(10,10,15,0.7) 40%, rgba(10,10,15,0.97) 75%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 28px;
    z-index: 50;
    pointer-events: none;
    animation: lockFadeIn 0.4s ease;
}

.premium-preview-overlay .premium-preview-cta,
.premium-preview-overlay .premium-preview-cta a {
    pointer-events: auto;
}

.premium-preview-watermark {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.08);
    transform: rotate(-15deg);
    letter-spacing: 12px;
    user-select: none;
    pointer-events: none;
    margin-bottom: 16px;
}

.premium-preview-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Premium badge in nav */
.nav-premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd600, #ff9100);
    color: #0a0a0f;
    font-family: 'Orbitron', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 1px;
    vertical-align: middle;
    margin-left: 6px;
}

/* Smart Generator lock overlay */
.smart-gen-locked {
    position: relative;
}
.smart-gen-locked::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 15, 0.85);
    border-radius: 12px;
    z-index: 100;
}

/* Responsive */
@media (max-width: 600px) {
    .premium-lock {
        padding: 32px 16px;
        min-height: 220px;
    }
    .premium-lock-icon { font-size: 2.4rem; }
    .premium-lock-title { font-size: 1rem; }
    .premium-lock-btn { padding: 10px 24px; font-size: 0.85rem; }
    .premium-preview-overlay { height: 240px; padding-bottom: 20px; }
    .premium-preview-watermark { font-size: 2rem; letter-spacing: 8px; }
    /* Modal overlay (showSmartGenLock + showAuthRequired) — pad mai mic pe mobil */
    .lr-plock-overlay { padding: 14px 10px !important; }
    .lr-plock-overlay .premium-lock { padding: 28px 18px !important; margin: 40px auto 20px !important; }
    .lr-plock-close { width: 36px !important; height: 36px !important; top: 10px !important; right: 10px !important; font-size: 18px !important; }
}

/* Close btn hover — consistent cu restul modalurilor */
.lr-plock-close:hover { background: rgba(255,23,68,0.9) !important; border-color: #ff1744 !important; transform: scale(1.08); }
.lr-plock-close { transition: all 0.2s ease; }
