/* 1. KUTUCUK TASARIMI */
.hdr-navigation-link-bc {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    background: #111111 !important; 
    border: 1px solid #1f1f1f !important; 
    border-radius: 6px !important; 
    margin: 0 4px !important; 
    padding: 10px 18px !important; 
    overflow: hidden !important; 
    z-index: 1 !important;
}
/* 2. NEON ÜST ÇİZGİ (LAZER) */
.hdr-navigation-link-bc::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 3px !important;
    background: #ff0000 !important;
    box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000 !important; /* Gerçek Neon Parlaması */
    animation: ustLazer 2s linear infinite !important;
    z-index: 99 !important;
}
/* 3. NEON ALT ÇİZGİ (LAZER) */
.hdr-navigation-link-bc::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    right: -100% !important;
    width: 100% !important;
    height: 3px !important;
    background: #ff0000 !important;
    box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000 !important;
    animation: altLazer 2s linear infinite !important;
    animation-delay: 1s !important;
    z-index: 99 !important;
}
@keyframes ustLazer {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes altLazer {
    0% { right: -100%; }
    100% { right: 100%; }
}
* Sağlayıcılar Listesi Siyah Tema - Eklendi */
.casino-category-providers,
.casino-category-providers.opened,
.casino-providers-list {
    background-color: #000000 !important;
    color: #ffffff !important;
}
/* Sağlayıcı Kartları */
.casino-providers-list-item {
    background-color: #111111 !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
}
/* Fareyle Üzerine Gelindiğinde (Hover) */
.casino-providers-list-item:hover {
    background-color: #222222 !important;
    border-color: #1ba92d !important;
}
/* İçerikteki başlık ve metinler */
.casino-category-providers * {
    color: #ffffff !important;
}
/* KIRMIZI LAZER DESKTOP */
.nav-content-bc {
    background: 
        linear-gradient(90deg, 
            transparent 0%, transparent 40%, 
            rgba(255,0,0,0.2) 44%, rgba(255,0,0,0.6) 48%, 
            rgba(255,100,100,0.9) 50%, 
            rgba(255,0,0,0.6) 52%, rgba(255,0,0,0.2) 56%, 
            transparent 60%, transparent 100%),
        rgb(0, 12, 36) !important;
    background-size: 300% 100%, 100% 100% !important;
    animation: peraLaser 2.5s infinite linear !important;
}
@keyframes peraLaser {
    0% { background-position: 150% center, center center; }
    100% { background-position: -50% center, center center; }
}