/* ── 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 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #1e40af;
}
[data-theme="dark"] .article-highlight { 
    background: rgba(59, 130, 246, 0.1); 
    color: #93c5fd; 
    border-color: #2563eb;
}

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

/* ── MAKALE METIN YAPISI ── */
.article-section h3 { margin-top: 32px; margin-bottom: 12px; }
.article-section p { margin-bottom: 16px; }
.article-section ul { margin: 12px 0 16px 24px; list-style-type: disc; }
.article-section li { margin-bottom: 8px; }

/* ── FORM INPUT FOCUS ── */
input:focus {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* ── DARK MODE TRANSITIONS ── */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
