/* Theme Name: Sblues
Theme URI: Sohbet Teması
Author: S4S
Author URI: #
Description: Sohbet teması
Version: 1.0 */

/* ========================================================== */
        /* ÖZEL CSS: Bootstrap Sınıflarıyla Yapılamayan İnce Ayarlar */
        /* ========================================================== */

        /* Değişkenler (Bootstrap temasına yakın ayar) - KOYU TEMA İÇİN GÜNCELLENDİ */
        :root {
            --bs-indigo: #4338ca;
            --bs-amber: #f59e0b;
            --bs-indigo-gradient-start: #4338ca;
            --bs-primary: #4338ca; /* Yeni değişken ekledik */
            --bs-indigo-gradient-end: #6366f1; /* Primary Link Rengi */
            --bs-soft-bg-color: #0f172a; /* KOYU ARKA PLAN: Dark Blue-Gray */
            --bs-input-bg-color: #e2e8f0;
            --bs-warning: #f59e0b;
            --bs-secondary: #94a3b8;
        }

        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            color: #f1f5f9; /* Sayfanın genel metin rengini beyaza çektik */
            overflow-x: hidden; /* X eksenindeki (yatay) kaydırmayı gizler */
        }
        
        /* Arka Plan Efekti (soft-bg) - KOYU TEMA İÇİN GÜNCELLENDİ */
        .soft-bg {
            background-color: var(--bs-soft-bg-color);
            /* Çok ince bir desen/noise ekleyelim */
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23273145' fill-opacity='0.2' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
            min-height: 100vh;
        }

        /* Header Arka Planı - Site Uyumu İçin Koyu Gradient */
        .header-soft-dark {
            /* Koyu indigo tonlarından yumuşak bir geçiş */
            background: linear-gradient(to right, #0f172a, #080f1f); 
       
            /* Hafif bir gölge efekti */
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5); 
            padding-bottom: 4rem; 
            position: relative; 
            z-index: 50; 
            border-bottom: 1px solid rgba(67, 56, 202, 0.3); /* Mor aksanlı ince çizgi */
        }

        .script-logo {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1;
            color: white;
        }
        
        /* HEADER NAV LİNK DÜZELTMESİ (Görünürlük ve Hover) */
        .navbar-nav .nav-link {
            transition: color 0.3s ease; 
            color: rgba(255, 255, 255, 0.75) !important; /* Başlangıçta hafif soluk beyaz */
        }
        .navbar-nav .nav-link:hover {
            color: white !important; /* Hover'da tamamen beyaz olsun */
        }
        
        /* Giriş Çubuğu (login-bar-v5) arkaplan rengi düzeltmesi */
        .login-bar-v5 {
            background: #1e293b; /* Koyu temaya uygun arka plan */
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(3, 3, 3, 0.5); /* Gölgeyi belirginleştirdik */
            width: 100%;
            align-items: stretch; 
        }

        /* Modern Kart Gölgesi (modern-shadow) - Koyu Tema Kontrastı */
        .modern-shadow {
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(67, 56, 202, 0.3); /* Açık çerçeveyi koyu ve primary renge çevirdik */
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        /* Yarı Dışarıda Görünüm İçin Negatif Marj (GİRİŞ ÇUBUĞU ÜST BOŞLUK AYARI) */
        .mt-negative-1 {
            margin-top: -2rem !important; 
        }

        /* Görünürlüğü garanti eden z-index */
        .z-top-level {
            z-index: 51 !important;
        }

        /* Giriş Alanı Stili (input-field-v5) */
        .input-field-v5 {
            background-color: var(--bs-input-bg-color);
            border: none;
            border-radius: 8px;
            color: #1f2937;
            padding: 1rem 1rem; 
            font-weight: 500;
            transition: all 0.3s ease;
            height: 100%; 
            display: flex; 
            align-items: center;
        }
        
        /* ======================================= */
        /* BUTONLAR: Bağlan (Mor) ve Eski Sürüm (Turuncu) Ayrıldı - KULLANICI İSTEĞİNE GÖRE GÜNCELLENDİ */
        /* ======================================= */

        /* BAĞLAN Butonu Stili (Temel Mor Renk: --bs-primary) */
        .btn-amber {
            background-color: var(--bs-primary); /* Mor */
            color: white;
            font-weight: 700;
            /* YENİ: Modern Asimetrik Radius ve Gölge */
            border-radius: 1rem 3rem 1rem 3rem !important; /* Dış Köşegen Vurgu */
            box-shadow: 0 4px 15px rgba(67, 56, 202, 0.5); /* Mor Gölge */
            border: none;
            text-transform: uppercase;
            transition: none; /* Hover olmasın isteği için tüm geçişleri kaldırıldı */
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* YENİ: Hover Efektini Kaldır */
        .btn-amber:hover {
            background-color: var(--bs-primary) !important; /* Mor Rengi Sabit Tut */
            transform: none !important; /* Kalkma efekti kaldırıldı */
            box-shadow: 0 4px 15px rgba(67, 56, 202, 0.5) !important; /* Gölgeyi Sabit Tut */
        }

        /* ESKİ SÜRÜM Butonu Stili (Farklı Renk: --bs-amber) */
        .btn-old-version {
            background-color: var(--bs-amber); /* Turuncu */
            color: #1f2937; /* Koyu metin rengi */
            font-weight: 700;
            /* YENİ: Ters Asimetrik Radius ve Belirgin Turuncu Gölge */
            border-radius: 3rem 1rem 3rem 1rem !important; /* İç Köşegen Vurgu */
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.7);
            border: 1px solid var(--bs-amber);
            transition: none; /* Hover olmasın isteği için tüm geçişleri kaldırıldı */
        }

        /* YENİ: Hover Efektini Kaldır */
        .btn-old-version:hover {
            background-color: var(--bs-amber) !important; /* Turuncu Rengi Sabit Tut */
            color: #1f2937 !important; /* Metin rengi sabit */
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.7) !important; /* Gölgeyi Sabit Tut */
            transform: none !important;
        }
        
        /* ======================================= */
        /* AKTİVİTE LOG TASARIMI (SOL KART) */
        /* ======================================= */

        /* Aktivite Kartı */
        .activity-card { 
            background: linear-gradient(145deg, #1f2937, #111827);
            border-radius: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            color: white;
            min-height: 480px;
            position: relative; 
        }

        /* Aktivite Başlığı Alt Çizgisi */
        .activity-header-divider {
            height: 3px;
            background: linear-gradient(to right, var(--bs-warning), transparent);
            width: 80px;
            margin-top: 5px;
            border-radius: 999px;
        }

        /* Aktivite Listesi Konteyneri (Dikey Çizgi) */
        #activity-list {
            position: relative;
            border-left: 1px dashed rgba(255, 255, 255, 0.2); 
            padding-left: 1.5rem !important; 
        }

        /* Aktivite Öğesi Stili */
        .activity-item {
            position: relative;
            padding: 0.5rem 0; 
            border-radius: 8px;
            transition: all 0.5s ease-out;
            line-height: 1.2; 
        }

        /* Aktivite Noktası (Çizgi Üzerinde) */
        .activity-point {
            position: absolute;
            left: -8px; 
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: 2px solid #1f2937; 
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
        }
        
        /* ======================================= */
        /* METRİK KARTI STİLİ */
        /* ======================================= */
        .stats-card-container {
            background-color: #1e293b; /* Koyu Temanın Bir Ton Açığı */
            border-radius: 1.5rem;
            padding: 1.5rem;
            margin-top: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stats-header {
            color: var(--bs-warning);
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 0.5rem 0.2rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1;
            color: var(--bs-primary); /* Primary Mor */
            text-shadow: 1px 1px 5px rgba(67, 56, 202, 0.5);
            margin-bottom: 0.2rem;
        }

        .stat-label {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--bs-secondary);
            text-transform: uppercase;
            white-space: nowrap; /* Metinlerin alt alta kaymasını engeller */
        }
        
        /* Mobil için dikey ayırıcı */
        @media (max-width: 767.98px) {
            .stat-item:nth-child(odd) {
                border-right: 1px dashed rgba(255, 255, 255, 0.1);
            }
            .stat-item:nth-child(1), .stat-item:nth-child(2) {
                border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
            }
        }

        /* Masaüstü için dikey ayırıcı */
        @media (min-width: 768px) {
            .stat-item:not(:last-child) {
                border-right: 1px dashed rgba(255, 255, 255, 0.1);
            }
        }

        /* ======================================= */
        /* RADYO PLAYER STİLİ */
        /* ======================================= */
        .radio-player-card {
            background: linear-gradient(135deg, #111827, #0f172a); 
            border-radius: 1rem;
            padding: 1rem;
            margin-top: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.4); /* Amber çerçeve */
        }

        .player-cover {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            background-color: #334155; /* Placeholder color */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .player-info {
            flex-grow: 1;
            padding-left: 1rem;
        }

        .player-control-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--bs-primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s, transform 0.1s;
            border: none;
            box-shadow: 0 2px 10px rgba(67, 56, 202, 0.8);
        }

        .player-control-btn:hover {
            background-color: #6366f1;
            transform: translateY(-1px);
        }

        /* Volume Slider Styling (For a cleaner look) */
        .volume-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 5px;
            background: #475569;
            outline: none;
            opacity: 0.8;
            transition: opacity .2s;
            border-radius: 2.5px;
        }

        .volume-slider:hover {
            opacity: 1;
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 15px;
            height: 15px;
            border-radius: 50%; 
            background: var(--bs-warning);
            cursor: pointer;
        }
        
        /* ======================================= */
        /* RADYO YAYIN AKIŞI KARTI STİLİ (SAĞ KART) */
        /* ======================================= */
        .schedule-card-container {
            background: linear-gradient(135deg, #1e293b, #111827); /* Koyu Arka Plan */
            border-radius: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            color: white;
            min-height: 480px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(67, 56, 202, 0.5); /* Primary (Mor) çerçeve */
        }
        
        /* CANLI YAYIN VURGUSU */
        .current-broadcast {
            border: 2px solid var(--bs-primary);
            background-color: #1e293b;
            border-radius: 1rem;
            padding: 1rem;
            box-shadow: 0 0 15px rgba(67, 56, 202, 0.7);
        }

        .dj-title {
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }
        
        /* AKIŞ LİSTESİ */
        .schedule-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.6rem 0;
            transition: background-color 0.3s;
        }
        .schedule-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        .schedule-item:last-child {
            border-bottom: none;
        }

        /* CANLI YAYIN PULSE EFEKTİ */
        .pulse-effect {
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7); /* Yeşil Ton */
            }
            70% {
                box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
            }
        }
        
        /* ======================================= */
        /* YENİ FOOTER TASARIMI: İÇE ÇÖKÜK (CONCAVE CURVE) - DÜZELTİLDİ */
        /* ======================================= */
        .footer-concave {
            margin-top: 0 !important; /* Negatif marjı kaldırarak bozulmayı düzelttik. */
            background-color: #1e293b !important; 
            
            /* Üst köşelere devasa yuvarlaklık vererek içe çökük curve efekti yarat */
            border-top-left-radius: 300px 30px; 
            border-top-right-radius: 300px 30px; 

            padding-top: 4rem; /* Kavis için yeterli dolgu */
            padding-bottom: 2rem; 
            
            /* Mor aksanlı yumuşak üst gölgeyi koruduk */
            
            border-top: none !important; 
            position: relative; 
            z-index: 10; 
        }

        /* Footer'a yaklaşması için son blog bölümünün altındaki boşluğu sıfırlayalım */
        #latest-blog {
            padding-bottom: 5rem; 
        }
        
        /* ======================================= */
        /* Neden Biz? Bölümü: MODERN KART TASARIMI */
        /* ======================================= */
        .feature-card-v2 {
            background: linear-gradient(135deg, #1f2937, #111827) !important; /* Koyu Gradient */
            transition: all 0.3s ease;
            border: 1px solid rgba(67, 56, 202, 0.3); /* Mor çizgi - Kart 1 default */
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .feature-card-v2:hover {
            transform: translateY(-5px) scale(1.02);
            /* Hover gölgesini kartın --bs-primary değişkenini kullanarak dinamikleştirdik */
            box-shadow: 0 10px 30px rgba(67, 56, 202, 0.4), 0 0 15px rgba(67, 56, 202, 0.6);
        }
        /* Dinamik Hover Renkleri */
        .feature-card-v2:hover[style*="--bs-primary: #f59e0b;"] {
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4), 0 0 15px rgba(245, 158, 11, 0.6);
        }
        .feature-card-v2:hover[style*="--bs-primary: #10b981;"] {
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4), 0 0 15px rgba(16, 185, 129, 0.6);
        }
        .feature-card-v2:hover[style*="--bs-primary: #0ea5e9;"] {
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4), 0 0 15px rgba(14, 165, 233, 0.6);
        }
        
        /* FARKLI RADİUS STİLLERİ (ASİMETRİK) */
        .radius-style-1 {
            border-radius: 2.5rem 0.5rem 2.5rem 0.5rem !important; /* Köşegen Asimetri */
        }
        .radius-style-2 {
            border-radius: 0.5rem 2.5rem 0.5rem 2.5rem !important; /* Ters Köşegen Asimetri */
        }
        .radius-style-3 {
            border-radius: 2.5rem 0.5rem 0.5rem 2.5rem !important; /* Sol Taraf Büyük */
        }
        .radius-style-4 {
            border-radius: 0.5rem 2.5rem 2.5rem 0.5rem !important; /* Sağ Taraf Büyük */
        }
        
        /* ======================================= */
        /* YENİ BLOG KARTLARI (Sadeleştirilmiş) */
        /* ======================================= */
        .blog-image-wrap {
            height: 200px;
            overflow: hidden;
            position: relative;
            border-bottom: 3px solid rgba(255, 255, 255, 0.1);
        }

        .blog-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .blog-meta {
            font-size: 0.85rem;
            color: var(--bs-secondary);
        }

        /* Kategori etiketi */
        .blog-category-tag {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: var(--bs-warning);
            color: #1f2937;
            padding: 0.3rem 0.8rem;
            /* İstenen 6px radius değeri */
            border-radius: 6px; 
            font-weight: 700;
            z-index: 10;
        }
        
        /* ======================================= */
        /* DİĞER STİLLER (Koyu Tema Uyumu) */
        /* ======================================= */
        
        /* Genel renk düzeltmeleri */
        .bg-white, .card {
            background-color: #1e293b !important; 
            color: white;
        }

        .text-dark {
            color: #f1f5f9 !important; 
        }
        .text-secondary {
            color: #94a3b8 !important; 
        }
        footer a.text-primary {
             color: var(--bs-indigo-gradient-end) !important;
        }
        
        /* Ek Stiller */
        .fw-ultra-bold { font-weight: 900 !important; }
        
        .text-shadow-md { text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3); }
        .text-warning.text-shadow-md { text-shadow: 1px 1px 5px rgba(245, 158, 11, 0.8), 0 0 15px rgba(245, 158, 11, 0.5); }
        .text-primary.text-shadow-md { text-shadow: 1px 1px 5px rgba(67, 56, 202, 0.8), 0 0 15px rgba(67, 56, 202, 0.5); }
        