
    /* HABERLER ALANI ÖZEL STİLLERİ */
    .news-container {
        padding: 2rem 0;
    }
    
    /* Slider Alanı */
    .news-slider {
        position: relative;
        margin-bottom: 3rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .slider-container {
        display: flex;
        transition: transform 0.5s ease;
    }
    
    .slider-item {
        flex: 0 0 100%;
        position: relative;
        height: 450px;
    }
    
    .slider-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .slider-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
        padding: 2rem;
        color: white;
    }
    
    .slider-category {
        display: inline-block;
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        padding: 0.5rem 1.2rem;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1rem;
        box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
    }
    
    .slider-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.3;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .slider-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 1.5rem;
        z-index: 10;
        transform: translateY(-50%);
    }
    
    .slider-nav-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        color: #2c3e50;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .slider-nav-btn:hover {
        background: #3498db;
        color: white;
        transform: scale(1.1);
    }
    
    .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        z-index: 10;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dot.active {
        background: white;
        transform: scale(1.2);
    }
    
    /* Haber Listesi */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .news-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .news-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #3498db, #2ecc71, #e74c3c, #f39c12);
        z-index: 1;
    }
    
    .news-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }
    
    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .news-card:hover .news-image img {
        transform: scale(1.1);
    }
    
    .news-category {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.9);
        color: #3498db;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        z-index: 2;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .news-content {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .news-date {
        color: #7f8c8d;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
    }
    
    .news-date i {
        margin-right: 0.5rem;
        color: #3498db;
    }
    
    .news-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.4;
        color: #2c3e50;
        flex-grow: 1;
    }
    
    .news-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
        background-image: linear-gradient(transparent 95%, #3498db 5%);
        background-size: 0 100%;
        background-repeat: no-repeat;
        transition: background-size 0.3s ease;
    }
    
    .news-title a:hover {
        color: #3498db;
        background-size: 100% 100%;
    }
    
    .news-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: auto;
    }
    
    .news-tag {
        background: #f8f9fa;
        color: #7f8c8d;
        padding: 0.3rem 0.7rem;
        border-radius: 15px;
        font-size: 0.75rem;
        transition: all 0.2s;
    }
    
    .news-tag:hover {
        background: #3498db;
        color: white;
    }
    
    /* Sayfalama */
    .news-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .page-btn {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: white;
        color: #7f8c8d;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid #eaeaea;
    }
    
    .page-btn:hover,
    .page-btn.active {
        background: #3498db;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
    
    .page-btn.prev,
    .page-btn.next {
        width: auto;
        padding: 0 1.2rem;
        font-weight: 500;
    }
    
    .page-btn.prev i,
    .page-btn.next i {
        margin: 0 0.3rem;
    }
    
    /* Responsive Tasarım */
    @media (max-width: 992px) {
        .slider-title {
            font-size: 1.8rem;
        }
        
        .news-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .slider-item {
            height: 380px;
        }
        
        .slider-title {
            font-size: 1.5rem;
        }
        
        .slider-overlay {
            padding: 1.5rem;
        }
        
        .slider-nav-btn {
            width: 40px;
            height: 40px;
        }
        
        .news-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }
    
    @media (max-width: 576px) {
        .slider-item {
            height: 320px;
        }
        
        .slider-title {
            font-size: 1.3rem;
        }
        
        .slider-category {
            font-size: 0.75rem;
            padding: 0.4rem 1rem;
        }
        
        .news-pagination {
            flex-wrap: wrap;
        }
    }


     /* Lightbox Modal Stilleri */
        .modal-lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
        }
        
        .lightbox-content {
            position: relative;
            margin: auto;
            padding: 0;
            width: 90%;
            max-width: 1200px;
        }
        
        .lightbox-close {
            color: white;
            position: absolute;
            top: 10px;
            right: 25px;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
        }
        
        .lightbox-close:hover,
        .lightbox-close:focus {
            color: #999;
            text-decoration: none;
            cursor: pointer;
        }
        
        .lightbox-slide {
            display: none;
            text-align: center;
        }
        
        .lightbox-image {
            width: auto;
            max-width: 100%;
            max-height: 80vh;
            margin: 0 auto;
            display: block;
        }
        
        .lightbox-video {
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            position: relative;
        }
        
        .lightbox-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .lightbox-prev,
        .lightbox-next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -50px;
            color: white;
            font-weight: bold;
            font-size: 20px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            -webkit-user-select: none;
            background-color: rgba(0, 0, 0, 0.5);
        }




        .lightbox-next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }
        
        .lightbox-prev:hover,
        .lightbox-next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        .lightbox-caption {
            text-align: center;
            color: #ccc;
            padding: 10px 0;
            height: 40px;
        }