/* Haber detay sayfası stilleri */

/* Bootstrap CSS kaldırıldı - gereksiz */

/* Sidebar Post Stilleri */
.sn-post-image {
    display: block;
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 12px;
}

.sn-news-tools .btn.btn-outline-secondary {
    background: #ffffff !important;
    color: #111827 !important;
    border-color: #475569 !important;
}

.sn-news-tools .btn.btn-outline-secondary:hover,
.sn-news-tools .btn.btn-outline-secondary:focus {
    color: #ffffff !important;
    background: #1e3a8a !important;
    border-color: #1e3a8a !important;
}

.sn-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sn-post-image:hover img {
    transform: scale(1.05);
}

.sn-sidebar-post-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.sn-sidebar-post-item:last-child {
    border-bottom: none;
}

.sn-post-number {
    position: absolute;
    top: 8px;
    left: -5px;
    background: #007bff;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

.sn-post-content {
    flex: 1;
    min-width: 0;
}

.sn-post-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sn-post-title:hover {
    color: #007bff;
    text-decoration: none;
}

.sn-post-meta {
    margin-top: 6px;
    font-size: 12px;
    color: #6c757d;
}

.sn-sidebar-post-list {
    padding-left: 25px;
}

/* Erişilebilirlik için screen reader sınıfı */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus indicators */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #007bff;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-to-content:focus {
    top: 6px;
}

/* Referans görüntüye uygun stiller */
.sn-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.sn-news-summary {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.sn-news-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sn-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sn-author-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.sn-author-link:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}

.sn-author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.sn-author-link:hover .sn-author-avatar {
    border-color: #007bff;
}

.sn-author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sn-author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sn-author-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.2;
    margin: 0;
}

.sn-author-title {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.sn-author-link:hover .sn-author-name {
    color: #007bff;
}

.sn-author-link:hover .sn-author-title {
    color: #495057;
}

.sn-meta-items {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sn-meta-item {
    font-size: 0.85rem;
    color: #6c757d;
}

.sn-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.sn-category-tag {
    background: #007bff;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.sn-category-tag:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.sn-category-more {
    background: #6c757d !important;
    cursor: pointer;
    border: none;
}

.sn-category-more:hover {
    background: #5a6268 !important;
    transform: translateY(-1px);
}

.sn-category-more.dropdown-toggle::after {
    display: none;
}

.sn-category-dropdown {
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.sn-category-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.sn-category-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.sn-breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.sn-breadcrumb-link {
    color: #0f172a !important;
    text-decoration: underline;
    font-weight: 700;
}

.sn-breadcrumb .sn-breadcrumb-link,
.sn-breadcrumb .sn-breadcrumb-link:visited {
    color: #0f172a !important;
}

.sn-breadcrumb-more {
    color: #6c757d;
    font-size: 0.8em;
    margin-left: 0.25rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.sn-breadcrumb-more:hover {
    color: #007bff;
}

.sn-breadcrumb-more.dropdown-toggle::after {
    display: none;
}

.sn-breadcrumb-dropdown {
    min-width: 180px;
    font-size: 0.85rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sn-breadcrumb-dropdown .dropdown-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.sn-breadcrumb-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.sn-breadcrumb-link:hover {
    text-decoration: underline;
}

.sn-breadcrumb-separator {
    color: #475569;
    margin: 0 0.5rem;
}

.sn-breadcrumb-current {
    color: #334155;
}

/* Paylaşım ve Araçlar */
.sn-news-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 5;
}

.sn-share-label {
    color: #111827 !important;
}

.sn-news-tools .btn.btn-outline-secondary {
    background: #ffffff !important;
    color: #111827 !important;
    border-color: #475569 !important;
}

.sn-news-tools .btn.btn-outline-secondary:hover,
.sn-news-tools .btn.btn-outline-secondary:focus {
    color: #ffffff !important;
    background: #1e3a8a !important;
    border-color: #1e3a8a !important;
}

.sn-social-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sn-share-label {
    font-weight: 600;
    color: #111827 !important;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.sn-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sn-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: white;
    text-decoration: none;
}

.sn-facebook { background: #1877f2; }
.sn-twitter { background: #1da1f2; }
.sn-whatsapp { background: #25d366; }
.sn-linkedin { background: #0077b5; }
.sn-telegram { background: #0088cc; }

.sn-news-actions {
    display: flex;
    gap: 0.5rem;
    position: relative;
    z-index: 6;
    pointer-events: auto;
}

.sn-action-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 7;
    pointer-events: auto;
}

.sn-action-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
}

.sn-action-btn i {
    font-size: 0.8rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .sn-main-title {
        font-size: 1.8rem;
    }
    
    .sn-news-summary {
        font-size: 1rem;
    }
    
    .sn-news-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sn-meta-items {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sn-news-tools {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sn-social-share {
        justify-content: center;
    }
    
    .sn-news-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sn-action-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Modern Tepki ve Yorum Sistemi */
.sn-engagement-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.sn-section-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.sn-section-title i {
    color: #007bff;
}

/* Tepki Bölümü */
.sn-reactions-container {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.sn-reactions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.sn-reaction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.sn-reaction-item:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
}

.sn-reaction-item.active {
    background: #007bff;
    color: white;
    border-color: #0056b3;
}

.sn-reaction-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: bounce 0.3s ease;
}

.sn-reaction-label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.sn-reaction-count {
    font-size: 0.75rem;
    background: #007bff;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
}

.sn-reaction-item.active .sn-reaction-count {
    background: white;
    color: #007bff;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Yorum Bölümü */
.sn-comments-container {
    margin-top: 2rem;
}

/* Mevcut Yorum Sistemi Modern Tasarım */
.sn-modern-comment-wrapper {
    margin-top: 1.5rem;
}

.sn-comment-form-content {
    flex: 1;
}

.sn-comment-notice {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.sn-form-row {
    display: flex;
    gap: 1rem;
}

.sn-form-col {
    flex: 1;
}

.sn-checkbox-label {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Mevcut yorum widget'i için stiller */
.sn-modern-comment-wrapper .sn-yorum-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.sn-modern-comment-wrapper .sn-yorum-form {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.sn-modern-comment-wrapper .sn-yorum-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.sn-modern-comment-wrapper .sn-yorum-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.sn-modern-comment-wrapper .sn-yorum-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 1rem;
}

.sn-modern-comment-wrapper .sn-yorum-content {
    flex: 1;
}

.sn-modern-comment-wrapper .sn-yorum-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.sn-modern-comment-wrapper .sn-yorum-date {
    color: #6c757d;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.sn-modern-comment-wrapper .sn-yorum-text {
    color: #495057;
    line-height: 1.6;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.sn-modern-comment-wrapper .sn-yorum-actions {
    margin-top: 0.75rem;
    display: flex;
    gap: 1rem;
}

.sn-modern-comment-wrapper .sn-yorum-action {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sn-modern-comment-wrapper .sn-yorum-action:hover {
    background: #f8f9fa;
    color: #007bff;
}

/* Form elementleri için modern stiller */
.sn-modern-comment-wrapper .form-control,
.sn-modern-comment-wrapper .sn-form-input {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sn-modern-comment-wrapper .form-control:focus,
.sn-modern-comment-wrapper .sn-form-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.sn-modern-comment-wrapper .sn-comment-textarea {
    resize: vertical;
    min-height: 100px;
}

.sn-modern-comment-wrapper .form-check-input {
    margin-top: 0.25rem;
}

/* Yorum sayısı ve başlık */
.sn-modern-comment-wrapper .sn-yorum-count {
    background: #007bff;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Yanıt sistemi için girintiler */
.sn-modern-comment-wrapper .sn-yorum-reply {
    margin-left: 3rem;
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #e9ecef;
}

.sn-modern-comment-wrapper .sn-yorum-reply .sn-yorum-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
}

.sn-comment-count {
    color: #6c757d;
    font-weight: 400;
    font-size: 0.9rem;
}

.sn-comment-form-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.sn-user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sn-modern-comment-form {
    flex: 1;
}

.sn-form-group {
    margin-bottom: 1rem;
}

.sn-comment-textarea {
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
    resize: vertical;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.sn-comment-textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.sn-form-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.sn-form-inputs {
    display: flex;
    gap: 0.75rem;
    flex: 1;
}

.sn-form-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: border-color 0.3s ease;
}

.sn-form-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.sn-submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sn-submit-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Yorumlar Listesi */
.sn-comments-list {
    space-y: 1rem;
}

.sn-comment-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.sn-comment-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.sn-comment-avatar {
    width: 36px;
    height: 36px;
    background: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sn-comment-content {
    flex: 1;
}

.sn-comment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.sn-comment-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.sn-comment-time {
    color: #6c757d;
    font-size: 0.8rem;
}

.sn-comment-text {
    color: #495057;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.sn-comment-actions {
    display: flex;
    gap: 1rem;
}

.sn-comment-action {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sn-comment-action:hover {
    background: #f8f9fa;
    color: #007bff;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .sn-engagement-section {
        padding: 1.5rem;
    }
    
    .sn-reactions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .sn-reaction-item {
        padding: 0.75rem;
    }
    
    .sn-reaction-emoji {
        font-size: 1.5rem;
    }
    
    .sn-comment-form-container {
        padding: 1rem;
    }
    
    .sn-form-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .sn-form-inputs {
        flex-direction: column;
    }
    
    .sn-submit-btn {
        align-self: flex-start;
    }
    
    .sn-comment-item {
        padding: 1rem;
    }
}

/* Profesyonel Yorum Form Tasarımı */
.sn-flash-comments {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    margin-top: 2rem;
}

.sn-flash-comments h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.sn-flash-comments h4:before {
    content: "💬";
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Profesyonel Yorum Container */
.sn-professional-comment-container {
    position: relative;
}

/* Basit Form (Başlangıç Durumu) */
.sn-comment-simple-form {
    transition: all 0.3s ease;
}

.sn-comment-input-wrapper {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.sn-comment-input-wrapper:hover {
    border-color: #007bff;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
}

.sn-comment-simple-textarea {
    width: 100%;
    border: none;
    background: transparent;
    resize: none;
    font-size: 0.95rem;
    color: #495057;
    padding: 0.5rem 0;
    min-height: 50px;
    outline: none;
    font-family: inherit;
}

.sn-comment-simple-textarea::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.sn-comment-actions-simple {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

.sn-btn-simple {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sn-btn-simple:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Genişletilmiş Form */
.sn-comment-expanded-form {
    background: white;
    border-radius: 16px;
    border: 2px solid #007bff;
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.15);
    animation: expandForm 0.4s ease-out;
}

@keyframes expandForm {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sn-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.sn-comment-header h5 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.sn-close-btn {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sn-close-btn:hover {
    background: #f8f9fa;
    color: #dc3545;
}

/* Profesyonel Form */
.sn-professional-comment-form {
    padding: 2rem;
}

.sn-form-section {
    margin-bottom: 1.5rem;
}

.sn-form-label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sn-professional-textarea {
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafbfc;
}

.sn-professional-textarea:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.sn-char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.sn-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sn-form-group {
    margin-bottom: 1.5rem;
}

.sn-professional-input {
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.sn-professional-input:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.sn-form-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.sn-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sn-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #007bff;
    cursor: pointer;
}

.sn-checkbox-label {
    color: #495057;
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.4;
}

.sn-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.sn-privacy-note {
    color: #6c757d;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.sn-form-buttons {
    display: flex;
    gap: 1rem;
}

.sn-btn-cancel {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sn-btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.sn-btn-submit {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sn-btn-submit:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .sn-flash-comments {
        padding: 1.5rem;
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
    
    .sn-professional-comment-form {
        padding: 1.5rem;
    }
    
    .sn-comment-header {
        padding: 1rem 1.5rem 0.75rem;
    }
    
    .sn-form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .sn-form-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .sn-form-buttons {
        justify-content: stretch;
    }
    
    .sn-btn-cancel,
    .sn-btn-submit {
        flex: 1;
        justify-content: center;
    }
}

/* Modern Sidebar Stilleri */
.sn-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf0;
}

/* Modern Tab Stilleri */
.sn-modern-tabs {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
}

.sn-custom-tabs {
    border: none;
    gap: 10px;
}

.sn-custom-tabs .nav-item {
    flex: 1;
}

.sn-tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 6px 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    height: auto;
    min-height: 40px;
}

.sn-tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sn-tab-btn.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.2);
    font-weight: 450;
}

.sn-tab-content {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.sn-tab-icon {
    font-size: 18px;
    min-width: 22px;
}

.sn-tab-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sn-tab-title {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .sn-custom-tabs {
        flex-direction: column;
    }
    
    .sn-tab-content {
        justify-content: center;
        text-align: center;
    }
    
    .sn-tab-btn {
        min-height: 35px;
        padding: 5px 6px;
    }
    
    .sn-tab-icon {
        font-size: 16px;
    }
    
    .sn-tab-title {
        font-size: 12px;
        font-weight: 300;
    }
}


/* Modern Sidebar Post Listesi */
.sn-sidebar-post-list {
    padding: 20px;
    background: #f8f9fa;
}

.sn-sidebar-post-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid #f0f2f5;
    gap: 16px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sn-sidebar-post-item:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left: none;
    padding-left: 20px;
}

.sn-sidebar-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sn-post-number {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.sn-sidebar-post-item:hover .sn-post-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.sn-post-image {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sn-post-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.sn-sidebar-post-item:hover .sn-post-image::before {
    opacity: 1;
}

.sn-post-image img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.sn-sidebar-post-item:hover .sn-post-image img {
    transform: scale(1.05);
}

.sn-post-content {
    flex: 1;
    min-width: 0;
}

.sn-post-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sn-post-title:hover {
    color: #667eea;
    text-decoration: none;
}

.sn-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.sn-post-date {
    font-size: 12px;
    color: #111827 !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sn-post-views {
    font-size: 12px;
    color: #111827 !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sn-post-category {
    font-size: 12px;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

/* Anasayfa Tarzı Büyük Haber Görünümü */
.sn-large-post {
    padding: 20px !important;
    gap: 16px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.sn-large-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    border-left: none;
    padding-left: 20px !important;
}

.sn-large-post .sn-post-image {
    width: 100% !important;
    height: 180px !important;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.sn-large-post .sn-post-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.sn-large-post:hover .sn-post-image img {
    transform: scale(1.02);
}

.sn-large-post .sn-post-number {
    position: absolute;
    top: 12px;
    left: 12px;
    min-width: 32px !important;
    height: 32px !important;
    font-size: 16px !important;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
}

.sn-large-post .sn-post-content {
    flex: 1;
    padding: 0;
}

.sn-large-post .sn-post-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    -webkit-line-clamp: 2 !important;
    color: #2c3e50;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sn-large-post .sn-post-title:hover {
    color: #667eea;
}

.sn-large-post .sn-post-meta {
    display: flex;
    align-items: center;
    gap: 12px !important;
    margin-top: 8px !important;
    padding-top: 8px;
    border-top: 1px solid #f0f2f5;
}

.sn-large-post .sn-post-meta span {
    font-size: 12px !important;
    color: #111827 !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sn-large-post .sn-post-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px !important;
    font-weight: 600;
}

/* Modern Responsive Tasarım */
@media (max-width: 768px) {
    .sn-news-title {
        font-size: 1.8rem;
    }
    
    .sn-social-share {
        justify-content: center;
    }
    
    .sn-sidebar {
        margin-top: 30px;
        border-radius: 8px;
    }
    
    .sn-custom-tabs .nav-link {
        font-size: 11px;
        padding: 12px 8px;
    }
    
    .sn-sidebar-post-item {
        padding: 16px;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .sn-sidebar-post-item:hover {
        transform: translateY(-1px);
        border-left: none;
        padding-left: 16px;
        background: white;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    
    .sn-sidebar-post-list {
        padding: 16px;
    }
    
    .sn-post-image img {
        width: 70px;
        height: 55px;
    }
    
    .sn-post-number {
        min-width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .sn-post-title {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }
    
    .sn-large-post .sn-post-image {
        height: 140px !important;
    }
    
    .sn-large-post .sn-post-title {
        font-size: 15px !important;
        -webkit-line-clamp: 3 !important;
    }
    
    .sn-large-post {
        padding: 16px !important;
        gap: 12px !important;
        margin-bottom: 12px;
    }
    
    .sn-large-post .sn-post-number {
        min-width: 28px !important;
        height: 28px !important;
        font-size: 14px !important;
        top: 8px;
        left: 8px;
    }
    
    
    .sn-sidebar-title {
        font-size: 16px;
        padding: 12px 16px;
    }
}

/* Header */
.sn-flash-header{position:relative;overflow:hidden}
.sn-flash-overlay{background:linear-gradient(transparent 0%,rgba(0,0,0,.8) 100%)}
.sn-flash-content{z-index:2}
.sn-flash-category{background:#e74c3c;color:#fff;padding:4px 12px;border-radius:3px;font-size:12px;font-weight:600;text-transform:uppercase;display:inline-block;margin-bottom:10px}
.sn-flash-title{color:#fff;font-size:2.5rem;font-weight:700;line-height:1.2;margin-bottom:15px;text-shadow:0 2px 4px rgba(0,0,0,.5)}
.sn-flash-meta{color:rgba(255,255,255,.9);font-size:14px}
.sn-flash-meta i{opacity:.8}

/* Sticky share */
.sn-flash-share{position:fixed;top:50%;left:20px;transform:translateY(-50%);z-index:1000}
.sn-flash-share-buttons{display:flex;flex-direction:column;gap:8px}
.sn-share-btn{width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;font-size:18px;transition:all .3s ease}
.sn-share-facebook{background:#3b5998}
.sn-share-twitter{background:#1da1f2}
.sn-share-whatsapp{background:#25d366}
.sn-share-btn:hover{transform:scale(1.1);color:#fff}
@media (max-width:1200px){.sn-flash-share{left:10px}}

/* Breadcrumb */
.sn-flash-breadcrumb{font-size:14px;color:#666;margin-bottom:20px}
.sn-flash-breadcrumb a{color:#666;text-decoration:none}
.sn-flash-breadcrumb a:hover{color:#333;text-decoration:underline}

/* Article */
.sn-flash-article{margin-bottom:30px}
.sn-flash-lead{font-size:18px;font-weight:500;color:#333;line-height:1.6;margin-bottom:25px;padding:20px;background:#f8f9fa;border-left:4px solid #e74c3c;font-style:italic}
.sn-flash-content{font-size:16px;line-height:1.7;color:#333}
.sn-flash-content p{margin-bottom:20px}
.sn-flash-content img{max-width:100%;height:auto;border-radius:8px;margin:20px 0}

/* Reactions */
.sn-flash-reactions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin: 30px 0;
    padding: 20px 0;
    background: #fff;
    border-radius: 8px;
}
.sn-reaction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    width: 90px; /* Genişlik ayarı */
}
.sn-reaction-count {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    min-height: 24px; /* Yükseklik sabitleme */
}
.sn-reaction-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sn-reaction-icon {
    font-size: 36px; /* Emoji boyutu */
    transform: scale(0.8);
}
.sn-reaction-item:hover .sn-reaction-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.sn-reaction-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Tags */
.sn-flash-tags-wrapper {
    display: flex;
    align-items: center;
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.sn-flash-tags-label {
    background-color: #d9534f;
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 12px;
    position: relative;
    margin-right: 15px;
    text-transform: uppercase;
    white-space: nowrap;
}
.sn-flash-tags-label::after {
    content: '';
    position: absolute;
    top: 0;
    right: -17px;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #d9534f;
}
.sn-flash-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sn-flash-tag {
    display: inline-block;
    background: #fff;
    color: #555;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .3s ease;
    border: 1px solid #ddd;
}
.sn-flash-tag:hover {
    background: #f5f5f5;
    color: #333;
    border-color: #ccc;
}

/* Modern Sidebar Bölümleri */
.sn-flash-sidebar{padding-left:20px}
.sn-sidebar-title{
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px 8px 0 0;
    margin: 0 -1px 0 -1px;
    position: relative;
}

.sn-sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 40px;
    height: 4px;
    background: #ff6b6b;
    border-radius: 2px;
}

/* Author card */
.sn-flash-author-card{background:#fff;border:1px solid #e0e0e0;border-radius:8px;padding:20px;text-align:center}
.sn-author-info h5{margin-bottom:10px;color:#333}
.sn-author-link{color:#e74c3c;text-decoration:none;font-size:14px}
.sn-author-link:hover{text-decoration:underline}

/* Modern İlgili Yazılar */
.sn-flash-related {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.sn-related-item {
    margin-bottom: 0;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f2f5;
    transition: all 0.3s ease;
    position: relative;
}

.sn-related-item:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
    transform: translateX(4px);
    border-left: 4px solid #667eea;
    padding-left: 16px;
}

.sn-related-item:last-child {
    margin-bottom: 0;
    padding-bottom: 18px;
    border-bottom: none;
}

.sn-related-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    transition: all 0.3s ease;
}

.sn-related-link:hover {
    color: #667eea;
}


/* Comments wrapper */
.sn-flash-comments{background:#f8f9fa;border-radius:8px;padding:20px;margin-top:30px}
.sn-flash-comments h4{color:#333;margin-bottom:20px;font-size:20px;font-weight:600}

/* Comment form */
.sn-flash-comment-form .form-control{border:1px solid #ddd;border-radius:4px;padding:12px;font-size:14px;margin-bottom:15px}
.sn-flash-comment-form .form-control:focus{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,.25)}
.sn-flash-comment-form textarea{resize:vertical;min-height:120px}
.sn-flash-comment-form .form-check-label{color:#666;font-size:13px}
.sn-flash-comment-form .btn-primary{background:#e74c3c;border-color:#e74c3c;padding:10px 25px;font-weight:600}
.sn-flash-comment-form .btn-primary:hover{background:#c0392b;border-color:#c0392b}

/* Özel Animasyonlar ve Efektler */
/* Size Özel Bölümü - Normal Haber Görünümü */
.sn-recommendation-item {
    /* Size özel öğeleri normal haber görünümüne dönüştür */
}

.sn-recommendation-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    animation: starPulse 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.sn-recommendation-score {
    margin-top: 8px;
}

.sn-recommendation-score .progress {
    background: #f0f2f5;
    border-radius: 10px;
    overflow: hidden;
}

.sn-recommendation-score .progress-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.6s ease;
}

.sn-recommendation-header {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
    padding: 12px 20px;
    border-radius: 8px;
    margin: 0 -20px 16px -20px;
}

.sn-recommendation-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    margin: 20px 0 0 0;
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
}

.sn-recommendation-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b);
}

.sn-recommendation-info .fa-info-circle {
    color: #667eea;
    margin-right: 8px;
    animation: infoGlow 2s ease-in-out infinite;
}

@keyframes infoGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.sn-empty-recommendations {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
    border-radius: 20px;
    margin: 20px 0;
    padding: 40px 20px;
    text-align: center;
    border: 2px dashed rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.sn-empty-recommendations::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: emptyShimmer 2s ease-in-out infinite;
}

@keyframes emptyShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Sidebar Post Responsive Düzeltmeler */
@media (max-width: 768px) {
    .sn-post-image {
        width: 60px;
        height: 45px;
        margin-right: 10px;
    }
    
    .sn-post-title {
        font-size: 13px;
    }
    
    .sn-sidebar-post-list {
        padding-left: 20px;
    }
}

.sn-empty-recommendations .fa-robot {
    color: #667eea;
    margin-bottom: 16px;
    animation: robotBounce 2s ease-in-out infinite;
}

@keyframes robotBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.sn-empty-recommendations h6 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.sn-empty-recommendations .spinner-border {
    border-color: #667eea;
    border-right-color: transparent;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-border {
    animation: spin 1s linear infinite;
}

/* Smooth Scroll Effect */
.sn-sidebar {
    scroll-behavior: smooth;
}

/* Tab Content Animation */
.tab-pane {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.tab-pane.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Glow Effect */
.sn-custom-tabs .nav-link.active {
    position: relative;
}

.sn-custom-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #ff6b6b;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

body.dark-mode .sn-sidebar-post-item {
    border-bottom-color: #4a5568 !important;
}

 body.sn-dark-mode .sn-sidebar,
 body.dark-mode .sn-sidebar {
     background: #0b1220 !important;
     border-color: #374151 !important;
 }

 body.sn-dark-mode .sn-sidebar-post-list,
 body.dark-mode .sn-sidebar-post-list {
     background: #0b1220 !important;
 }

 body.sn-dark-mode .sn-sidebar-post-item,
 body.dark-mode .sn-sidebar-post-item {
     background: rgba(17, 24, 39, 0.9) !important;
     border-left-color: transparent !important;
     box-shadow: 0 2px 10px rgba(0,0,0,0.45) !important;
 }

 body.sn-dark-mode .sn-sidebar-post-item:hover,
 body.dark-mode .sn-sidebar-post-item:hover {
     background: #111827 !important;
     box-shadow: 0 4px 16px rgba(0,0,0,0.55) !important;
     border-left-color: rgba(102, 126, 234, 0.65) !important;
 }

 body.sn-dark-mode .sn-post-number,
 body.dark-mode .sn-post-number {
     box-shadow: 0 3px 10px rgba(0,0,0,0.45) !important;
 }

body.dark-mode .sn-post-title {
    color: #f7fafc !important;
}

 body.sn-dark-mode .sn-post-title {
     color: #f7fafc !important;
 }

body.dark-mode .sn-post-meta {
    color: #a0aec0 !important;
}

 body.sn-dark-mode .sn-post-meta {
     color: #a0aec0 !important;
 }

 body.sn-dark-mode .sn-sidebar-post-list .text-muted,
 body.dark-mode .sn-sidebar-post-list .text-muted {
     color: #9ca3af !important;
 }



body.dark-mode .news-content {
    color: #e2e8f0 !important;
}

body.dark-mode .news-content p {
    color: #cbd5e0 !important;
}

body.dark-mode .news-content h1,
body.dark-mode .news-content h2,
body.dark-mode .news-content h3,
body.dark-mode .news-content h4,
body.dark-mode .news-content h5,
body.dark-mode .news-content h6 {
    color: #f7fafc !important;
}

body.dark-mode .news-meta {
    color: #a0aec0 !important;
}

body.dark-mode .news-author {
    color: #90cdf4 !important;
}

body.dark-mode .news-date {
    color: #a0aec0 !important;
}

body.dark-mode .news-category-badge {
    background: #4a5568 !important;
    color: #90cdf4 !important;
}

body.dark-mode .related-news-card {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .related-news-title {
    color: #f7fafc !important;
}

body.dark-mode .comment-section {
    background: #2d3748 !important;
}

body.dark-mode .comment-item {
    background: #1a202c !important;
    border-color: #4a5568 !important;
}

body.dark-mode .comment-author {
    color: #90cdf4 !important;
}

body.dark-mode .comment-text {
    color: #e2e8f0 !important;
}

body.dark-mode .comment-date {
    color: #a0aec0 !important;
}

/* Dark Mode - Sidebar */
body.dark-mode .sidebar {
    background: transparent !important;
}

body.dark-mode .sidebar .card,
body.dark-mode .sidebar .widget {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .sidebar .card-header,
body.dark-mode .sidebar .widget-header {
    background: #1a202c !important;
    border-bottom-color: #4a5568 !important;
    color: #f7fafc !important;
}

body.dark-mode .sidebar .card-title,
body.dark-mode .sidebar .widget-title {
    color: #f7fafc !important;
}

body.dark-mode .sidebar .card-body,
body.dark-mode .sidebar .widget-content {
    background: #2d3748 !important;
    color: #e2e8f0 !important;
}

body.dark-mode .sidebar .list-group-item {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
    color: #e2e8f0 !important;
}

body.dark-mode .sidebar .list-group-item:hover {
    background: #4a5568 !important;
}

body.dark-mode .sidebar a {
    color: #90cdf4 !important;
}

body.dark-mode .sidebar a:hover {
    color: #63b3ed !important;
}

/* Dark Mode - Yorumlar Detaylı */
body.dark-mode .comment-form {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .comment-form input,
body.dark-mode .comment-form textarea {
    background: #1a202c !important;
    border-color: #4a5568 !important;
    color: #e2e8f0 !important;
}

body.dark-mode .comment-form input:focus,
body.dark-mode .comment-form textarea:focus {
    background: #2d3748 !important;
    border-color: #90cdf4 !important;
}

body.dark-mode .comment-form label {
    color: #cbd5e0 !important;
}

body.dark-mode .comment-list {
    background: #2d3748 !important;
}

body.dark-mode .comment-header {
    background: #1a202c !important;
    border-bottom-color: #4a5568 !important;
}

body.dark-mode .comment-body {
    background: #2d3748 !important;
}

body.dark-mode .comment-reply {
    background: #1a202c !important;
    border-left-color: #4a5568 !important;
}

/* Dark Mode - Anket Widget (Sidebar) */
body.dark-mode .anket-widget,
body.dark-mode .anket-card {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .anket-header {
    background: #1a202c !important;
    border-bottom-color: #4a5568 !important;
}

body.dark-mode .anket-title,
body.dark-mode .anket-question {
    color: #f7fafc !important;
}

body.dark-mode .anket-body {
    background: #2d3748 !important;
}

body.dark-mode .anket-option {
    background: #1a202c !important;
    border-color: #4a5568 !important;
}

body.dark-mode .anket-option:hover {
    background: #4a5568 !important;
    border-color: #90cdf4 !important;
}

body.dark-mode .anket-option input[type="radio"]:checked + label {
    background: #4a5568 !important;
}

body.dark-mode .anket-option-text {
    color: #e2e8f0 !important;
}

body.dark-mode .anket-footer {
    background: #1a202c !important;
    border-top-color: #4a5568 !important;
}

/* Dark Mode - Gazete Widget */
body.dark-mode .gazete-widget,
body.dark-mode .gazete-card {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .gazete-header {
    background: #1a202c !important;
    border-bottom-color: #4a5568 !important;
    color: #f7fafc !important;
}

body.dark-mode .gazete-title {
    color: #f7fafc !important;
}

body.dark-mode .gazete-item {
    background: #1a202c !important;
    border-color: #4a5568 !important;
}

body.dark-mode .gazete-item:hover {
    background: #4a5568 !important;
}

body.dark-mode .gazete-name {
    color: #f7fafc !important;
}

body.dark-mode .gazete-description {
    color: #cbd5e0 !important;
}

/* Dark Mode - Popüler Haberler */
body.dark-mode .popular-news-widget {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .popular-news-item {
    background: #1a202c !important;
    border-color: #4a5568 !important;
}

body.dark-mode .popular-news-item:hover {
    background: #4a5568 !important;
}

body.dark-mode .popular-news-title {
    color: #f7fafc !important;
}

body.dark-mode .popular-news-title:hover {
    color: #90cdf4 !important;
}

body.dark-mode .popular-news-meta {
    color: #a0aec0 !important;
}

/* Dark Mode - Etiketler */
body.dark-mode .tag-cloud {
    background: #2d3748 !important;
}

body.dark-mode .tag-item,
body.dark-mode .badge {
    background: #4a5568 !important;
    color: #e2e8f0 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .tag-item:hover,
body.dark-mode .badge:hover {
    background: #90cdf4 !important;
    color: #1a202c !important;
}

/* Dark Mode - Kategori Widget */
body.dark-mode .category-widget {
    background: #2d3748 !important;
}

body.dark-mode .category-item {
    background: #1a202c !important;
    border-color: #4a5568 !important;
    color: #e2e8f0 !important;
}

body.dark-mode .category-item:hover {
    background: #4a5568 !important;
    color: #90cdf4 !important;
}

body.dark-mode .category-count {
    background: #4a5568 !important;
    color: #e2e8f0 !important;
}

/* Dark Mode - Breadcrumb */
body.dark-mode .sn-breadcrumb {
    background: #2d3748 !important;
}

body.dark-mode .sn-breadcrumb-link {
    color: #90cdf4 !important;
}

body.dark-mode .sn-breadcrumb-separator {
    color: #a0aec0 !important;
}

body.dark-mode .sn-breadcrumb-current {
    color: #f7fafc !important;
}

body.dark-mode .sn-breadcrumb-dropdown {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

/* Dark Mode - Haber Başlık */
body.dark-mode .sn-main-title {
    color: #f7fafc !important;
}

body.dark-mode .sn-news-summary {
    color: #cbd5e0 !important;
    background: #2d3748 !important;
}

/* Dark Mode - Haber Article */
body.dark-mode .sn-news-article {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .sn-news-meta-bar {
    background: #1a202c !important;
    border-color: #4a5568 !important;
}

body.dark-mode .sn-author-info {
    color: #e2e8f0 !important;
}

body.dark-mode .sn-author-name {
    color: #90cdf4 !important;
}

body.dark-mode .sn-author-title {
    color: #a0aec0 !important;
}

body.dark-mode .sn-meta-items {
    color: #a0aec0 !important;
}

body.dark-mode .sn-meta-item {
    color: #a0aec0 !important;
}

body.dark-mode .sn-category-tags {
    background: #1a202c !important;
}

body.dark-mode .sn-category-badge {
    background: #4a5568 !important;
    color: #90cdf4 !important;
}

/* Dark Mode - Haber İçerik */
body.dark-mode #sn-haber-icerik {
    background: transparent !important;
}

body.dark-mode .sn-news-content {
    background: #2d3748 !important;
    color: #e2e8f0 !important;
}

body.dark-mode .sn-news-content * {
    color: #e2e8f0 !important;
}

body.dark-mode .sn-news-content h1,
body.dark-mode .sn-news-content h2,
body.dark-mode .sn-news-content h3,
body.dark-mode .sn-news-content h4,
body.dark-mode .sn-news-content h5,
body.dark-mode .sn-news-content h6 {
    color: #f7fafc !important;
}

body.dark-mode .sn-news-content a {
    color: #90cdf4 !important;
}

body.dark-mode .sn-news-content strong,
body.dark-mode .sn-news-content b {
    color: #f7fafc !important;
}

/* Dark Mode - Sidebar Spesifik */
body.dark-mode .col-lg-4 {
    background: transparent !important;
}

body.dark-mode .col-lg-4 * {
    color: #e2e8f0 !important;
}

body.dark-mode .col-lg-4 h1,
body.dark-mode .col-lg-4 h2,
body.dark-mode .col-lg-4 h3,
body.dark-mode .col-lg-4 h4,
body.dark-mode .col-lg-4 h5,
body.dark-mode .col-lg-4 h6 {
    color: #f7fafc !important;
}

body.dark-mode .col-lg-4 a {
    color: #90cdf4 !important;
}

body.dark-mode .col-lg-4 .card {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .col-lg-4 .card-header {
    background: #1a202c !important;
    border-bottom-color: #4a5568 !important;
}

body.dark-mode .col-lg-4 .card-body {
    background: #2d3748 !important;
}

body.dark-mode .col-lg-4 .list-group-item {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

/* Editör Linki Stilleri */
.sn-editor-link {
    color: #007bff !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sn-editor-link:hover {
    color: #0056b3 !important;
    text-decoration: underline;
    transform: translateX(2px);
}

/* Dark Mode - Editör Linki */
body.dark-mode .sn-editor-link {
    color: #90cdf4 !important;
}

body.dark-mode .sn-editor-link:hover {
    color: #63b3ed !important;
}

/* ============================================
   MOBİL RESPONSIVE - HABER DETAY
   ============================================ */

/* Mobil: 320px - 576px */
@media (max-width: 576px) {
    /* Başlık bölümü - mobilde dikey */
    header.row > div > div[style*="display: flex"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    /* Başlık mobilde tam genişlik */
    .sn-main-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
    
    /* Container padding */
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    /* Breadcrumb mobilde küçük */
    .sn-breadcrumb {
        font-size: 12px !important;
        margin-bottom: 15px !important;
    }
    
    .sn-breadcrumb-separator {
        margin: 0 4px !important;
    }
    
    /* Row ve col'lar */
    .row {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }
    
    .col-lg-8,
    .col-lg-4,
    .col-md-8,
    .col-md-4 {
        padding-left: 6px !important;
        padding-right: 6px !important;
        margin-bottom: 15px !important;
    }
    
    /* Sidebar mobilde full width */
    .col-lg-4 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Card'lar mobilde kompakt */
    .card {
        margin-bottom: 12px !important;
    }
    
    .card-body {
        padding: 12px !important;
    }
    
    /* Post item'ler mobilde */
    .sn-sidebar-post-item {
        padding: 10px 0 !important;
    }
    
    .sn-post-image {
        width: 60px !important;
        height: 45px !important;
        margin-right: 10px !important;
    }
    
    .sn-post-title {
        font-size: 13px !important;
    }
    
    .sn-post-meta {
        font-size: 11px !important;
    }
    
    /* İçerik mobilde */
    .sn-news-content {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    .sn-news-content img {
        max-width: 100% !important;
        height: auto !important;
        margin: 15px 0 !important;
    }
    
    /* Video mobilde responsive */
    .sn-modern-video-container {
        margin: 15px 0 !important;
    }
    
    /* Buton'lar mobilde full width */
    .btn {
        font-size: 13px !important;
        padding: 8px 12px !important;
    }
    
    /* Tablo mobilde scroll */
    table {
        font-size: 12px !important;
    }
    
    /* Meta bilgiler mobilde */
    .sn-news-meta {
        font-size: 12px !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    
    /* Share butonları mobilde */
    .sn-share-buttons {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    
    .sn-share-buttons a {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
}

/* Tablet: 577px - 992px */
@media (max-width: 992px) {
    .col-lg-8 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .col-lg-4 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .sn-main-title {
        font-size: 24px !important;
    }
}

/* Landscape mobil: 576px - 768px */
@media (max-width: 768px) and (orientation: landscape) {
    .sn-main-title {
        font-size: 18px !important;
    }
    
    .sn-news-content {
        font-size: 14px !important;
    }
    
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
