/* Censorship CSS - Üyelik Sansür Sistemi */

/* Ana sansür container */
.censored-content {
    position: relative;
    min-height: 100px;
}

/* Blur efekti (üye olmayanlara gösterilir) */
.censored-content.blurred .content-text {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Overlay mesaj kutusu */
.censored-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(102, 126, 234, 0.72);
    padding: 12px 22px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-width: 75%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Overlay içindeki ikonlar */
.censored-overlay i.fa-lock {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 6px;
    display: block;
}

/* Overlay başlık */
.censored-overlay h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Overlay açıklama metni */
.censored-overlay p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 10px;
    font-size: 0.82rem;
}

/* Kayıt ol butonu */
.censored-overlay .btn-light {
    background: white;
    color: #667eea;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.censored-overlay .btn-light:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .censored-overlay {
        padding: 10px 18px;
        max-width: 80%;
    }
    
    .censored-overlay i.fa-lock {
        font-size: 1.3rem;
    }
    
    .censored-overlay h5 {
        font-size: 0.88rem;
    }
    
    .censored-overlay p {
        font-size: 0.78rem;
        margin-bottom: 8px;
    }
    
    .censored-overlay .btn-light {
        padding: 6px 16px;
        font-size: 0.82rem;
    }
}

/* Küçük ekranlar için */
@media (max-width: 576px) {
    .censored-overlay {
        padding: 8px 14px;
        max-width: 85%;
    }
    
    .censored-overlay i.fa-lock {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .censored-overlay h5 {
        font-size: 0.82rem;
        margin-bottom: 4px;
    }
    
    .censored-overlay p {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .censored-overlay .btn-light {
        padding: 5px 14px;
        font-size: 0.78rem;
    }
}

/* Animasyon efektleri */
@keyframes fadeInOverlay {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.censored-overlay {
    animation: fadeInOverlay 0.3s ease-out;
}

/* İçerik koruması - kopyalama engelleme */
.censored-content.blurred .content-text::selection {
    background: transparent;
}

.censored-content.blurred .content-text::-moz-selection {
    background: transparent;
}
