body { font-family: 'Inter', sans-serif; }
        
/* Okuma İlerleme Çubuğu */
#progress-bar { width: 0%; height: 4px; background: #2563EB; position: fixed; top: 0; left: 0; z-index: 100; transition: width 0.1s; }

/* Makale Tipografisi (Prose) */
.article-content { font-family: 'Inter', serif; font-size: 1.125rem; line-height: 1.8; }
.article-content p { margin-bottom: 15px; font-size: 16px;}
.article-content h2 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1rem; letter-spacing: -0.025em; }
.article-content h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.4rem; margin-top: 2rem; margin-bottom: 0.75rem; }

/* Tablo Stilleri */
.table-container { overflow-x: auto; margin: 2rem 0; border-radius: 0.75rem; border: 1px solid #E5E7EB; }
table { width: 100%; border-collapse: collapse; text-align: left; font-family: 'Inter', sans-serif; font-size: 0.95rem; }
th { background: #F3F4F6; padding: 1rem; font-weight: 700; color: #374151; border-bottom: 2px solid #E5E7EB; }
td { padding: 1rem; border-bottom: 1px solid #F3F4F6; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) { background-color: #F9FAFB; }
.total-row { background-color: #EFF6FF !important; color: #1E40AF; font-weight: 800; }

/* Alıntı */
blockquote { border-left: 4px solid #2563EB; background: #F8FAFC; padding: 1.5rem; font-style: italic; color: #475569; margin: 2rem 0; border-radius: 0 0.5rem 0.5rem 0; }

/* İçerik İçi CTA */
.cta-box { background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%); color: white; padding: 2rem; border-radius: 1rem; text-align: center; margin: 3rem 0; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); position: relative; overflow: hidden; font-family: 'Inter', sans-serif; }
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); }
.cta-box h3 { color: white; margin-top: 0; font-size: 1.5rem; }
.cta-box p { color: #94A3B8; margin-bottom: 1.5rem; font-size: 1rem; font-family: 'Inter', sans-serif; }
.cta-box .btn { display: inline-block; background: #F59E0B; color: #1E293B; font-weight: 800; padding: 0.75rem 2rem; border-radius: 0.5rem; transition: transform 0.2s; }
.cta-box .btn:hover { transform: translateY(-2px); background: #FBBF24; }

/* Sticky Share Mobile */
.mobile-share-bar { display: none; }
@media (max-width: 768px) {
	.mobile-share-bar { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; background: white; padding: 1rem; border-top: 1px solid #E5E7EB; z-index: 50; justify-content: space-around; box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05); }
}