/* Extracted styles from FreshHaber-24.html */

/* --- Style block 1 --- */
:root {
            /* Modernize edilmiş mavi tonları */
            --primary: #3498db; /* Orta mavi */
            --primary-dark: #2980b9; /* Koyu orta mavi */
            --secondary: #5dade2; /* Daha açık mavi */
            --accent: #2e86c1; /* Vurgulu mavi */
            --dark: #1f2937; /* Koyu gri */
            --light: #f0f4f8; /* Çok açık gri/mavi */
            --card-bg: #ffffff; /* Haber kartları için beyaz */
            --modern-blue-light: #87CEEB; /* Açık mavi */
            --modern-blue-dark: #4682B4;  /* Koyu açık mavi */
            --modern-red: #e74c3c; /* Modernize edilmiş kırmızı */
            --modern-red-dark: #c0392b; /* Koyu modernize edilmiş kırmızı */
        }
        
        body {
            font-family: 'Inter', sans-serif;
            /* Başlangıç arka planı, JS tarafından değiştirilecek */
            background-color: var(--light); /* Açık renk arka plan */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            transition: background-image 1.5s ease-in-out, background-color 0.5s ease-in-out; /* Arka plan rengi geçişi eklendi */
            color: #334155; /* Koyu metin rengi */
        }
        
        /* Koyu mod ayarlamaları - kaldırıldı veya güncellendi */
        body.dark {
            background-color: #0f172a; /* Koyu mod için koyu arka plan rengi */
            color: #e2e8f0;
        }

        body.dark .header-glass {
            background: linear-gradient(90deg, #1e3a8a, #102a43); /* Koyu mod başlık gradyanı */
        }

        body.dark .news-card {
            background: #1e293b; /* Koyu mod haber kartı arka planı */
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        body.dark .news-card-title {
            color: #f8fafc; /* Koyu mod başlık rengi */
        }

        body.dark .news-card:hover .news-card-title {
            color: white;
        }

        body.dark .news-card-content p {
            color: #cbd5e1; /* Koyu mod paragraf rengi */
        }

        body.dark .news-date {
            background: rgba(255, 255, 255, 0.05);
            color: #94a3b8;
        }

        body.dark .news-card:hover .news-date {
            background: rgba(52, 152, 219, 0.2); /* Koyu modda hover rengi */
            color: var(--primary);
        }

        body.dark .lang-button {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        body.dark .lang-button.active {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border-color: transparent;
        }

        body.dark .modal-content {
            background: #1e293b;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        body.dark .modal-news-content {
            color: #cbd5e1;
        }

        body.dark .trending-news {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        body.dark .trending-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        body.dark .trending-title {
            color: #f8fafc;
        }

        body.dark .trending-item:hover .trending-title {
            color: var(--primary);
        }

        body.dark .weather-widget {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        body.dark .weather-widget div {
            color: #f8fafc;
        }

        body.dark .weather-widget .text-gray-400 {
            color: #94a3b8;
        }

        body.dark .category-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #cbd5e1;
        }

        body.dark .category-btn:hover, body.dark .category-btn.active {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border-color: transparent;
        }

        /* Glassmorphism header */
        .header-glass {
            background: linear-gradient(90deg, var(--modern-blue-light), var(--modern-blue-dark)); /* Modernize header with light blue gradient */
            backdrop-filter: blur(8px); /* Daha az bulanıklık */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Daha hafif gölge */
            border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Daha belirgin kenarlık */
            position: relative;
            overflow: hidden;
        }
        
        .header-glass::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .news-card {
            background: var(--card-bg); /* Şeffaflık kaldırıldı, beyaz arka plan */
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Daha hafif gölge */
            transition: all 0.3s ease-in-out;
            cursor: pointer;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(226, 232, 240, 0.8); /* Açık renk kenarlık */
            display: block; /* a etiketi için */
            color: inherit; /* a etiketi için */
            text-decoration: none; /* a etiketi için */
        }
        
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); /* Hafif artan gölge */
            border-color: var(--primary); /* Hover'da ana renk kenarlık */
        }
        
        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .news-card:hover::before {
            opacity: 1;
        }
        
        .news-card img, .news-card video {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-top-left-radius: 16px;
            border-top-right-radius: 16px;
            transition: transform 0.5s ease, filter 0.3s ease;
            filter: brightness(0.95); /* Daha az parlaklık */
        }
        
        .news-card:hover img, .news-card:hover video {
            transform: scale(1.03); /* Daha az büyütme */
            filter: brightness(1);
        }
        
        .news-card-content {
            padding: 20px;
            position: relative;
            z-index: 1;
        }
        
        .news-card-title {
            font-weight: 700;
            position: relative;
            display: inline-block;
            transition: color 0.3s ease;
            color: #1f2937; /* Koyu metin rengi */
        }
        
        .news-card:hover .news-card-title {
            color: var(--primary); /* Hover'da ana renk */
        }
        
        .lang-button {
            padding: 0.6rem 1.2rem;
            font-size: 0.95rem;
            border-radius: 10px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.2); /* Daha az şeffaf */
            color: var(--dark); /* Koyu metin */
            transition: all 0.2s ease-in-out;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px); /* Daha az bulanıklık */
        }
        
        .lang-button:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .lang-button.active {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            border-color: transparent;
        }

        /* Carousel Styles */
        /* Genel karusel stilleri (ana sayfa ve detay sayfası için ortak) */
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 16px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Hafif gölge */
            border: 1px solid rgba(226, 232, 240, 0.8); /* Açık renk kenarlık */
        }
        
        .carousel-inner {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        
        .carousel-item {
            min-width: 100%;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f8fafc; /* Açık arka plan */
            position: relative; /* Saat için konumlandırma */
        }
        
        .carousel-item img,
        .carousel-item video {
            width: 100%;
            height: 480px; /* Görseldeki yüksekliğe göre ayarlandı */
            object-fit: cover;
            border-radius: 16px;
        }

        .carousel-time {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 10;
        }
        
        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8); /* Daha az şeffaf */
            color: var(--dark);
            border: none;
            padding: 0.75rem 1.25rem;
            cursor: pointer;
            font-size: 1.8rem;
            border-radius: 50%;
            z-index: 10;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0.9;
        }
        
        .carousel-button:hover {
            background: white;
            transform: translateY(-50%) scale(1.05); /* Daha az büyütme */
            opacity: 1;
        }
        
        .carousel-button.prev {
            left: 20px;
        }
        
        .carousel-button.next {
            right: 20px;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
            gap: 10px;
        }
        
        .dot {
            height: 14px;
            width: 14px;
            background: #cbd5e1; /* Açık gri */
            border-radius: 50%;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .dot.active {
            background: var(--primary);
            transform: scale(1.2); /* Daha az büyütme */
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }
        
        /* Floating action button */
        .fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            z-index: 99;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.8);
        }
        
        .fab.visible {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }
        
        .fab:hover {
            transform: translateY(-5px) scale(1.05); /* Daha az büyütme */
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
        }
        
        /* Breaking news bar */
        .breaking-news {
            background: linear-gradient(90deg, var(--modern-red), var(--modern-red-dark)); /* Kırmızı tonlar */
            color: white;
            padding: 0;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
        }
        
        .breaking-news::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: translateX(-100%);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            100% { transform: translateX(100%); }
        }

        .breaking-news-label-container {
            flex-shrink: 0;
            background: rgba(0, 0, 0, 0.15); /* Daha az koyu */
            padding: 14px 16px;
            font-weight: 800;
            font-size: 1.1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-top-left-radius: 12px;
            border-bottom-left-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .breaking-content {
            padding: 0 10px;
            white-space: nowrap;
            overflow: hidden;
            animation: marquee 25s linear infinite;
            flex-grow: 1;
        }
        
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        /* Weather widget */
        .weather-widget {
            background: #ffffff; /* Beyaz arka plan */
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Hafif gölge */
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(226, 232, 240, 0.8); /* Açık renk kenarlık */
            color: #1f2937; /* Koyu metin rengi */
        }
        
        .weather-widget::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(93, 173, 226, 0.1)); /* Mavi tonları */
            border-radius: 0 0 0 100%;
        }
        
        .weather-icon {
            font-size: 3rem;
            color: var(--primary);
            z-index: 1;
        }
        
        /* Animation for cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-card {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }
        
        /* Gradient text */
        .gradient-text {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
        }
        
        /* Haber kartı kategori etiketi - görünmez yapıldı */
        .news-badge {
            display: none; /* Kategori etiketini tamamen gizle */
        }
        
        /* News card date */
        .news-date {
            display: inline-block;
            background: rgba(240, 244, 248, 0.8); /* Açık arka plan */
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #64748b; /* Koyu gri */
            transition: all 0.3s ease;
        }
        
        .news-card:hover .news-date {
            background: rgba(52, 152, 219, 0.2); /* Mavi tonu */
            color: var(--primary);
        }
        
        /* Content divider */
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(203, 213, 225, 0.5), transparent); /* Açık gri tonu */
            margin: 20px 0;
        }
        
        /* Loading spinner */
        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(52, 152, 219, 0.2); /* Mavi tonu */
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
            margin: 0 auto;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* New Features */
        .category-filter {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .category-btn {
            background: rgba(240, 244, 248, 0.8); /* Açık arka plan */
            border: 1px solid rgba(203, 213, 225, 0.8); /* Açık gri kenarlık */
            color: #334155; /* Koyu metin */
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .category-btn:hover, .category-btn.active {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border-color: transparent;
        }
        
        .trending-news {
            background: #ffffff; /* Beyaz arka plan */
            border-radius: 16px;
            padding: 25px;
            margin-top: 30px;
            border: 1px solid rgba(226, 232, 240, 0.8); /* Açık renk kenarlık */
            color: #1f2937; /* Koyu metin rengi */
        }
        
        .trending-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(203, 213, 225, 0.5); /* Açık gri tonu */
            cursor: pointer; /* Trend öğeleri tıklanabilir yap */
            color: inherit; /* a etiketi için */
            text-decoration: none; /* a etiketi için */
        }
        
        .trending-item:last-child {
            border-bottom: none;
        }
        
        .trending-number {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .trending-title {
            font-weight: 600;
            transition: color 0.3s ease;
            color: #1f2937; /* Koyu metin rengi */
        }
        
        .trending-item:hover .trending-title {
            color: var(--primary);
        }
        
        .news-share {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(240, 244, 248, 0.8); /* Açık arka plan */
            color: #64748b; /* Koyu gri */
            transition: all 0.3s ease;
        }
        
        .share-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        .dark-mode-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 26px;
            background: #cbd5e1; /* Açık modda gri ton */
            border-radius: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0 3px;
            transition: background 0.3s ease;
        }
        
        .toggle-circle {
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .dark .toggle-circle {
            transform: translateX(24px);
        }
        
        /* Footer styling to match header */
        .footer-glass {
            background: linear-gradient(90deg, var(--modern-blue-light), var(--modern-blue-dark)); /* Header ile aynı gradyan */
            backdrop-filter: blur(8px); /* Header ile aynı bulanıklık */
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1); /* Yukarı doğru hafif gölge */
            border-top: 1px solid rgba(255, 255, 255, 0.1); /* Yukarıda belirgin kenarlık */
            color: white; /* Metin rengi beyaz */
        }
        .footer-glass a {
            color: white; /* Link renkleri beyaz */
        }
        .footer-glass a:hover {
            color: var(--accent); /* Hover rengi vurgu rengi */
        }

        /* Financial Ticker */
        .financial-ticker {
            background: linear-gradient(90deg, #1f2937, #0f172a); /* Koyu gri tonları */
            color: white;
            padding: 12px 0;
            margin-bottom: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .ticker-container {
            display: flex;
            overflow-x: auto;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
        }
        
        .ticker-container::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }
        
        .ticker-item {
            display: flex;
            align-items: center;
            padding: 0 20px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            min-width: max-content;
        }
        
        .ticker-item:last-child {
            border-right: none;
        }
        
        .ticker-label {
            font-weight: 700;
            margin-right: 6px;
            font-size: 0.9rem;
        }
        
        .ticker-value {
            font-weight: 700;
            margin-right: 6px;
            font-size: 1rem;
        }
        
        .ticker-change {
            font-weight: 700;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            color: #94a3b8; /* Varsayılan gri renk */
        }
        
        .change-up {
            color: #10b981; /* Yeşil */
        }
        
        .change-down {
            color: #ef4444; /* Kırmızı */
        }
        
        .ticker-arrow {
            margin-right: 3px;
            font-size: 0.9rem;
        }

        /* Haber Karuselinin kendi stilleri */
        .news-carousel-container {
            width: 100%;
            overflow: hidden;
            margin-bottom: 2rem;
            position: relative;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .news-carousel-inner {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .news-carousel-item {
            min-width: 100%;
            box-sizing: border-box;
            position: relative;
            background-color: #f8fafc;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer; /* Karusel öğelerini tıklanabilir yap */
            display: block; /* a etiketi için */
            color: inherit; /* a etiketi için */
            text-decoration: none; /* a etiketi için */
        }

        .news-carousel-item img {
            width: 100%;
            height: 480px; /* Resimdeki yüksekliğe yakın */
            object-fit: cover;
        }

        .news-carousel-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
            color: white;
            padding: 2rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .news-carousel-title {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .news-carousel-time {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 10;
        }

        .news-carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            padding: 0.75rem 1.25rem;
            cursor: pointer;
            font-size: 1.8rem;
            border-radius: 50%;
            z-index: 10;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .news-carousel-button:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .news-carousel-button.prev {
            left: 20px;
        }

        .news-carousel-button.next {
            right: 20px;
        }

        .news-carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }

        .news-carousel-dot {
            height: 12px;
            width: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .news-carousel-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Toast Message for Copy Link */
        .toast-message {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            z-index: 1001;
            font-size: 0.9rem;
        }

        .toast-message.show {
            opacity: 1;
        }

        /* News Detail Page Styles */
        .news-detail-page-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            color: #1f2937;
            margin-top: 30px;
        }

        .news-detail-title {
            /* Başlık font boyutu küçültüldü */
            font-size: 1.5rem; /* Önceki 2.5rem idi */
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem; /* Margins also adjusted */
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .news-detail-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }

        .news-detail-content {
            /* İçerik font boyutu küçültüldü */
            font-size: 0.9rem; /* Önceki 1.1rem idi */
            line-height: 1.8;
            color: #334155;
            margin-top: 20px;
        }

        .news-detail-media-carousel {
            margin-top: 30px;
            margin-bottom: 30px;
        }

        .news-detail-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(203, 213, 225, 0.5);
        }

        .news-detail-info span {
            display: flex;
            align-items: center;
            margin-right: 20px;
            margin-bottom: 10px;
            color: #64748b;
        }

        .news-detail-info span i {
            margin-right: 8px;
        }

/* --- Style block 2 --- */
/* Ensure weather sim sits behind the widget content and clouds are light blue and semi-transparent */
.weather-widget .weather-sim { z-index: 0; pointer-events: none; }
.weather-widget .cloud{
  background: rgba(173,216,230,0.55) !important; /* lightblue, semi-transparent */
  box-shadow: 30px 10px 0 10px rgba(173,216,230,0.55),
              70px 5px 0 0 rgba(173,216,230,0.45),
              100px 15px 0 -10px rgba(173,216,230,0.35) !important;
  filter: blur(0.6px) saturate(1.02);
  border: 1px solid rgba(255,255,255,0.12);
  mix-blend-mode: normal;
  opacity: 0.9;
}
/* Bring original widget content above the sim. This sets position:relative so z-index applies. */
.weather-widget *:not(.weather-sim) {
  position: relative;
  z-index: 1;
}

