/* Paylaşım butonları için ek stiller */
.social-share-buttons a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Platform özelinde renkler - Sadeleştirilmiş */
.social-share-buttons a[onclick*="Facebook"]:hover {
    background-color: #1877f2;
    color: white;
}

.social-share-buttons a[onclick*="Twitter"]:hover {
    background-color: #1da1f2;
    color: white;
}

.social-share-buttons a[onclick*="LinkedIn"]:hover {
    background-color: #0077b5;
    color: white;
}

.social-share-buttons a[onclick*="WhatsApp"]:hover {
    background-color: #25d366;
    color: white;
}

.social-share-buttons a[onclick*="copyUrl"]:hover {
    background-color: #6c757d;
    color: white;
}


/* Bildirim animasyonları */
.social-notification {
    animation: popIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .social-share-buttons {
        flex-wrap: wrap;
    }

    .social-share-buttons a {
        margin: 2px;
        padding: 6px 8px;
    }

    .counts-row {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ====================================================
   PREMIUM DARK MARKDOWN CONTENT STYLING
   ==================================================== */
.premium-markdown-content {
    font-family: 'Inter', 'Outfit', system-ui, -apple-system, sans-serif;
    line-height: 1.9;
    font-size: 1.1rem;
    color: #cbd5e1; /* Light gray text for eye comfort on dark bg */
    width: 100%;
}

.premium-markdown-content p {
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
}

/* Giriş/Özet Metni İçin Özel Stil */
.blog-lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #f1f5f9;
    font-weight: 500;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    border-left: 2px solid #3b82f6;
    padding-left: 20px;
}

.premium-markdown-content h1, 
.premium-markdown-content h2, 
.premium-markdown-content h3, 
.premium-markdown-content h4 {
    color: #f8fafc; /* Near white for maximum visibility */
    font-weight: 800;
    margin-top: 3.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.premium-markdown-content h2 {
    font-size: 2.1rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.4); /* Subtle blue glow line */
    padding-bottom: 0.8rem;
}

.premium-markdown-content h3 {
    font-size: 1.6rem;
    color: #94a3b8;
}

.premium-markdown-content strong {
    color: #3b82f6; /* Accent color for emphasis */
    font-weight: 700;
}

.premium-markdown-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    margin: 3rem 0;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.05);
}

.premium-markdown-content img:hover {
    transform: scale(1.02);
}

.premium-markdown-content blockquote {
    border-left: 4px solid #3b82f6;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    font-style: italic;
    color: #f1f5f9;
    border-radius: 0 20px 20px 0;
    font-size: 1.2rem;
}

.premium-markdown-content ul, 
.premium-markdown-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.premium-markdown-content li {
    margin-bottom: 0.8rem;
}

.premium-markdown-content ul li {
    list-style-type: none;
    position: relative;
    padding-left: 5px;
}

.premium-markdown-content ul li::before {
    content: "→";
    color: #3b82f6;
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
    font-size: 1.1em;
}

.premium-markdown-content a {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px dashed #60a5fa;
    transition: all 0.3s ease;
    font-weight: 500;
}

.premium-markdown-content a:hover {
    color: #fff;
    border-bottom-style: solid;
}

.premium-markdown-content code {
    background-color: #1e293b;
    color: #f472b6;
    padding: 0.2em 0.5em;
    border-radius: 8px;
    font-size: 0.9em;
    font-family: 'Fira Code', monospace;
    border: 1px solid rgba(255,255,255,0.05);
}

.premium-markdown-content pre {
    background: #020617;
    color: #e2e8f0;
    padding: 1.8rem;
    border-radius: 16px;
    overflow-x: auto;
    margin: 2.5rem 0;
    border: 1px solid rgba(255,255,255,0.05);
}

.premium-markdown-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    border: none;
}