/* Paylaşım Butonları */
.share-container { margin-top: 30px; padding-top: 20px; border-top: 1px solid #0f172a; }
.share-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 10px;
    margin-right: 12px; color: #fff; text-decoration: none;
    transition: 0.3s; font-size: 1.2rem;
}
.share-btn:hover { transform: translateY(-4px); color: #fff; filter: brightness(1.2); }

.btn-x { background-color: #000; border: 1px solid #333; }
.btn-whatsapp { background-color: #25d366; }
.btn-telegram { background-color: #0088cc; }
.btn-facebook { background-color: #1877f2; }

/* Haber İçerik Alanı */
.news-detail-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    color: #0f172a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #0f172a;
}

/* Paragraf ve Metin Düzeni */
.article-body { font-size: 1.05rem; line-height: 1.8; margin-top: 25px; }
.article-body p { margin-bottom: 1.6rem; }
.article-body strong { color: #0f172a; font-weight: 700; }

.detail-img { max-height: 450px; width: 100%; object-fit: cover; border-radius: 10px; margin-bottom: 25px; border: 1px solid #e2e8f0; }

/* Benzer Haberler Stili */
.related-box { 
    background: #f8fafc; 
    border: 1px solid #0f172a; 
    border-radius: 10px; 
    padding: 20px; 
    margin-top: 40px; 
}
.related-list { list-style: none; padding: 0; margin: 0; }
.related-item { border-bottom: 1px solid #e2e8f0; padding: 10px 0; transition: 0.3s; }
.related-item:last-child { border-bottom: none; }
.related-link { color: #0f172a; text-decoration: none; font-size: 0.95rem; display: flex; align-items: center; }
.related-link i { color: #fbbf24; font-size: 0.7rem; margin-right: 10px; }
.related-link:hover { color: #f59e0b; padding-left: 5px; }

/* Reklam Alanı */
.reklam-container img { max-width: 100%; height: auto; }

/* ===== YUKARI ÇIK BUTONU (Masaüstü) ===== */
.scroll-top-link {
    transition: all 0.3s ease;
}

.scroll-top-link:hover {
    background: rgba(251, 191, 36, 0.15) !important;
    border-color: #fbbf24 !important;
    transform: translateY(-50%) scale(1.08) !important;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.2) !important;
}

.scroll-top-link:hover i {
    transform: translateY(-2px);
}

.scroll-top-link i {
    transition: all 0.3s ease;
}

.scroll-top-link span {
    color: #ffffff !important;
}

/* ===== YUKARI ÇIK BUTONU (Mobil) ===== */
.scroll-top-mobile {
    transition: all 0.3s ease;
}

.scroll-top-mobile:hover {
    background: rgba(251, 191, 36, 0.25) !important;
    border-color: #fbbf24 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 30px rgba(251, 191, 36, 0.25) !important;
}

/* Mobilde butonun dokunma alanı büyütme */
@media (max-width: 991px) {
    .scroll-top-mobile {
        width: 54px !important;
        height: 54px !important;
        bottom: 25px !important;
        right: 15px !important;
        font-size: 1.4rem !important;
    }
}

/* Masaüstü butonu */
@media (min-width: 992px) {
    .scroll-top-link {
        padding: 14px 16px !important;
    }
    .scroll-top-link i {
        font-size: 1.5rem !important;
    }
    .scroll-top-link span {
        font-size: 0.65rem !important;
        letter-spacing: 1px !important;
        font-weight: 600 !important;
    }
}

/* ===== HR ÇİZGİLERİ LACİVERT ===== */
hr.border-lacivert {
    border: 0;
    border-top: 1px solid #0f172a !important;
    opacity: 1 !important;
}

