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

/* ── Makale highlight kutusu ── */
.article-highlight {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #1e40af;
}
[data-theme="dark"] .article-highlight { background: rgba(59,130,246,0.1); color: #93c5fd; }

/* ── FAQ + ikonu ── */
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus::after { content: '+'; font-size: 22px; color: #2563eb; font-weight: 400; }
details[open] > summary .faq-plus::after { content: '−'; }

/* ── Article başlık ve metin aralıkları ── */
.article-section h3 { margin-top: 28px; margin-bottom: 10px; }
.article-section p  { margin-bottom: 14px; }
.article-section ul { margin: 10px 0 14px 20px; }
.article-section li { margin-bottom: 8px; }

/* ── Ek Özel Stiller (Uyku Döngüsü İçin) ── */
.cycle-card {
    transition: all 0.2s ease;
}
.cycle-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}
.q-best { background: #dcfce7; color: #166534; }
.q-good { background: #e0f2fe; color: #0369a1; }
.q-fair { background: #fef9c3; color: #854d0e; }
[data-theme="dark"] .q-best { background: rgba(22,101,52,0.2); color: #4ade80; }
[data-theme="dark"] .q-good { background: rgba(3,105,161,0.2); color: #7dd3fc; }
[data-theme="dark"] .q-fair { background: rgba(133,77,14,0.2); color: #fde047; }
