/* ── ANIMASYONLAR ── */
@keyframes slideDown { 
    from { opacity: 0; transform: translateY(-10px); } 
    to { opacity: 1; transform: translateY(0); } 
}
.result-animate { animation: slideDown 0.4s ease forwards; }

/* ── MAKALE GÖRSELLEŞTİRME ── */
.article-highlight {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #1e40af;
}
[data-theme="dark"] .article-highlight { 
    background: rgba(59, 130, 246, 0.1); 
    color: #93c5fd; 
    border-left-color: #60a5fa;
}

.article-section h2 { margin-top: 40px; }
.article-section h3 { margin-top: 32px; margin-bottom: 12px; }
.article-section p { margin-bottom: 20px; }
.article-section ul { margin: 16px 0 20px 24px; list-style-type: disc; }
.article-section li { margin-bottom: 10px; }

/* ── SSS (FAQ) STİLLERİ ── */
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus::after { content: '+'; font-size: 24px; color: #2563eb; font-weight: 300; transition: transform 0.3s; }
details[open] > summary .faq-plus::after { content: '−'; transform: rotate(180deg); }

/* ── SONUÇ KUTUSU ÖZEL VURGULAR ── */
.blood-gradient-bg {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}
[data-theme="dark"] .blood-gradient-bg {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

/* ── GİRİŞ ALANLARI ── */
.input-addon {
    pointer-events: none;
    user-select: none;
}
