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

/* ── 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-left-color: #60a5fa;
}

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

/* ── ARTICLE BAŞLIK VE METIN ARALIKLARI ── */
.article-section h3 { margin-top: 32px; margin-bottom: 12px; }
.article-section p { margin-bottom: 16px; }
.article-section ul { margin: 12px 0 16px 24px; }
.article-section li { margin-bottom: 8px; list-style-type: disc; }

/* ── MOD DEĞİŞTİRME BUTONLARI (TABS) ── */
.tab-container {
    display: flex;
    gap: 8px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 18px;
    margin-bottom: 24px;
}
[data-theme="dark"] .tab-container { background: #1e293b; }

.tab-btn {
    flex: 1;
    padding: 10px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    transition: all 0.2s;
    cursor: pointer;
    text-align: center;
    border: none;
    background: transparent;
}

.tab-btn.active-tab {
    background: white;
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
[data-theme="dark"] .tab-btn.active-tab {
    background: #334155;
    color: #60a5fa;
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: #334155; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
