
/* Ana Konteyner - Yükseklik dengelendi, taşmalar gizlendi */
.b-premium-ticker-container {
    width: 100%;
    height: 54px; /* Yükseklik 48'den 54'e çıkarılarak nefes aldırıldı */
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-top: 2px solid #00d2ff;
    border-bottom: 2px solid #0066ff;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
    margin-bottom: 25px;
    box-sizing: border-box;
}

/* 🔴 Sabit Sol Başlık - Taşmayı önleyen katman (z-index ve katı arka plan) */
.b-ticker-static-head {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #0d0d11; /* Arkadan gelen yazıları tamamen kapatması için mat koyu ton */
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10; /* Yazıların kesinlikle üstünde kalır */
    box-shadow: 8px 0 15px rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Canlı Yayın Noktası (Gerçekçi Neon Efekti) */
.live-pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ff0055;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0055, 0 0 20px #ff0055;
    animation: realPulse 1s infinite ease-in-out;
}

@keyframes realPulse {
    0% { transform: scale(0.9); opacity: 0.5; box-shadow: 0 0 4px #ff0055; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 12px #ff0055, 0 0 20px #ff0055; }
    100% { transform: scale(0.9); opacity: 0.5; box-shadow: 0 0 4px #ff0055; }
}

.live-text {
    color: #00d2ff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.5);
    white-space: nowrap;
}

/* 🏃 Kayan İçerik Alanı */
.b-ticker-scroll-floor {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 150px; /* Sol başlığın genişliği kadar boşluk bırakıyoruz ki yazılar oradan başlasın */
}

/* Hareket Eden Ana Hat */
.b-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 30px; /* Kapsüller arası net boşluk */
    animation: premiumScroll 30s linear infinite;
}

.b-ticker-track:hover {
    animation-play-state: paused;
    cursor: pointer;
}

/* 💎 Yeni Nesil Kapsül Tasarımı */
.b-ticker-capsule {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05); /* Şeffaf modern cam efekti */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 12px;
    border-radius: 5px;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}
.b-ticker-capsule:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #00d2ff;
}

/* Kapsül İçi Detay Renkleri */
.capsule-user {
    color: #00d2ff;
    font-weight: 700;
}
.capsule-user i {
    margin-right: 4px;
    font-size: 12px;
}

.capsule-divider {
    margin: 0 10px;
    color: #ff0055;
    font-weight: bold;
}

.capsule-track-name {
    font-weight: 600;
}

.capsule-user-msg {
    margin-left: 8px;
    color: #aaaaaa;
    font-style: italic;
    font-size: 12.5px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 8px;
}

/* Boş Durum Tasarımı */
.b-ticker-empty-state {
    padding-left: 20px;
    font-size: 13px;
    color: #888;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
}
.b-ticker-empty-state i {
    color: #ff9800;
}

/* Sonsuz Döngü CSS Animasyonu */
@keyframes premiumScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); } /* Tam yarıda sıçramadan başa döner */
}
.dikey-istek-alani {
    position: fixed;
    right: 0;          /* Ekranın en sağına yapıştırır */
    top: 50%;          /* Ekranı dikeyde tam ortalar */
    transform: translateY(-50%); /* Tam ortalamayı eşitlemek için yukarı kaydırır */
    z-index: 9999;     /* Sayfadaki diğer tüm elementlerin üstünde görünmesini sağlar */
}

.dikey-istek-alani .b-radyo-modal-trigger-btn {
    display: flex;
    flex-direction: column; /* İkon ve yazıyı alt alta dizer */
    align-items: center;
    justify-content: center;
    background-color: #ff9800; /* İstediğin renk kodu ile değiştirebilirsin (Örn: #ff9800 turuncu) */
    color: #ffffff;
    border: none;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.2); /* Arkasına hafif şık bir gölge verir */
    border-radius: 8px 0 0 8px; /* Sadece sol köşeleri oval yapar, sağ taraf ekrana sıfır kalır */
    transition: all 0.3s ease;
    
    /* 📌 YAZIYI DİKEY YAPMA SİHİRLİ KODLARI */
    writing-mode: vertical-rl; /* Metni yukarıdan aşağıya dikey yazar */
    text-transform: uppercase;
}

/* Butona mouse ile gelindiğinde (Hover efekti) */
.dikey-istek-alani .b-radyo-modal-trigger-btn:hover {
    background-color: #e65100; /* Üzerine gelince biraz daha koyulaşır */
    padding-right: 18px;       /* Hafif dışa doğru uzama efekti verir */
    color: #fff;
}

/* Butonun içindeki ikona özel boşluk */
.dikey-istek-alani .b-radyo-modal-trigger-btn i {
    margin-bottom: 8px; /* Dikey yapıda ikon üstte kalacağı için altına boşluk verdik */
    transform: rotate(90deg); /* Kağıt uçak ikonunu dikey yazıya göre estetik durması için 90 derece döndürür */
    font-size: 14px;
}
.radyo-toast-container { position: fixed; top: 20px; right: 20px; z-index: 99999; }
.radyo-custom-toast { min-width: 300px; background-color: #333; color: #fff; padding: 15px 20px; border-radius: 8px; margin-bottom: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 500; animation: toastFadeIn 0.4s ease-in-out; }
.radyo-custom-toast.toast-success { background-color: #2ec946; border-left: 5px solid #1a8a2b; }
.radyo-custom-toast.toast-error { background-color: #f44336; border-left: 5px solid #b71c1c; }
.radyo-custom-toast.toast-warning { background-color: #ff9800; border-left: 5px solid #e65100; }
.toast-close-btn { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; padding: 0 0 0 10px; opacity: 0.7; }
.toast-close-btn:hover { opacity: 1; }
@keyframes toastFadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.unselectable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    letter-spacing: 5px;
}
.tv1-register-link{color:#111827;font-weight:700;text-decoration:none;position:relative;display:inline-block;background:linear-gradient(90deg,#111827,#6366f1,#111827);background-size:200% auto;-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;animation:tv1RegShine 3s linear infinite}
@keyframes tv1RegShine{0%{background-position:0% center}100%{background-position:200% center}}
.tv1-register-link:hover{-webkit-text-fill-color:#111827;animation:none;text-decoration:underline}
.b-player-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
}
.b-player-left-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.b-player-controls-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-store .small-text{font-size:.78rem !important}.btn-alt-version{font-size:.85rem !important}.chat-bubble-sm{font-size:.85rem !important}.blog-date{font-size:.82rem !important}.cat-count{font-size:.85rem !important}.popular-date{font-size:.85rem !important}.blog-category{font-size:.85rem !important}.read-more{font-size:.9rem !important}.section-tag{font-size:.9rem !important}.authorx span{font-size:.9rem !important}.sy-rank,.sy-star{font-size:.72rem !important}.wp-caption .wp-caption-text{font-size:.85rem !important}@media(max-width:767px){.sy-label,.sy-name{font-size:.82rem !important}}small,.small{font-size:.85em !important}
.b-audio-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    width: 30px;
}
.b-eq-bar {
    display: block;
    width: 3px;
    height: 3px;
    background: linear-gradient(to top, #6366f1, #a855f7);
    border-radius: 2px;
    transition: height 0.15s ease;
}

/* Müzik oynatılırken çubukların ritimle hızlanma animasyonu */
.b-audio-equalizer.v-animating .b-eq-bar {
    animation: b-eq-bounce 1s ease-in-out infinite alternate;
}
.b-audio-equalizer.v-animating .b-eq-bar:nth-child(1) { animation-duration: 0.6s; animation-delay: 0.1s; }
.b-audio-equalizer.v-animating .b-eq-bar:nth-child(2) { animation-duration: 0.8s; animation-delay: 0.3s; }
.b-audio-equalizer.v-animating .b-eq-bar:nth-child(3) { animation-duration: 0.5s; animation-delay: 0.0s; }
.b-audio-equalizer.v-animating .b-eq-bar:nth-child(4) { animation-duration: 0.7s; animation-delay: 0.4s; }
.b-audio-equalizer.v-animating .b-eq-bar:nth-child(5) { animation-duration: 0.9s; animation-delay: 0.2s; }

@keyframes b-eq-bounce {
    0% { height: 3px; }
    100% { height: 20px; }
}

/* 🎚️ SES KISMA / AÇMA SÜRGÜSÜ TASARIMI */
.b-volume-wrapper {

    display: flex;

    align-items: center;

    gap: 6px;

    background: rgba(0, 0, 0, 0.3);

    padding: 4px 8px;

    border-radius: 20px;

    transition: all 0.2s ease;

}
.b-volume-mute-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.b-volume-mute-btn:hover {
    color: #ffffff;
}
.b-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: width 0.2s ease;
}
/* Mouse ile slider üzerine gelindiğinde genişleme efekti (Şık durması için mobil uyumlu) */
.b-volume-wrapper:hover .b-volume-slider {
    width: 80px;
}
.b-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #818cf8;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
    transition: transform 0.1s;
}
.b-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    background: #6366f1;
}
.b-footer-context {
    background: #14151b;
    position: relative;
    padding-top: 60px;
    padding-bottom: 20px;
    font-family: inherit;
    color: #b0b3b8;
    overflow: hidden;
}
.b-footer-wave-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
/* Sosyal Medya Alanı Kapsayıcısı */
.sy-navbar-socials {
    display: flex;
    align-items: center;
    gap: 8px; /* Butonlar arası boşluk (Bootstrap gap-1 karşılığı) */
}

/* Ortak Buton Özellikleri */
.nav-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%; /* Yuvarlak butonlar */
    background-color: #f3f4f6; /* Varsayılan hafif gri arka plan */
    color: #6b7280; /* Varsayılan gri ikon rengi */
    transition: all 0.3s ease; /* Renk geçiş yumuşaklığı */
}

/* Butonun İçindeki SVG Boyutu */
.nav-social svg {
    width: 18px;
    height: 18px;
}

/* --- HOVER (ÜZERİNE GELİNCE) MARKA RENKLERİ --- */

/* Facebook */
.nav-social.is-facebook:hover {
    background-color: #1877f2;
    color: #ffffff;
}

/* Twitter / X */
.nav-social.is-twitter:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Instagram */
.nav-social.is-instagram:hover {
    background-color: #e1306c;
    color: #ffffff;
}
/* Instagram çizgisel SVG olduğu için hover durumunda çizgi rengini de beyaz yapıyoruz */
.nav-social.is-instagram:hover svg {
    stroke: #ffffff; 
}

/* Whatsapp */
.nav-social.is-whatsapp:hover {
    background-color: #25d366;
    color: #ffffff;
}
.b-footer-wave-wrap svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 45px;
    transform: rotate(180deg);
}
.b-wave-fill {
    fill: #0d0e12; /* Sitenin ana arka plan rengine göre uyum sağlar */
}

/* Sütun Yapıları */
.b-box-title {
    font-size: 16px;
    font-weight: 700;
    color: #e4e6eb;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.b-box-title i {
    color: #6366f1;
}
.b-brand-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #b0b3b8;
    margin-bottom: 20px;
}

/* Mağaza Butonları */
.b-app-download-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.b-app-store-btn, .b-google-play-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}
.b-app-store-btn:hover, .b-google-play-btn:hover {
    background: #6366f1;
    border-color: #6366f1;
    color: #ffffff;
}
.b-app-store-btn i, .b-google-play-btn i {
    font-size: 20px;
}
.b-app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.b-app-btn-text span {
    font-size: 10px;
    color: #9ca3af;
}
.b-app-store-btn:hover .b-app-btn-text span, 
.b-google-play-btn:hover .b-app-btn-text span {
    color: rgba(255, 255, 255, 0.8);
}
.b-app-btn-text strong {
    font-size: 12px;
    font-weight: 700;
}

/* Menü Linkleri */
.b-footer-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.b-footer-menu-links li a {
    color: #b0b3b8;
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.b-footer-menu-links li a i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    transition: transform 0.2s;
}
.b-footer-menu-links li a:hover {
    color: #6366f1;
}
.b-footer-menu-links li a:hover i {
    transform: translateX(3px);
    color: #6366f1;
}

/* 📻 Radyo Player Kart Tasarımı */
.b-radyo-container-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.b-radyo-row-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
}
.b-space-between-align {
    justify-content: flex-start;
}
.b-radyo-player-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.b-radyo-pulse-icon {
    width: 30px;
    height: 30px;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.b-pulse-animation {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    animation: b-pulse-frame 1.8s infinite;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}
@keyframes b-pulse-frame {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.b-radyo-text-details {
    display: flex;
    flex-direction: column;
}
.b-radyo-small-tag {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
}
.b-radyo-main-title {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}
.b-radyo-play-controller-btn {
    width: 32px;
    height: 32px;
    background: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
    font-size: 11px;
}
.b-radyo-play-controller-btn:hover { transform: scale(1.08); }
.b-radyo-play-controller-btn.playing { background: #ef4444; }

.b-radyo-modal-trigger-btn {
    width: 100%;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: opacity 0.2s;
}
.b-radyo-modal-trigger-btn:hover { opacity: 0.95; }

/* Alt Bar Haklar Alanı */
.b-footer-sub-bar {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
}
.b-copyright-text a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
.b-security-badges {
    display: flex;
    gap: 10px;
}
.b-badge-cell {
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    color: #e4e6eb;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.b-badge-cell i { color: #6366f1; }
.b-legal-links a { color: #b0b3b8; text-decoration: none; }
.b-legal-links a:hover { color: #ffffff; }
.b-protected-mail { color: #6366f1; font-weight: 600; cursor: pointer; margin-left: 5px; }

/* 🎭 MODAL (İSTEK PENCERESİ) STİLLERİ */
.b-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(8, 9, 12, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.25s ease;
}
.b-modal-overlay.open { opacity: 1; visibility: visible; }
.b-modal-wrapper {
    background: #1a1b23;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%; max-width: 420px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transform: scale(0.85);
    transition: transform 0.25s ease;
    overflow: hidden;
}
.b-modal-overlay.open .b-modal-wrapper { transform: scale(1); }
.b-modal-top-bar {
    background: rgba(255, 255, 255, 0.01);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex; align-items: center; justify-content: space-between;
}
.b-modal-top-bar h3 { margin: 0; font-size: 15px; color: #ffffff; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.b-modal-top-bar h3 i { color: #6366f1; }
.b-modal-exit-btn { background: transparent; border: none; color: #9ca3af; font-size: 22px; cursor: pointer; line-height: 1; }
.b-modal-main-fields { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.b-input-layout { display: flex; flex-direction: column; gap: 5px; }
.b-input-layout label { font-size: 12px; color: #9ca3af; font-weight: 600; }
.b-input-layout input, .b-input-layout textarea {
    background: #111217; border: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff; padding: 10px; border-radius: 6px; font-size: 13px; outline: none;
}
.b-input-layout input:focus, .b-input-layout textarea:focus { border-color: #6366f1; }
.b-modal-bottom-actions { padding: 12px 20px; background: rgba(0, 0, 0, 0.1); border-top: 1px solid rgba(255, 255, 255, 0.04); display: flex; justify-content: flex-end; gap: 10px; }
.b-action-close-btn { background: rgba(255, 255, 255, 0.04); color: #d1d5db; border: none; padding: 8px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; }
.b-action-send-btn { background: #6366f1; color: #ffffff; border: none; padding: 8px 18px; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; }
.b-action-send-btn:hover { background: #4f46e5; }

/* 🚀 YUKARI ÇIK BUTONU STİLİ */
.b-scroll-top-action-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}
.b-scroll-top-action-btn.show {
    opacity: 1;
    visibility: visible;
}
.b-scroll-top-action-btn:hover {
    background: #4f46e5;
    transform: translateY(-3px);
}

/* Responsive Kontroller */
@media (max-width: 768px) {
    .b-footer-sub-bar { flex-direction: column; text-align: center; }
    .b-scroll-top-action-btn { bottom: 15px; right: 15px; width: 36px; height: 36px; }
}
/* Toast Bildirim Kapsayıcısı (JS'de oluşturulan container için) */
#tv1-signup-toast-container {
    position: fixed;
    bottom: 28px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    pointer-events: none; /* Tıklamaları engeller, arkadaki butonlara basılabilir */
    max-width: 320px;
}

/* Ana Bildirim Kutusu */
.tv1-signup-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 11px 18px 11px 13px;
    min-width: 250px;
    max-width: 310px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.18), 
                0 4px 12px -4px rgba(15, 23, 42, 0.05);
    pointer-events: auto; /* Bildirim kutusunun kendisine dokunulabilir */
    position: relative;
    overflow: hidden;
    
    /* İlk Doğuş Hali (Görünmez ve soldan kaymaya hazır) */
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Sol Taraftaki Yeşil Canlılık Çizgisi */
.tv1-signup-toast::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #10b981, #059669);
    border-radius: 4px 0 0 4px;
}

/* JS İle Ekrana Geldiğinde Devreye Giren Klas */
.tv1-signup-toast.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* JS İle Kapanırken Devreye Giren Klas */
.tv1-signup-toast.hide {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Kullanıcı Profil Resmi (Avatar) */
.tv1-signup-toast-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px -2px rgba(15, 23, 42, 0.15);
    flex-shrink: 0;
}

/* Yazı Alanı Kapsayıcısı */
.tv1-signup-toast-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0; /* Uzun isimlerin taşmasını önler */
}

/* Kullanıcı Adı */
.tv1-signup-toast-name {
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bildirim Mesajı (Sohbete giriş yaptı vb.) */
.tv1-signup-toast-msg {
    color: #475569;
    font-size: 0.78rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* "Sohbete giriş yaptı" yazısının yanındaki yeşil canlılık pırpırı */
.tv1-signup-toast-msg::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* 📱 Mobil Cihazlar İçin Uyumluluk Ayarı */
@media (max-width: 520px) {
    #tv1-signup-toast-container {
        left: 10px;
        bottom: 85px; /* Mobil alt menü barı varsa üstünde kalması için */
        max-width: calc(100vw - 20px);
    }
    .tv1-signup-toast {
        min-width: 0;
        width: calc(100vw - 30px);
        max-width: 290px;
        padding: 9px 14px 9px 11px;
    }
    .tv1-signup-toast-avatar {
        width: 36px;
        height: 36px;
    }
    .tv1-signup-toast-name {
        font-size: 0.85rem;
    }
    .tv1-signup-toast-msg {
        font-size: 0.74rem;
    }
}
.gallery-section-tag {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}
.gallery-section-title {
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 24px;
}

/* Slider Ana Çerçeve */
.gallery-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Görünen Alan (Taşanları gizler ve kaydırmayı kusursuzlaştırır) */
.gallery-viewport {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

/* Kartların Yatayda Dizildiği Şerit */
.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Kart Genişlikleri (Masaüstünde yan yana tam sığacak şekilde dinamikleşir) */
.gallery-card {
    position: relative;
    flex: 0 0 calc(33.333% - 13.34px); /* Masaüstünde yan yana net 3 adet listeler */
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    box-sizing: border-box;
}

.gallery-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-card-bg {
    transform: scale(1.08);
}

.gallery-card-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.gallery-photo-name {
    margin: 0 0 6px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}
.gallery-photo-desc {
    margin: 0 0 15px 0;
    color: #b0b3b8;
    font-size: 13px;
    line-height: 1.4;
}

.gallery-photo-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.gallery-photo-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.gallery-photo-author span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.gallery-card-meta {
    position: absolute;
    top: 20px;
    right: 20px;
}
.gallery-photo-tag {
    background: #6366f1;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Navigasyon Okları */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}
.gallery-arrow:hover {
    background: #6366f1;
    border-color: #6366f1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
}
.gallery-arrow-left { left: -22px; }
.gallery-arrow-right { right: -22px; }

/* 📱 RESPONSIVE - MOBİL VE TABLET AYARLARI */
@media (max-width: 1024px) {
    .gallery-card {
        flex: 0 0 calc(50% - 10px); /* Tabletlerde yan yana 2 adet */
    }
}

@media (max-width: 768px) {
    .gallery-viewport {
        overflow: visible;
    }
    .gallery-track {
        flex-direction: column; /* Mobilde alt alta akış kuralı */
        transform: none !important;
        gap: 20px;
    }
    .gallery-card {
        flex: 0 0 100%;
        height: 320px;
    }
    .gallery-arrow {
        display: none;
    }
}
.chat-blog-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Esnek Grid Sistemi - Büyük Ekranlarda Yan Yana 3 Adet */
.chat-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

/* Profesyonel Blog Kart Tasarımı */
.chat-blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Karta Hover Yapıldığında Yumuşak Yükselme Efekti */
.chat-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Görsel Alanı */
.chat-blog-image-area {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Altın Oran Görüntü Oranı */
    overflow: hidden;
    background: #f4f6f9;
}

.chat-blog-image-area img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chat-blog-card:hover .chat-blog-image-area img {
    transform: scale(1.06);
}

/* Tarih Rozeti */
.chat-blog-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

/* Kart İçerik Alanı */
.chat-blog-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Başlık */
.chat-blog-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.chat-blog-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s;
}

.chat-blog-title a:hover {
    color: #ff6b6b; /* Sohbet sitenizin ana rengine göre değiştirebilirsiniz */
}

/* Kısa Açıklama Metni */
.chat-blog-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* Kart Alt Alanı (Yazar ve Buton) */
.chat-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f1f2f6;
}

/* Yazar Profil Alanı */
.chat-blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.chat-author-name {
    font-size: 13px;
    font-weight: 600;
    color: #34495e;
}

/* Yuvarlak Ok Butonu */
.chat-blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f1f2f6;
    color: #2c3e50;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.chat-blog-card:hover .chat-blog-btn {
    background: #ff6b6b;
    color: #fff;
}

/* Boş Yazı Uyarısı */
.chat-blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #95a5a6;
    font-style: italic;
}

/* --- RESPONSIVE (EKRAN DARALMA) AYARLARI --- */

/* Tablet ve Orta Boy Ekranlar (Yan yana 2 Tane) */
@media (max-width: 992px) {
    .chat-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobil Cihazlar (Alt alta 1 Tane) */
@media (max-width: 768px) {
    .chat-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .chat-blog-title {
        font-size: 16px;
    }
}

/* --- KUSURSUZ SAYFALAMA (PAGINATION) STİLLERİ --- */
.chat-pagination-wrapper {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.chat-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    padding: 6px 10px;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-page-item {
    margin: 0 3px;
}

.chat-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.chat-page-item a.chat-page-link:hover {
    background: #f1f2f6;
    color: #2c3e50;
}

/* Aktif Sayfa */
.chat-page-item.chat-active .chat-page-link {
    background: #ff6b6b;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

/* Tıklanamayan Pasif Alanlar */
.chat-page-item.chat-disabled .chat-page-link {
    color: #d2d7d9;
    cursor: not-allowed;
}
.radio-dark-tab-wrapper {
    width: 100%;
    background: transparent; 
    border-radius: 16px;
    padding: 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

.radio-dark-tab-nav {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.06); 
    padding: 6px;
    border-radius: 30px;
    margin-bottom: 25px;
    gap: 5px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radio-dark-tab-btn {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 10px 5px;
    font-size: 14px;
    font-weight: 700;
    color: #b0b3b8;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.25s ease;
    white-space: nowrap;
    min-width: 45px;
}

.radio-dark-tab-btn:hover {
    color: red;
    background: rgba(255, 255, 255, 0.05);
}

.radio-dark-tab-btn.active {
    background: #ff6b6b;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.radio-dark-tab-content {
    display: none;
}
.radio-dark-tab-content.active {
    display: block;
    animation: fadeInDarkTab 0.4s ease-in-out;
}

@keyframes fadeInDarkTab {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.radio-dark-flow-card {
    background: rgba(255, 255, 255, 0.04); 
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
}

.radio-dark-flow-card:hover {
    transform: translateY(-4px);
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.radio-dark-flow-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.radio-dark-flow-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.radio-dark-flow-time {
    font-size: 11px;
    font-weight: 700;
    color: #ff8787;
    background: rgba(255, 107, 107, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    width: fit-content;
    letter-spacing: 0.5px;
}

.radio-dark-flow-title {
    margin: 3px 0 1px 0;
    font-size: 16px;
    font-weight: 700;
    color: #e4e6eb;
}

.radio-dark-flow-dj {
    margin: 0;
    font-size: 13px;
    color: #b0b3b8;
}

.radio-no-stream {
    color: #b0b3b8;
    font-size: 14px;
    font-style: italic;
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px dashed rgba(255,255,255,0.1);
}

.radio-dark-flow-type {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #e4e6eb;
}
.type-dark-arabesk, .type-dark-damar { background: rgba(255, 118, 117, 0.15); color: #ff7675; }
.type-dark-pop { background: rgba(116, 185, 255, 0.15); color: #74b9ff; }
.type-dark-nostalji { background: rgba(85, 239, 196, 0.15); color: #55efc4; }
.type-dark-siir { background: rgba(162, 155, 254, 0.15); color: #a29bfe; }

/* --- 📱 RESPONSIVE & ALT ALTA GELME AYARI --- */
@media (max-width: 1024px) {
    .radio-dark-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .radio-dark-flow-grid {
        grid-template-columns: 1fr; /* Mobilde veya dar panellerde kartlar kesinlikle alt alta dizilir */
        gap: 15px;
    }
    .radio-dark-tab-btn {
        padding: 8px 2px;
        font-size: 12px;
    }
}




