 /* Çok Okunanlar için yeni stil */
    .popular-sidebar-item {
        display: flex;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .popular-sidebar-item:last-child {
        border-bottom: none;
    }
    
    .popular-sidebar-item .popular-content {
        flex: 1;
    }
    
    .popular-sidebar-item .popular-title {
        display: block;
        font-weight: 600;
        color: #1a365d;
        margin-bottom: 4px;
        line-height: 1.4;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .popular-sidebar-item .popular-title:hover {
        color: #e63946;
    }
    
    .popular-sidebar-item .popular-meta {
        font-size: 0.85rem;
        color: #ffffff;
    }
    
    /* Video Container */
    .video-container {
        background: #000;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        margin-bottom: 30px;
    }
    
    .video-player-wrapper {
        position: relative;
    }
    
    .video-type-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
        background: rgba(230, 57, 70, 0.9);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
    }
    
    .video-type-badge i {
        font-size: 16px;
    }
    
    /* YouTube Video */
    .youtube-video {
        background: #000;
    }
    
    .youtube-video iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* Local Video */
    .local-video video {
        width: 100%;
        height: auto;
        border: none;
    }
    
    /* Haber Görseli */
    .news-featured-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        transition: transform 0.3s ease;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .news-featured-img:hover {
        transform: scale(1.01);
    }
    
    /* Video Altındaki Görsel */
    .image-below-video {
        margin-top: 20px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    /* Admin yazarları için stil */
    .author-info-admin {
        display: flex;
        align-items: center;
        padding: 8px 0;
    }
    
    .author-info-admin .admin-badge {
        background-color: #198754;
        color: white;
        font-size: 12px;
        padding: 2px 8px;
        border-radius: 4px;
        margin-left: 8px;
    }
    
    /* Video Butonları */
    .video-action-buttons {
        padding: 15px;
        background: #f8f9fa;
        border-top: 1px solid #dee2e6;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .video-action-buttons a {
        text-decoration: none;
    }
    
    /* Responsive Video */
    @media (max-width: 768px) {
        .video-type-badge {
            top: 10px;
            right: 10px;
            font-size: 12px;
            padding: 4px 12px;
        }
        
        .video-action-buttons {
            flex-direction: column;
            gap: 10px;
        }
        
        .video-action-buttons a {
            width: 100%;
            text-align: center;
        }
    }
    
    /* Video Container Ratio */
    .video-ratio-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
    }
    
    .video-ratio-container iframe,
    .video-ratio-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* Reaksiyon Bölümü */
    .reactions-section {
        margin: 30px 0;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 10px;
        border: 1px solid #e9ecef;
    }
    
    .reactions-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #dee2e6;
    }
    
    .reactions-stats {
        font-size: 0.9rem;
        color: #6c757d;
    }
    
    .reactions-total {
        font-weight: 600;
        color: #495057;
    }
    
    .reactions-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .reaction-buttons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .reaction-btn {
        position: relative;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid #dee2e6;
        background: white;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }
    
    .reaction-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .reaction-btn.active {
        border-color: #4dabf7;
        background: #e7f5ff;
        transform: translateY(-3px);
    }
    
    .reaction-btn.like:hover { border-color: #1877f2; background: #e7f3ff; }
    .reaction-btn.love:hover { border-color: #e0245e; background: #fce7f3; }
    .reaction-btn.haha:hover { border-color: #f39c12; background: #fef3cd; }
    .reaction-btn.wow:hover { border-color: #17a2b8; background: #d1ecf1; }
    .reaction-btn.sad:hover { border-color: #6f42c1; background: #e2d9f3; }
    .reaction-btn.angry:hover { border-color: #dc3545; background: #f8d7da; }
    
    .reaction-btn.active.like { border-color: #1877f2; background: #e7f3ff; }
    .reaction-btn.active.love { border-color: #e0245e; background: #fce7f3; }
    .reaction-btn.active.haha { border-color: #f39c12; background: #fef3cd; }
    .reaction-btn.active.wow { border-color: #17a2b8; background: #d1ecf1; }
    .reaction-btn.active.sad { border-color: #6f42c1; background: #e2d9f3; }
    .reaction-btn.active.angry { border-color: #dc3545; background: #f8d7da; }
    
    .reaction-count {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
        font-weight: 600;
        color: #495057;
        min-width: 30px;
        text-align: center;
    }
    
    .reaction-bar {
        margin-top: 20px;
        height: 8px;
        background: #e9ecef;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .reaction-fill {
        height: 100%;
        transition: width 0.5s ease;
    }
    
    .reaction-fill.like { background: #1877f2; }
    .reaction-fill.love { background: #e0245e; }
    .reaction-fill.haha { background: #f39c12; }
    .reaction-fill.wow { background: #17a2b8; }
    .reaction-fill.sad { background: #6f42c1; }
    .reaction-fill.angry { background: #dc3545; }
    
    .reaction-labels {
        display: flex;
        justify-content: space-between;
        margin-top: 5px;
        font-size: 11px;
        color: #6c757d;
    }
    
    .reaction-tooltip {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s;
        margin-bottom: 10px;
        z-index: 1000;
    }
    
    .reaction-tooltip:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: #333;
    }
    
    .reaction-btn:hover .reaction-tooltip {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobil uyumluluk */
    @media (max-width: 768px) {
        .reaction-btn {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
        
        .reaction-buttons {
            gap: 8px;
        }
        
        .reaction-count {
            font-size: 11px;
            bottom: -18px;
        }
    }
    
    @media (max-width: 576px) {
        .reaction-btn {
            width: 45px;
            height: 45px;
            font-size: 18px;
        }
        
        .reaction-buttons {
            gap: 6px;
            justify-content: space-between;
        }
    }
    
    /* Loading overlay */
    .reaction-loading {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        z-index: 10;
    }
    
    .reaction-loading .spinner-border {
        width: 20px;
        height: 20px;
    }
    /* Reaksiyon animasyonları */
.reaction-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.reaction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.reaction-btn.active {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.reaction-btn.like.active {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #2196f3;
}

.reaction-btn.love.active {
    background: #fce4ec;
    border-color: #e91e63;
    color: #e91e63;
}

.reaction-btn.haha.active {
    background: #fff3e0;
    border-color: #ff9800;
    color: #ff9800;
}

.reaction-btn.wow.active {
    background: #fff8e1;
    border-color: #ffc107;
    color: #ffc107;
}

.reaction-btn.sad.active {
    background: #f3e5f5;
    border-color: #9c27b0;
    color: #9c27b0;
}

.reaction-btn.angry.active {
    background: #ffebee;
    border-color: #f44336;
    color: #f44336;
}

.reaction-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reaction-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    margin-bottom: 5px;
}

.reaction-btn:hover .reaction-tooltip {
    opacity: 1;
    visibility: visible;
}

.reaction-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #333;
}

/* Reaksiyon barı */
.reaction-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
    display: flex;
}

.reaction-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.reaction-fill.like { background: #2196f3; }
.reaction-fill.love { background: #e91e63; }
.reaction-fill.haha { background: #ff9800; }
.reaction-fill.wow { background: #ffc107; }
.reaction-fill.sad { background: #9c27b0; }
.reaction-fill.angry { background: #f44336; }

.reaction-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6c757d;
}