/* Tema Renkleri ve CSS Değişkenleri */
:root {
    --main-color: #d3d321; /* Ana kırmızı renk */
    --secondary-color: #02c7e1; /* İkincil mavi renk */
    --background-color: #111619; /* Arka plan rengi */
    --text-color: #ffffff; /* Metin rengi */
    --light-grey: #c7c7c7; /* Açık gri renk */
    --scrollbar-thumb-color: var(--main-color); /* Kaydırma çubuğu rengi */
    --scrollbar-track-color: var(--light-grey); /* Kaydırma çubuğu arka plan rengi */
}

.selected {
    border: .0625rem solid var(--main-color); /* Ana renk ile kenarlık */
    border-radius: 1.25rem; /* Köşeleri yuvarlak yap */
    background-color: var(--darker-grey-transparent); /* Ana rengin hafif transparan hali */
    transition: all 0.1s ease; /* Geçiş efekti */
}
/* Kaydırma çubuğu genel stil */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

/* Kaydırma çubuğu arka planı */
::-webkit-scrollbar-track {
    background: var(--scrollbar-track-color);
    border-radius: 10px;
}

/* Kaydırma çubuğu kendisi */
::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb-color);
    border-radius: 10px;
}

/* Kaydırma çubuğu üzerine gelindiğinde */
::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-color);
}


/* Container ve Genel Stil */
.container-hook {
    padding-left: 4rem;
    padding-right: 4rem;
}

ul.channel_card__list {
    display: flex;
}

ul.sc-8bd455a9-0.sc-8bd455a9-1.sc-e3a3e653-10.bNFeq.ggDQCE.kqducQ {
    justify-content: center;
    margin-top: 20px;
}

.iframe-container-hook {
    flex: 3;
}

.image-container-hook {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 450px;
}

.image-container-hook img {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
}

.container.custom-container {
    text-align: center;
    margin-bottom: 5px;
    padding-left: 10%;
    padding-right: 10%;
}

/* Bottom Bar Stil */
.bottom_bar {
    border-bottom: solid 3px var(--main-color);
    opacity: 1;
    border-radius: 12px;
    margin-top: 7px;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding: 0px 17px;
    overflow: auto;
    position: relative;
    z-index: 1;
    background: linear-gradient(to top, var(--background-color), #292929);
}

.bottom_bar a {
    text-decoration: none;
    color: var(--text-color);
    text-align: center;
    display: block;
    padding: 12px 0px;
    line-height: normal;
    transition: 0.2s;
    min-width: 75px;
    white-space: nowrap;
    opacity: .75;
}

.bottom_bar a:hover {
    opacity: 1;
    scale: 1.1;
}

.bottom_bar a div {
    font-size: 12px;
    margin-top: 5px;
    color: var(--text-color);
}

.bottom_bar li {
    position: relative;
}

.bottom_bar li a::after {
    content: '';
    width: 0;
    height: 3px;
    background-color: var(--main-color);
    position: absolute;
    left: 2%;
    bottom: 0;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    z-index: 2;
}

.bottom_bar img {
    width: 24px;
    height: 24px;
}

/* Genel Stil */
.bNFeq {
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
}

.ggDQCE {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.dTuVsT {
    color: var(--light-grey);
    font-family: var(--proxima-nova-semibold);
    padding: var(--space-large) var(--space-large) 0 var(--space-large);
}

/* NProgress Stil */
#nprogress {
    pointer-events: none;
}

#nprogress .bar {
    background: var(--secondary-color);
    position: fixed;
    z-index: 1600;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

#nprogress .peg {
    display: block;
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px var(--secondary-color), 0 0 5px var(--secondary-color);
    opacity: 1;
    transform: rotate(3deg) translate(0px, -4px);
}

#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1600;
    top: 15px;
    right: 15px;
}

#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    border: 2px solid transparent;
    border-top-color: var(--secondary-color);
    border-left-color: var(--secondary-color);
    border-radius: 50%;
    animation: nprogress-spinner 400ms linear infinite;
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Logo ve Header Stil */
.logo {
    width: 20rem;
    max-width: 500px;
    height: auto;
}

.sc-e3a3e653-11.bbJQiX img {
    width: 200px;
    height: auto;
}



/* Domain Information Stil */
.domain-information {
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    justify-content: center;
    color: var(--text-color);
    background: linear-gradient(90deg, transparent, var(--main-color) 50%, transparent);
}

.domain-information svg {
    fill: var(--text-color);
    margin-left: 10px;
    width: 16px;
    height: 16px;
}

.domain-information b {
    margin: 0 5px;
}


/* Channel Carousel Stil */
.channel-carousel {
    position: relative;
    width: 80%;
    overflow: hidden;
    margin: 0 auto; /* Bu satır elementi yatayda ortalar */
}

.channel_card__list {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    scroll-behavior: smooth;
    overflow-x: auto;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.carousel-button.prev {
    left: 0;
    z-index: 999999;
}

.carousel-button.next {
    right: 0;
}

/* Reklam ve GIF Stil */
img.reklam-alani {
    margin-top: 20px;
    width: 100%; 
    height: auto;
}

.fixed-gif {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.left-gif {
    left: 10px;
}

.right-gif {
    right: 10px;
}



/* Bottom Bar Scrollbar Stil */
.bottom_bar::-webkit-scrollbar {
    height: 5px;
}

.bottom_bar::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 5px;
}

.bottom_bar::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.bottom_bar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.bottom_bar li {
    flex: 0 0 auto;
    margin-right: 10px;
}
.jheJek {
    justify-content: center;
    display: flex
;
}


.video-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.video-container iframe {
    width: 50%;
    height: 450px;
    border: none;
}

/* Mobil cihazlar için medya sorgusu */
@media (max-width: 768px) {
    .video-container iframe {
        width: 90%;
        height: 200px; /* Mobilde daha küçük yükseklik */
    }
}

/* Mobil cihazlar için stil */
@media (max-width: 768px) {
    .mobile-only {
        display: block; /* Butonları görünür yap */
    }
}

/* Diğer cihazlar için stil */
@media (min-width: 769px) {
    .mobile-only {
        display: none; /* Butonları gizle */
    }
}

@media (min-width: 600px) {
    .dTuVsT {
        padding: var(--space-xlarge) 2.5rem 0 2.5rem;
    }
}

@media (min-width: 1200px) {
    .dTuVsT {
        padding: var(--space-content-large);
    }
}


@media (max-width: 768px) {
    .sc-e3a3e653-11.bbJQiX {
        display: flex !important;
        justify-content: center !important;
    }

    .header {
        display: flex;
        width: 100%;
        left: 50%;
        justify-content: center;
        top: 5px;
    }
}


@media only screen and (max-width: 768px) {
    .fixed-gif img {
        width: 55px;
    }

    .left-gif {
        left: 10px;
    }

    .right-gif {
        right: 10px;
    }
}

/* Mobil cihazlar için stil */
@media (max-width: 768px) {
    .mobile-only {
        display: block; /* Butonları görünür yap */
    }
}

/* Diğer cihazlar için stil */
@media (min-width: 769px) {
    .mobile-only {
        display: none; /* Butonları gizle */
    }
}

@media (min-width: 600px) {
    .dTuVsT {
        padding: var(--space-xlarge) 2.5rem 0 2.5rem;
    }
}

@media (min-width: 1200px) {
    .dTuVsT {
        padding: var(--space-content-large);
    }
}

@media (max-width: 768px) {
    .sc-e3a3e653-11.bbJQiX {
        display: flex !important;
        justify-content: center !important;
    }
    
       .header {
        display: flex
;
        width: 100%;
        left: 50%;
        justify-content: center;
        top: 5px;
    }
}

/* Mobil cihazlar için stil */
@media only screen and (max-width: 767px) {
    .domain-information {
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 13px;
    }
}

@media only screen and (max-width: 767px) {
    .logo {
       margin-top: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .ggDQCE {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    ul.channel_card__list{
        padding: 0 0px;
    }
    .channel_card__list_item {
        flex: 0 0 calc(33.33% - 10px); /* Mobilde 3 logo gözükecek şekilde ayarlıyoruz */
    }
}

@media (max-width: 768px) {
    img.reklam-alani {
        width: 100%; 
        height: auto;
    }
}