/**
 * Sidebar Styles - Professional News Theme
 * Modern ve profesyonel haber teması sidebar tasarımı
 */

/* ========================================
   SIDEBAR CONTAINER
   ======================================== */
.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sticky Sidebar Özelliği - KALDIRILDI (Tasarımı bozuyordu) */
/* .sidebar-content.sidebar-sticky artık kullanılmıyor */

/* ========================================
   WIDGET GENEL STİLLER
   ======================================== */
.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Widget Header - Yeni Minimal Tasarım */
.widget-header {
    background: transparent;
    border: none;
    border-bottom: none !important; /* Altındaki tam genişlik çizgiyi kaldır */
    padding: 0;
    position: relative;
}

.widget-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    margin-bottom: 0 !important;
    padding: 16px 20px 4px 20px; /* Üst 16px, Alt 4px - ÇOK MİNİMAL */
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 0;
    position: relative;
    line-height: 1.4;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Widget title altındaki tüm olası çizgileri kaldır */
.widget-title::before {
    display: none !important;
}

.widget-header::after,
.widget-header::before {
    display: none !important;
}

.widget-title::after {
    content: '';
    flex: 1; /* TAM GENİŞLİK - Sona kadar */
    height: 3px;
    background: #e74c3c;
    margin-left: 15px; /* Başlıktan 15px boşluk */
}

.title-icon {
    display: none;
}

.title-text {
    flex: 0;
    white-space: nowrap;
}

.sidebar-widget .widget-body {
    padding: 0;
    padding-top: 4px !important; /* SABİT 4px - ÇOK MİNİMAL */
    margin-top: 0 !important;
    min-height: 50px;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    border: none !important;
    border-top: none !important;
}

/* ========================================
   SON HABERLER WIDGET - Görseldeki Tasarım
   ======================================== */
.sidebar-widget.widget-latest-news .widget-body {
    padding: 0;
    padding-top: 4px !important; /* SABİT 4px */
    border-top: none !important;
}

.latest-news-list {
    display: flex;
    flex-direction: column;
}

.latest-news-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.latest-news-item:last-child {
    border-bottom: none;
}

.latest-news-item:hover {
    background: #f8f9fa;
}

.latest-news-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.latest-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-news-item:hover .latest-news-thumb img {
    transform: scale(1.05);
}

.latest-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.latest-news-category {
    display: inline-block;
    align-self: flex-start;
    background: #1a1a1a;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.latest-news-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.latest-news-time {
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.latest-news-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.latest-news-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-news-title a:hover {
    color: var(--primary-color, #e74c3c);
}

/* ========================================
   POPÜLER HABERLER WIDGET
   ======================================== */
.sidebar-widget.widget-popular .widget-body {
    padding: 4px 0 0 0 !important; /* Üst 4px SABİT */
    border-top: none !important;
}

.popular-posts-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.popular-post-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.popular-post-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.popular-post-item:hover {
    background: #f8f9fa;
}

.popular-post-thumb {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popular-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post-item:hover .popular-post-thumb img {
    transform: scale(1.05);
}

.post-number {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.popular-post-item:hover .post-number {
    background: var(--primary-color, #e74c3c);
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transform: scale(1.1);
}

.popular-post-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.popular-post-title {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.popular-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-title a:hover {
    color: var(--primary-color, #e74c3c);
}

.popular-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: #999;
}

.popular-post-date,
.popular-post-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.popular-post-date svg,
.popular-post-views svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.post-category-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* ========================================
   KATEGORİLER WIDGET
   ======================================== */
.sidebar-widget.widget-categories-modern .widget-body {
    padding: 4px 20px 20px 20px !important; /* Üst 4px SABİT */
    border-top: none !important;
}

.categories-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-items: stretch;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    gap: 8px;
    min-height: 95px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.category-card:hover {
    background: linear-gradient(135deg, var(--primary-color, #e74c3c), var(--dark-accent-hover, #c0392b));
    border-color: var(--primary-color, #e74c3c);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(231, 76, 60, 0.35);
}

.category-name {
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.category-card:hover .category-name {
    color: white;
    transform: scale(1.05);
}

.category-count {
    background: var(--primary-color, #e74c3c);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.3);
    min-width: 45px;
}

.category-card:hover .category-count {
    background: white;
    color: var(--primary-color, #e74c3c);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

/* ========================================
   SON HABERLER WIDGET
   ======================================== */
.widget-recent .widget-body {
    padding: 16px 0;
    border-top: none !important;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
}

.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.recent-post-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:hover {
    background: #f8f9fa;
    border-left-color: var(--primary-color, #e74c3c);
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recent-post-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.recent-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-title a:hover {
    color: var(--primary-color, #e74c3c);
}

/* ========================================
   ETİKETLER WIDGET
   ======================================== */
.sidebar-widget.widget-tags-modern .widget-body {
    padding: 4px 20px 20px 20px !important; /* Üst 4px SABİT */
    border-top: none !important;
}

.tags-cloud-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tag-item:hover {
    background: linear-gradient(135deg, var(--primary-color, #e74c3c), var(--dark-accent-hover, #c0392b));
    color: white;
    border-color: var(--primary-color, #e74c3c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* ========================================
   PUAN DURUMU WIDGET
   ======================================== */
.widget-standings {
    background: #fff;
}

.widget-standings .widget-body {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: auto;
}

.widget-standings table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.widget-standings thead {
    background: #f8f9fa;
    position: sticky;
    top: 0;
    z-index: 1;
}

.widget-standings th {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    font-size: 11px;
    text-transform: uppercase;
}

.widget-standings td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.widget-standings tbody tr:hover {
    background: #f8f9fa;
}

.widget-standings td:first-child {
    font-weight: 700;
    color: #333;
    background: #f8f9fa;
    width: 40px;
}

.widget-standings td:nth-child(2) {
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 140px;
}

.widget-standings td:last-child {
    font-weight: 700;
    color: var(--primary-color, #e74c3c);
    font-size: 14px;
}

/* Averaj kolonunu gizle */
.widget-standings th:nth-child(9),
.widget-standings td:nth-child(9) {
    display: none;
}

/* Scrollbar */
.widget-standings .widget-body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.widget-standings .widget-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.widget-standings .widget-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.widget-standings .widget-body::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* ========================================
   WIDGET NOTICE
   ======================================== */
.widget-notice {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px;
}

/* ========================================
   SOSYAL MEDYA WIDGET
   ======================================== */
.sidebar-widget.widget-social {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-social .widget-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: none !important;
    border-bottom: none !important;
}

.widget-social .widget-title {
    color: #1a1a1a;
}

.widget-social .widget-body {
    padding: 4px 20px 20px 20px !important; /* Üst 4px SABİT */
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    border-top: none !important;
}

.social-links-sidebar {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 0;
    padding: 0;
}

.social-links-sidebar .social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 14px 18px !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-weight: 600;
    font-size: 14px;
    min-height: 52px !important;
    height: auto !important;
    width: auto !important;
    overflow: hidden;
    position: relative;
}

.social-links-sidebar .social-link svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
    fill: #ffffff !important;
    z-index: 2;
    margin-right: 0;
}

.social-links-sidebar .social-link::after {
    content: '';
    position: absolute;
    left: 56px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.social-links-sidebar .social-link span,
.sidebar-widget.widget-social .social-links-sidebar .social-link span,
.widget-social .widget-body .social-links-sidebar .social-link span,
aside .social-links-sidebar .social-link span,
.sidebar-content .social-links-sidebar .social-link span {
    display: inline-block !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.3px !important;
    color: #ffffff !important;
    margin-left: 22px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
    white-space: nowrap !important;
    max-width: none !important;
    min-width: 40px !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
    text-indent: 0 !important;
    clip: auto !important;
    clip-path: none !important;
}

.social-links-sidebar .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Platform renkleri - Görseldeki gibi */
.social-links-sidebar .social-link.facebook {
    background: #1877f2;
}

.social-links-sidebar .social-link.facebook:hover {
    background: #0d64d8;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.social-links-sidebar .social-link.twitter {
    background: #000000;
}

.social-links-sidebar .social-link.twitter:hover {
    background: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.social-links-sidebar .social-link.linkedin {
    background: #0077b5;
}

.social-links-sidebar .social-link.linkedin:hover {
    background: #006399;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

.social-links-sidebar .social-link.pinterest {
    background: #bd081c;
}

.social-links-sidebar .social-link.pinterest:hover {
    background: #9d0619;
    box-shadow: 0 4px 12px rgba(189, 8, 28, 0.4);
}

.social-links-sidebar .social-link.youtube {
    background: #ff0000;
}

.social-links-sidebar .social-link.youtube:hover {
    background: #cc0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.social-links-sidebar .social-link.instagram {
    background: linear-gradient(135deg, #e1306c 0%, #c13584 50%, #fd1d1d 100%);
}

.social-links-sidebar .social-link.instagram:hover {
    background: linear-gradient(135deg, #d11a5c 0%, #b12574 50%, #ed0d0d 100%);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

.social-links-sidebar .social-link.whatsapp {
    background: #25d366;
}

.social-links-sidebar .social-link.whatsapp:hover {
    background: #1da851;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.social-links-sidebar .social-link.telegram {
    background: #0088cc;
}

.social-links-sidebar .social-link.telegram:hover {
    background: #0077b3;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

/* TikTok ve Snapchat için ekstra renkler */
.social-links-sidebar .social-link.tiktok {
    background: #000000;
}

.social-links-sidebar .social-link.tiktok:hover {
    background: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.social-links-sidebar .social-link.snapchat {
    background: #fffc00;
    color: #000000 !important;
}

.social-links-sidebar .social-link.snapchat:hover {
    background: #ede600;
    box-shadow: 0 4px 12px rgba(255, 252, 0, 0.4);
}

.social-links-sidebar .social-link.snapchat svg {
    fill: #000000 !important;
}

/* ========================================
   ARŞİV WIDGET
   ======================================== */
.sidebar-widget.widget-archives .widget-body {
    padding: 4px 20px 20px 20px !important; /* Üst 4px SABİT */
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    border-top: none !important;
}

.widget-archives .archive-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block !important;
    visibility: visible !important;
}

.widget-archives .archive-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget-archives .archive-list li:last-child {
    border-bottom: none;
}

.widget-archives .archive-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget-archives .archive-list a:hover {
    color: var(--primary-color, #e74c3c);
    padding-left: 5px;
}

/* ========================================
   MOBİL RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    /* Sticky sidebar mobilde zaten yok */
    
    .sidebar-content {
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .sidebar-widget {
        border-radius: 10px;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    
    /* Yeni widget'lar için mobil düzenleme */
    .sidebar-widget.widget-search,
    .sidebar-widget.widget-social,
    .sidebar-widget.widget-archives {
        margin-bottom: 20px;
    }
    
    /* Sidebar içindeki modüller için - TAM GENİŞLİK */
    .sidebar-widget .futbol-enleri-module,
    .sidebar-widget .home-puan-durumu-module {
        width: 100% !important;
        max-width: 100% !important;
        margin: -1px 0 0 0 !important;
        padding: 0 !important;
        border-radius: 0 0 10px 10px !important;
        overflow: hidden !important;
    }
    
    .sidebar-widget .futbol-enleri-module .container,
    .sidebar-widget .home-puan-durumu-module .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Futbol Enleri Grid - Mobilde 1 kolon */
    .sidebar-widget .futbol-enleri-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 15px !important;
    }
    
    /* Puan Durumu Slider */
    .sidebar-widget .hpd-slider {
        padding: 0 15px !important;
    }
    
    .widget-title {
        font-size: 13px;
        padding: 14px 18px 4px 18px; /* Mobilde de çok minimal */
        gap: 12px;
    }
    
    .featured-post-title {
        font-size: 16px;
    }
    
    /* Popüler haberler mobilde tek kolon */
    .popular-posts-list {
        grid-template-columns: 1fr !important;
        gap: 0;
    }
    
    .popular-post-item {
        flex-direction: row !important;
        text-align: left !important;
        padding: 14px 18px !important;
    }
    
    .popular-post-thumb {
        width: 100px !important;
        height: 100px !important;
    }
    
    .popular-post-content {
        flex: 1;
        text-align: left !important;
    }
    
    .popular-post-meta {
        justify-content: flex-start !important;
    }
    
    .popular-post-title,
    .recent-post-title {
        font-size: 13px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    
    /* Sosyal medya mobilde tam genişlik */
    .social-links-sidebar {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    
    .social-links-sidebar .social-link {
        min-height: 54px;
    }
    
    .social-links-sidebar .social-link svg {
        width: 22px;
        height: 22px;
        margin-left: 20px;
    }
    
    .social-links-sidebar .social-link::before {
        left: 62px;
    }
    
    .social-links-sidebar .social-link span {
        font-size: 15px;
        margin-left: 26px;
    }
    
    .category-card {
        padding: 20px 14px;
        min-height: 100px;
    }
    
    .category-name {
        font-size: 13px;
    }
    
    .category-count {
        font-size: 12px;
        padding: 5px 14px;
    }
    
    .recent-post-thumb {
        width: 70px;
        height: 70px;
    }
    
    /* Puan durumunu mobilde gizle - SADECE TABLO TİPİ */
    .widget-standings {
        display: block !important;
    }
    
    .widget-standings .widget-body {
        max-height: none !important;
        overflow: visible !important;
    }
}

@media (max-width: 480px) {
    .sidebar-content {
        gap: 16px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .sidebar-widget {
        border-radius: 8px;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    
    /* Sidebar modül düzeltmeleri - Küçük mobil */
    .sidebar-widget .futbol-enleri-module .container,
    .sidebar-widget .home-puan-durumu-module .container {
        padding: 0 12px !important;
    }
    
    .sidebar-widget .futbol-enleri-grid {
        padding: 12px !important;
        gap: 12px !important;
    }
    
    .sidebar-widget .hpd-slider {
        padding: 0 12px !important;
    }
    
    .widget-title {
        font-size: 12px;
        padding: 12px 16px 4px 16px; /* Küçük mobilde de çok minimal */
        gap: 10px;
    }
    
    .widget-title::after {
        height: 2px;
    }
    
    .featured-post-content {
        padding: 16px;
    }
    
    .featured-post-title {
        font-size: 15px;
    }
    
    .popular-post-item,
    .recent-post-item {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .popular-post-thumb {
        width: 90px;
        height: 90px;
        border-radius: 10px;
    }
    
    .post-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
        top: 6px;
        left: 6px;
    }
    
    .recent-post-thumb {
        width: 70px;
        height: 70px;
    }
    
    /* Küçük mobil - popüler haberler */
    .popular-posts-list {
        grid-template-columns: 1fr !important;
    }
    
    .popular-post-item {
        flex-direction: row !important;
        padding: 12px 16px !important;
    }
    
    .popular-post-title,
    .recent-post-title {
        font-size: 13px;
    }
    
    .popular-post-title {
        font-size: 12px;
    }
    
    .popular-post-meta {
        font-size: 11px;
        gap: 10px;
    }
    
    .popular-post-date svg,
    .popular-post-views svg {
        width: 12px;
        height: 12px;
    }
    
    .category-card {
        padding: 16px 12px;
    }
    
    .category-name {
        font-size: 12px;
    }
    
    .tag-item {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* ========================================
   DARK MODE
   ======================================== */
body.dark-mode .sidebar-widget {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

body.dark-mode .widget-header {
    background: transparent;
    border: none !important;
    border-bottom: none !important;
}

body.dark-mode .widget-header::after,
body.dark-mode .widget-header::before,
body.dark-mode .widget-title::before {
    display: none !important;
}

body.dark-mode .widget-title {
    color: #ffffff;
}

body.dark-mode .widget-title::after {
    background: #e74c3c;
}

body.dark-mode .latest-news-item {
    background: transparent;
}

body.dark-mode .latest-news-item:hover {
    background: #2d2d2d;
}

body.dark-mode .latest-news-item:not(:last-child) {
    border-bottom-color: #2d2d2d;
}

body.dark-mode .latest-news-category {
    background: #2d2d2d;
    color: #e0e0e0;
}

body.dark-mode .latest-news-time {
    color: #999;
}

body.dark-mode .latest-news-title a {
    color: #e0e0e0;
}

body.dark-mode .latest-news-title a:hover {
    color: var(--primary-color, #e74c3c);
}

body.dark-mode .popular-post-item,
body.dark-mode .recent-post-item {
    background: transparent;
}

body.dark-mode .popular-post-item:hover,
body.dark-mode .recent-post-item:hover {
    background: #2d2d2d;
}

body.dark-mode .popular-post-item:not(:last-child),
body.dark-mode .recent-post-item:not(:last-child) {
    border-bottom-color: #2d2d2d;
}

body.dark-mode .popular-post-thumb {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

body.dark-mode .post-number {
    background: rgba(26, 26, 26, 0.95);
    color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .popular-post-item:hover .post-number {
    background: var(--primary-color, #e74c3c);
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.6);
}

body.dark-mode .popular-post-title a,
body.dark-mode .recent-post-title a {
    color: #e0e0e0;
}

body.dark-mode .popular-post-title a:hover,
body.dark-mode .recent-post-title a:hover {
    color: var(--primary-color, #e74c3c);
}

body.dark-mode .post-meta,
body.dark-mode .post-date,
body.dark-mode .popular-post-meta,
body.dark-mode .popular-post-date,
body.dark-mode .popular-post-views {
    color: #999;
}

body.dark-mode .category-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-color: #2d2d2d;
}

body.dark-mode .category-card:hover {
    background: linear-gradient(135deg, var(--primary-color, #e74c3c), var(--dark-accent-hover, #c0392b));
    border-color: var(--primary-color, #e74c3c);
}

body.dark-mode .category-name {
    color: #e0e0e0;
}

body.dark-mode .tag-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #e0e0e0;
    border-color: #2d2d2d;
}

body.dark-mode .tag-item:hover {
    background: linear-gradient(135deg, var(--primary-color, #e74c3c), var(--dark-accent-hover, #c0392b));
    color: white;
    border-color: var(--primary-color, #e74c3c);
}

body.dark-mode .post-category-tag {
    background: #2d2d2d;
    color: #999;
}

body.dark-mode .widget-notice {
    background: #2d2d2d;
    color: #999;
}

/* ========================================
   DESKTOP ONLY FIX - MOBİL CSS OVERRIDE
   ======================================== */
@media (min-width: 769px) {
    /* TÜM WIDGET BODY'LER DESKTOP'TA ZORUNLU GÖRÜNÜR */
    .sidebar-widget .widget-body,
    .sidebar-widget.widget-search .widget-body,
    .sidebar-widget.widget-featured .widget-body,
    .sidebar-widget.widget-popular .widget-body,
    .sidebar-widget.widget-categories-modern .widget-body,
    .sidebar-widget.widget-tags-modern .widget-body,
    .sidebar-widget.widget-archives .widget-body,
    .sidebar-widget.widget-social .widget-body {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
    }
    
    /* İÇ ELEMANLAR DA GÖRÜNÜR */
    .sidebar-search-form,
    .search-input-wrapper,
    .sidebar-search-form .search-field,
    .sidebar-search-form .search-submit {
        display: flex !important;
    }
    
    .popular-posts-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .tags-cloud-modern,
    .archive-list,
    .social-links-sidebar {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .social-links-sidebar {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .tags-cloud-modern {
        display: flex !important;
    }
    
    .archive-list {
        display: block !important;
    }
}