/**
 * Sniper Premium — Lock Screen CSS
 * Manga okuyucu içine yapışan kilit ekranı + bulanık önizleme
 */

/* BULANIK ÖNİZLEME — son sayfa blur'lu görünür */
.sp-blur-preview-wrap {
    position: relative;
    margin: 24px auto;
    max-width: 800px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.sp-blur-preview {
    filter: blur(24px);
    transform: scale(1.05);
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

.sp-blur-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.sp-blur-preview-wrap .sp-lock-screen {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 17, 33, 0.4) 0%,
        rgba(13, 17, 33, 0.85) 30%,
        rgba(13, 17, 33, 0.95) 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin: 0;
    border-radius: 12px;
}

/* LOCK SCREEN */
.sp-lock-screen {
    position: relative;
    margin: 32px auto;
    max-width: 800px;
    padding: 48px 24px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border: 1px solid rgba(245, 197, 24, 0.2);
    border-radius: 16px;
    text-align: center;
    color: #e0e0e0;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.sp-lock-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(245, 197, 24, 0.08), transparent 70%);
    pointer-events: none;
}

.sp-lock-screen-inner {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    z-index: 1;
}

.sp-lock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.15), rgba(124, 92, 255, 0.15));
    border: 1px solid rgba(245, 197, 24, 0.3);
    color: #F5C518;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.15);
}

.sp-lock-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.sp-lock-message {
    font-size: 15px;
    color: #a0a0b0;
    line-height: 1.6;
    margin: 0 0 28px;
}

.sp-lock-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.sp-lock-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 13.5px;
    color: #e0e0e0;
}

.sp-lock-perk span:first-child {
    font-size: 18px;
    flex-shrink: 0;
}

.sp-lock-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto 20px;
}

.sp-lock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: all 200ms ease;
    -webkit-tap-highlight-color: transparent;
}

.sp-lock-btn-primary {
    background: linear-gradient(135deg, #F5C518, #E8A317);
    color: #1a1a2e;
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.25);
}

.sp-lock-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(245, 197, 24, 0.35);
    color: #1a1a2e;
}

.sp-lock-btn-secondary {
    background: rgba(124, 92, 255, 0.1);
    color: #b8a9ff;
    border: 1px solid rgba(124, 92, 255, 0.3);
}

.sp-lock-btn-secondary:hover {
    background: rgba(124, 92, 255, 0.15);
    color: #d4caff;
}

.sp-lock-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.sp-lock-meta {
    margin: 16px 0 0;
    font-size: 11.5px;
    color: #666;
    line-height: 1.5;
}

/* MOBILE */
@media (max-width: 600px) {
    .sp-lock-screen {
        margin: 16px;
        padding: 32px 20px;
    }
    .sp-lock-title { font-size: 22px; }
    .sp-lock-message { font-size: 13.5px; }
    .sp-lock-icon { width: 64px; height: 64px; }
    .sp-lock-icon svg { width: 36px; height: 36px; }
    .sp-blur-preview-wrap { margin: 16px 8px; border-radius: 8px; }
}

/* Manga Reader theme — bölüm content wrap'i */
.sp-chapter-content {
    text-align: center;
}
.sp-chapter-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
