        /* --- TEMEL DEĞİŞKENLER & RESET --- */
        :root {
            --primary: #0f172a;
            --accent: #e11d48;
            --white: #ffffff;
            --container: 1300px;
            --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
            --glass-light: rgba(255, 255, 255, 0.85);
            --glass-dark: rgba(15, 23, 42, 0.95);
            --bg-body: #f8fafc;
            --text-gray: #64748b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--bg-body);
            color: #334155;
            line-height: 1.5;
            overflow-x: hidden;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        ul {
            list-style: none;
        }

        /* --- HEADER & TOP BAR --- */
        .top-bar {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a:hover {
            color: var(--accent);
            transform: scale(1.1);
        }

        header {
            background: var(--white);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
            position: relative;
            z-index: 1000;
            border-bottom: 1px solid #e2e8f0;
        }
 .article-header {
           
            position: relative !important;
            z-index: 999;
         
       
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 75px;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: -1px;
        }
        .logo img {
            max-width: 200px;
            min-width: 150px;
        }

        .logo span {
            color: var(--accent);
        }

        .desktop-menu {
            display: flex;
            gap: 30px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .desktop-menu a {
            font-weight: 700;
            font-size: 15px;
            color: #475569;
            text-transform: uppercase;
            position: relative;
            padding: 5px 0;
        }

        .desktop-menu a:hover {
            color: var(--accent);
        }

        .header-actions {
            display: flex;
            gap: 15px;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            font-size: 18px;
            cursor: pointer;
            color: var(--primary);
            background: #f1f5f9;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .action-btn:hover {
            background: var(--accent);
            color: white;
        }

        /* --- MODALS --- */
        .sidebar-overlay,
        .search-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.9);
            z-index: 2000;
            display: none;
            backdrop-filter: blur(5px);
        }

        .sidebar-overlay.active,
        .search-overlay.active {
            display: block;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background: white;
            z-index: 2001;
            transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 30px;
        }

        .sidebar.active {
            left: 0;
        }

        .sidebar-close {
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .sidebar-links a {
            display: block;
            font-size: 16px;
            font-weight: 700;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .search-container {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 700px;
            z-index: 2002;
            display: none;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .search-container.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .search-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: #94a3b8;
            cursor: pointer;
            transition: 0.3s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f8fafc;
        }

        .search-close:hover {
            background: var(--accent);
            color: white;
        }

        .search-form {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .search-container input {
            flex-grow: 1;
            padding: 20px;
            font-size: 18px;
            border: 2px solid #f1f5f9;
            border-radius: 12px;
            background: #f8fafc;
            color: var(--primary);
            font-weight: 600;
        }
        
        .search-container input:focus {
            border-color: var(--accent);
            background: white;
        }

        .search-container button {
            padding: 0 40px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 800;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
        }

        .search-container button:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translate(-50%, -40%); }
            to { opacity: 1; transform: translate(-50%, -50%); }
        }

        /* --- SLIDERS --- */
        .mini-slider-section {
            margin-top: 25px;
            height: 350px;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
        }

        .slider-box {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow);
            background: #cbd5e1;
            cursor: grab;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .type-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .mini-content {
            position: absolute;
            bottom: 20px;
            left: 70px;
            right: 20px;
            width: fit-content;
            max-width: 70%;
            background: rgba(15, 23, 42, 0.85);
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            backdrop-filter: blur(5px);
            border-left: 3px solid var(--accent);
        }

        .mini-v-nav {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 20;
        }

        .mini-v-btn {
            width: 30px;
            height: 30px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 800;
            cursor: pointer;
            transition: 0.3s;
        }

        .mini-v-btn.active {
            background: var(--accent);
            border-color: var(--accent);
        }

        .breaking-news {
            background: white;
            border: 1px solid #e2e8f0;
            margin: 25px 0;
            border-radius: 12px;
            overflow: hidden;
            height: 50px;
            display: flex;
            align-items: center;
        }

        .breaking-label {
            background: var(--accent);
            color: white;
            padding: 0 25px;
            height: 100%;
            display: flex;
            align-items: center;
            font-weight: 800;
            font-size: 12px;
            z-index: 10;
            flex-shrink: 0;
        }

        .ticker-wrapper {
            flex-grow: 1;
            overflow: hidden;
        }

        .ticker {
            display: flex;
            white-space: nowrap;
            animation: ticker 40s linear infinite;
        }

        .ticker-item {
            padding: 0 40px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .ticker-item::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            margin-right: 10px;
        }

        @keyframes ticker {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .hero-grid {
            margin: 25px 0;
            display: grid;
            grid-template-columns: 2.6fr 1fr;
            gap: 25px;
            align-items: start;
        }

        .main-slider {
            position: relative;
            height: 550px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #000;
            cursor: grab;
            display: flex;
            flex-direction: column;
        }

        .slide-title-box {
            position: absolute;
            bottom: 40px;
            left: 30px;
            width: fit-content;
            max-width: 80%;
            padding: 4px;
            border-radius: 12px;
            z-index: 10;
            overflow: hidden;
            pointer-events: none;
        }

        .slide-title-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent 0deg, transparent 90deg, var(--accent) 180deg, transparent 270deg);
            animation: rotate 4s linear infinite;
        }

        .title-content {
            position: relative;
            z-index: 1;
            background: rgba(15, 23, 42, 0.85);
            padding: 20px 30px;
            border-radius: 10px;
            color: white;
            backdrop-filter: blur(8px);
        }

        .title-content h2 {
            font-size: 26px;
            font-weight: 800;
            line-height: 1.3;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @keyframes rotate {
            100% {
                transform: rotate(360deg);
            }
        }

        .main-nav-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 12px;
            display: flex;
            z-index: 20;
            background: rgba(0, 0, 0, 0.3);
        }

        .nav-bar-item {
            flex-grow: 1;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 2px;
            position: relative;
        }

        .nav-bar-item:hover {
            background: rgba(255, 255, 255, 0.6);
            height: 16px;
            margin-top: -4px;
        }

        .nav-bar-item.active {
            background: var(--accent);
            box-shadow: 0 0 15px var(--accent);
        }

        .trend-column {
            height: 550px;
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow);
            border: 1px solid #e2e8f0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .trend-header {
            padding: 20px;
            font-weight: 800;
            text-transform: uppercase;
            border-bottom: 2px solid #f1f5f9;
            color: var(--primary);
        }

        .trend-header i {
            color: var(--accent);
            margin-right: 8px;
        }

        .trend-list {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .trend-card {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 0 20px;
            border-bottom: 1px solid #f1f5f9;
            transition: 0.2s;
            cursor: pointer;
        }

        .trend-card:hover {
            background: #f8fafc;
            padding-left: 25px;
        }

        .trend-rank {
            font-size: 24px;
            font-weight: 900;
            color: #cbd5e1;
        }

        .trend-card:hover .trend-rank {
            color: var(--accent);
        }

        .trend-info h4 {
            font-size: 14px;
            font-weight: 700;
            color: #334155;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* --- CONTENT LAYOUTS --- */
        .content-layout {
            display: grid;
            grid-template-columns: 2.6fr 1fr;
            gap: 25px;
            margin-bottom: 40px;
            align-items: start;
        }

        .section-title {
            font-size: 20px;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 20px;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }

        .news-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .news-card-v {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #f1f5f9;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
        }

        .news-card-v:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--accent);
        }

        .news-card-img {
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .news-card-img img {
            transition: 0.5s;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-card-v:hover .news-card-img img {
            transform: scale(1.1);
        }

        .news-card-body {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .nc-cat {
            font-size: 10px;
            font-weight: 800;
            color: var(--accent);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .nc-title {
            font-size: 15px;
            font-weight: 800;
            line-height: 1.4;
            color: var(--primary);
            margin-bottom: 10px;
            flex: 1;
        }

        .nc-meta {
            font-size: 11px;
            color: var(--text-gray);
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #f1f5f9;
            padding-top: 10px;
            margin-top: auto;
        }

        .news-list-item {
            display: flex;
            gap: 20px;
            background: white;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid #f1f5f9;
            transition: 0.3s;
            margin-bottom: 15px;
        }

        .news-list-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border-color: var(--accent);
        }

        .news-list-img {
            width: 220px;
            height: 130px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .news-list-img img {
            transition: 0.5s;
        }

        .news-list-item:hover .news-list-img img {
            transform: scale(1.1);
        }

        .news-list-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-list-content h3 {
            font-size: 18px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .author-widget {
            background: white;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }

        .widget-header {
            background: var(--primary);
            color: white;
            padding: 15px;
            font-weight: 800;
        }

        .author-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-bottom: 1px solid #f1f5f9;
            cursor: pointer;
            transition: 0.2s;
        }

        .author-item:hover {
            background: #f8fafc;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #e2e8f0;
        }

        .author-info h4 {
            font-size: 14px;
            font-weight: 800;
            color: var(--primary);
        }

        .author-info p {
            font-size: 12px;
            color: var(--text-gray);
        }

        .ad-banner {
            width: 100%;
            background: #e2e8f0;
            display: block; /* Flex collapsed absolute children, block is safer with relative children */
            border-radius: 8px;
            margin: 40px 0;
            color: #94a3b8;
            font-weight: bold;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            min-height: 1px; /* Ensure it has some presence */
        }
        .ad-banner .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
        .ad-banner .slide.active { position: relative; opacity: 1; z-index: 1; }
        .ad-banner img { width: 100%; height: auto; display: block; }
        .ad-nav { display: none !important; }

        .ad-banner::after {
            content: '';
        }

        .gallery-section {
            margin: 40px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .gallery-item {
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item img {
            transition: 0.5s;
        }

        .g-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, black, transparent);
            opacity: 0.8;
            display: flex;
            align-items: flex-end;
            padding: 15px;
        }

        .g-title {
            color: white;
            font-weight: 700;
            font-size: 14px;
        }

        .video-section {
            background: #1e293b;
            padding: 40px 0;
            margin: 40px 0;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .video-card {
            background: #0f172a;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: 0.3s;
        }

        .video-card:hover {
            transform: translateY(-5px);
        }

        .video-thumb {
            position: relative;
            height: 160px;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            backdrop-filter: blur(5px);
        }

        .video-info {
            padding: 15px;
            color: #e2e8f0;
            font-size: 13px;
            font-weight: 600;
        }

        footer {
            background: var(--primary);
            color: #cbd5e1;
            padding: 60px 0 0;
            margin-top: 60px;
            border-top: 5px solid var(--accent);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .f-col h4 {
            color: white;
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .f-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }

        .f-links li {
            margin-bottom: 12px;
        }

        .f-links a {
            font-size: 14px;
            transition: 0.3s;
            opacity: 0.8;
        }

        .f-links a:hover {
            color: var(--accent);
            opacity: 1;
            padding-left: 5px;
        }

        .f-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .f-social a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            transition: 0.3s;
        }

        .f-social a:hover {
            background: var(--accent);
        }

        .newsletter input {
            width: 100%;
            padding: 12px;
            border-radius: 6px;
            border: none;
            font-size: 14px;
            margin-bottom: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .newsletter button {
            width: 100%;
            padding: 12px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 800;
            cursor: pointer;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            text-align: center;
            font-size: 13px;
            opacity: 0.6;
        }

        @media (max-width: 1024px) {
            .desktop-menu {
                display: none;
            }

            .hero-grid,
            .content-layout {
                grid-template-columns: 1fr;
            }

            .news-grid-3,
            .gallery-grid,
            .video-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid,
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .news-list-item {
                flex-direction: column;
            }

            .news-list-img {
                width: 100%;
                height: 200px;
            }

            .trend-column {
                height: auto;
            }

            .main-slider {
                height: 450px;
            }

            .slide-title-box {
                max-width: 90%;
                left: 15px;
                bottom: 35px;
            }
        }

/* ============================================ */
/* --- HABER DETAY SAYFASI STİLLERİ ---        */
/* ============================================ */

/* Progress Bar */
.progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 4px; background: transparent; z-index: 2000; pointer-events: none; }
.progress-bar { height: 4px; background: var(--accent); width: 0%; transition: 0.1s; box-shadow: 0 0 10px var(--accent); }

/* Detail Page Layout */
.detail-layout { display: grid; grid-template-columns: 2.6fr 1fr; gap: 40px; margin-bottom: 60px; align-items: start; margin-top: 20px; }

/* Article Styles */
.article-cat { display: inline-block; background: var(--accent); color: white; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 4px; margin-bottom: 15px; }
.article-title { font-size: 36px; font-weight: 900; line-height: 1.2; color: var(--primary); margin-bottom: 15px; }
.article-spot { font-size: 18px; color: #475569; font-weight: 500; line-height: 1.6; margin-bottom: 20px; border-left: 4px solid var(--accent); padding-left: 15px; }

.article-meta { display: flex; justify-content: space-between; border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; margin-bottom: 25px; align-items: center; }
.meta-left { display: flex; align-items: center; gap: 15px; }
.author-mini { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--primary); }
.author-mini img { width: 40px; height: 40px; border-radius: 50%; }
.font-tools { display: flex; gap: 5px; }
.font-btn { width: 32px; height: 32px; border: 1px solid #e2e8f0; background: white; border-radius: 4px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: bold; transition: 0.2s; }
.font-btn:hover { background: var(--primary); color: white; }

.featured-image { width: 100%; height: 500px; border-radius: 12px; overflow: hidden; margin-bottom: 30px; position: relative; }
.img-caption { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0,0,0,0.6); color: white; padding: 10px 20px; font-size: 13px; backdrop-filter: blur(5px); }

#articleBody { font-size: 18px; color: #1e293b; line-height: 1.8; transition: all 0.3s ease; }
#articleBody p { margin-bottom: 25px; }
#articleBody h2 { font-size: 1.5em; font-weight: 800; color: var(--primary); margin: 35px 0 15px; }

/* Foto Galeri */
.photo-gallery-module { margin: 40px 0; }
.gallery-header { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.gallery-header i { color: var(--accent); }

.pg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pg-item { position: relative; height: 150px; border-radius: 8px; overflow: hidden; cursor: pointer; }
.pg-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.pg-item:hover img { transform: scale(1.1); }
.pg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.pg-item:hover .pg-overlay { opacity: 1; }
.pg-overlay i { color: white; font-size: 30px; }

/* Lightbox (Modal) */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 10000; display: none; align-items: center; justify-content: center; flex-direction: column; }
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90%; max-height: 80vh; border-radius: 4px; box-shadow: 0 0 30px rgba(0,0,0,0.5); animation: zoomIn 0.3s; }
.lightbox-close { position: absolute; top: 30px; right: 30px; color: white; font-size: 40px; cursor: pointer; transition: 0.3s; }
.lightbox-close:hover { color: var(--accent); transform: rotate(90deg); }
.lightbox-caption { color: white; margin-top: 15px; font-size: 16px; font-weight: 500; }
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Video Galeri */
.video-module { margin: 40px 0; background: #1e293b; padding: 25px; border-radius: 12px; color: white; }
.video-module-header { font-size: 20px; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; margin-bottom: 20px; background: black; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.mini-video { display: flex; gap: 10px; cursor: pointer; align-items: center; background: rgba(255,255,255,0.05); padding: 10px; border-radius: 8px; transition: 0.2s; }
.mini-video:hover { background: rgba(255,255,255,0.1); }
.mv-thumb { width: 80px; height: 45px; border-radius: 4px; overflow: hidden; position: relative; flex-shrink: 0; }
.mv-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.4); color: white; font-size: 12px; }
.mv-title { font-size: 13px; line-height: 1.3; font-weight: 600; color: #e2e8f0; }

/* Tags, Author Box */
.tags-container { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.tag-btn { background: #f1f5f9; color: #475569; padding: 8px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; transition: 0.2s; }
.tag-btn:hover { background: var(--accent); color: white; }
.author-box { background: white; border: 1px solid #e2e8f0; padding: 25px; border-radius: 12px; display: flex; align-items: center; gap: 20px; margin-top: 40px; }
.ab-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }

/* Sidebar: Mini List & Ad */
.mini-list-item { display: flex; gap: 15px; padding: 15px 20px; border-bottom: 1px solid #f1f5f9; transition: 0.2s; }
.mini-list-item:hover { background: #f8fafc; }
.ml-rank { font-size: 24px; font-weight: 900; color: #e2e8f0; }
.mini-list-item:hover .ml-rank { color: var(--accent); }
.ad-square { width: 100%; height: 250px; background: #e2e8f0; display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-bottom: 30px; color: #94a3b8; font-weight: bold; position: relative; }
.ad-square::after { content: 'REKLAM'; }

/* Detail Page Responsive */
@media (max-width: 1024px) {
    .detail-layout, .video-list { grid-template-columns: 1fr; }
    .article-title { font-size: 26px; }
    .pg-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================ */
/* --- HABER LİSTE SAYFASI STİLLERİ ---        */
/* ============================================ */

/* Breadcrumb */
.breadcrumb { margin: 20px 0; font-size: 13px; color: var(--text-gray); display: flex; align-items: center; gap: 8px; }
.breadcrumb a { font-weight: 600; color: var(--primary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 10px; color: #cbd5e1; }
.current-page { color: var(--accent); font-weight: 700; }

/* Page Title */
.page-title { font-size: 32px; font-weight: 900; color: var(--primary); margin-bottom: 25px; padding-bottom: 15px; border-bottom: 3px solid var(--accent); display: inline-block; }

/* Page Layout */
.page-grid { display: grid; grid-template-columns: 2.6fr 1fr; gap: 30px; align-items: start; margin-bottom: 50px; }

/* Kategori Manşet (Featured) */
.cat-featured {
    height: 400px; border-radius: 16px; overflow: hidden; position: relative; margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.cat-featured { background: #0f172a; }
.cat-featured > a, .cat-featured > a:first-child { display: block; width: 100%; height: 100%; }
.cat-featured img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cat-featured-content {
    position: absolute; bottom: 30px; left: 30px; width: 80%;
    background: rgba(15, 23, 42, 0.85); color: white; padding: 25px;
    border-radius: 12px; backdrop-filter: blur(8px);
    border-left: 5px solid var(--accent);
}
.cat-featured h1 { font-size: 28px; font-weight: 900; line-height: 1.3; margin-bottom: 10px; }
.cat-featured p { font-size: 14px; opacity: 0.9; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.cat-featured-yazar {
    position: absolute; top: 20px; right: 20px; z-index: 3;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; font-size: 12px; font-weight: 700;
    color: white; background: rgba(0,0,0,0.6); border-radius: 999px;
    backdrop-filter: blur(8px); transition: 0.2s;
}
.cat-featured-yazar i { color: var(--accent); }
.cat-featured-yazar:hover { background: var(--accent); color: white; }
.cat-featured-yazar:hover i { color: white; }

/* Haber Grid (2 Sütunlu Liste) */
.news-listing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }

.list-card {
    background: white; border-radius: 12px; overflow: hidden; border: 1px solid #f1f5f9;
    transition: 0.3s; display: flex; flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.list-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.list-card-img { height: 200px; overflow: hidden; position: relative; background: #f1f5f9; }
.list-card-img img { transition: 0.5s; width: 100%; height: 100%; object-fit: contain; }
.list-card:hover .list-card-img img { transform: scale(1.1); }

.list-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.lc-cat { font-size: 11px; font-weight: 800; color: var(--accent); text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.5px; }
.lc-title { font-size: 18px; font-weight: 800; line-height: 1.4; color: var(--primary); margin-bottom: 10px; flex: 1; }
.lc-desc { font-size: 13px; color: var(--text-gray); margin-bottom: 15px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.lc-meta { font-size: 12px; color: #94a3b8; display: flex; align-items: center; gap: 15px; border-top: 1px solid #f1f5f9; padding-top: 15px; margin-top: auto; }
.lc-meta i { color: var(--accent); margin-right: 5px; }

.list-card-yazar {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px; font-size: 12px; font-weight: 700;
    color: #475569; background: #f8fafc; border-top: 1px solid #f1f5f9;
    transition: 0.2s;
}
.list-card-yazar:hover { color: var(--accent); background: #fff1f1; }

.yazar-avatar {
    width: 26px; height: 26px; border-radius: 999px;
    object-fit: cover; flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.yazar-avatar--initials {
    display: inline-flex; align-items: center; justify-content: center;
    background: #e2e8f0; color: #475569; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.3px;
}
.cat-featured-yazar .yazar-avatar { width: 22px; height: 22px; }
.cat-featured-yazar .yazar-avatar--initials { background: rgba(255,255,255,0.25); color: white; }

/* Category List */
.category-list a { display: flex; justify-content: space-between; padding: 12px 20px; border-bottom: 1px solid #f1f5f9; font-weight: 600; font-size: 14px; color: #475569; }
.category-list a:hover { background: #fdf2f2; color: var(--accent); padding-left: 25px; }
.cat-count { background: #e2e8f0; padding: 2px 8px; border-radius: 20px; font-size: 11px; color: #64748b; }

/* Trend Card (Mini) */
.trend-mini { display: flex; gap: 15px; padding: 15px 20px; border-bottom: 1px solid #f1f5f9; align-items: center; }
.trend-mini:hover { background: #f8fafc; }
.tm-rank { font-size: 20px; font-weight: 900; color: #e2e8f0; }
.trend-mini:hover .tm-rank { color: var(--accent); }
.tm-title { font-size: 13px; font-weight: 700; color: var(--primary); line-height: 1.4; }

/* Ad Banner */
.ad-banner { width: 100%; background: #e2e8f0; display: block; border-radius: 8px; color: #94a3b8; font-weight: bold; letter-spacing: 2px; position: relative; overflow: hidden; min-height: 1px; }
.ad-banner .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.ad-banner .slide.active { position: relative; opacity: 1; z-index: 1; }
.ad-banner img { width: 100%; height: auto; display: block; }
.ad-nav { display: none !important; }
.ad-sidebar { height: auto; }
.ad-content { height: auto; margin: 30px 0; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: white; border: 1px solid #e2e8f0; font-weight: 700; color: var(--primary); transition: 0.3s; cursor: pointer; }
.page-btn:hover { border-color: var(--accent); color: var(--accent); }
.page-btn.active { background: var(--accent); color: white; border-color: var(--accent); }

/* Footer Helpers */
.f-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--accent); }
.f-links li { margin-bottom: 12px; }
.f-links a { font-size: 14px; transition: 0.3s; opacity: 0.8; }
.f-links a:hover { color: var(--accent); opacity: 1; padding-left: 5px; }
.f-social { display: flex; gap: 15px; margin-top: 20px; }
.f-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; transition: 0.3s; }
.f-social a:hover { background: var(--accent); }
.newsletter input { width: 100%; padding: 12px; border-radius: 6px; border: none; font-size: 14px; margin-bottom: 10px; background: rgba(255,255,255,0.1); color: white; }
.newsletter button { width: 100%; padding: 12px; background: var(--accent); color: white; border: none; border-radius: 6px; font-weight: 800; cursor: pointer; }

/* Liste Sayfası Responsive */
@media (max-width: 1024px) {
    .page-grid { grid-template-columns: 1fr; }
    .page-grid > * { min-width: 0; }
    .news-listing-grid { grid-template-columns: 1fr; }
    .cat-featured { height: 300px; }
    .cat-featured h1 { font-size: 20px; }
}

/* ============================================ */
/* --- MAKALELER (YAZAR) SAYFASI STİLLERİ ---   */
/* ============================================ */

/* Yazar Profil Kartı */
.author-profile-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}
.author-profile-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(239,68,68,0.03) 100%);
    pointer-events: none;
}
.author-profile-img {
    flex-shrink: 0;
}
.author-profile-img img,
.author-profile-img .avatar {
    font-size: 42px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 4px 15px rgba(239,68,68,0.2);
}
.author-profile-info {
    flex: 1;
}
.author-profile-name {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}
.author-profile-bio {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 600px;
}
.author-profile-stats {
    display: flex;
    gap: 20px;
}
.author-stat {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: #f8fafc;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}
.author-stat i {
    color: var(--accent);
    margin-right: 6px;
}

/* Makale Liste Başlığı */
.article-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}
.article-list-header h2 {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
}
.article-list-header h2 i {
    color: var(--accent);
    margin-right: 8px;
}
.article-count {
    font-size: 13px;
    color: var(--text-gray);
    background: #f1f5f9;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
}

/* Makale Satır Kartı (Yatay) */
.article-listing {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.article-row-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.article-row-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.arc-img {
    width: 260px;
    min-height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}
.arc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.article-row-card:hover .arc-img img {
    transform: scale(1.08);
}
.arc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.arc-cat {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.arc-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 10px;
}
.arc-title a {
    color: var(--primary);
    transition: 0.3s;
}
.arc-title a:hover {
    color: var(--accent);
}
.arc-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.arc-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #94a3b8;
    margin-top: auto;
}
.arc-meta i {
    color: var(--accent);
    margin-right: 4px;
}

/* Makaleler Sayfası Responsive */
@media (max-width: 768px) {
    .author-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    .author-profile-bio { max-width: 100%; }
    .author-profile-stats { justify-content: center; }
    .article-row-card {
        flex-direction: column;
    }
    .arc-img {
        width: 100%;
        height: 200px;
        min-height: auto;
    }
    .article-list-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}


.yorum-item {
    transition: all 0.3s ease;
}

/* === Sosyal Medya Butonları (marka renkleri) === */
.sm-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border-radius: 12px;
    font-size: 13px; font-weight: 700;
    color: #fff; background: #94a3b8;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,.06);
    overflow: hidden;
}
.sm-btn i { font-size: 18px; flex-shrink: 0; }
.sm-btn span { letter-spacing: .2px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sm-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,.15); filter: brightness(1.05); color: #fff; }

.sm-facebook   { background: #1877F2; }
.sm-twitter    { background: #1DA1F2; }
.sm-x          { background: #000; }
.sm-instagram  { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sm-youtube    { background: #FF0000; }
.sm-whatsapp   { background: #25D366; }
.sm-linkedin   { background: #0A66C2; }
.sm-tiktok     { background: #000; }
.sm-telegram   { background: #229ED9; }
.sm-pinterest  { background: #E60023; }
.sm-snapchat   { background: #FFFC00; color: #1f2937; }
.sm-snapchat:hover { color: #1f2937; }
.sm-discord    { background: #5865F2; }
.sm-reddit     { background: #FF4500; }
.sm-github     { background: #181717; }
.sm-mail       { background: #6b7280; }
.sm-phone      { background: #16a34a; }
.sm-website    { background: #475569; }
.sm-rss        { background: #f97316; }
.sm-default    { background: #475569; }