/* Videolu arka plan */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Video'nun ekran boyutuna orantÄ±lÄ± olarak doldurmasÄ±nÄ± saÄŸlar */
  z-index: -1; /* Video'nun sayfa iÃ§eriÄŸinin arkasÄ±nda gÃ¶rÃ¼nmesini saÄŸlar */
  pointer-events: none; /* Video'nun tÄ±klanmasÄ±nÄ± engeller */
}

body {
  background: none; /* Görseli kaldırıyoruz çünkü video kullanıyoruz */
  text-shadow: 1px 1px 1px #000;
  color: #c1c1c1;
}

body#livebroadcast {
  background: none; /* Aynı şekilde buradaki görseli de kaldırıyoruz */
}
/* Sayfa genelinde imleci değiştirme */
body {
    cursor: url('../img/Cursor_2.cur'), auto; /* Kendi kursor dosyanızı doğru yolla kullanın */
}

/* Bağlantılara özel imleç */
a, img a {
    cursor: url('../img/Cursor_4.cur'), auto; /* Linklerde farklı bir imleç */
}


.smoke {
    position: absolute;
    z-index: -9999;
    left: 0;
    right: 0;
    top: 261px;
	opacity: 0.7;
    height: 484px;
    width: 100%;
    background-image: url(../img/smoke.png);
    background-position: left top;
    background-repeat: repeat-x;
    -webkit-animation: 20s linear infinite forwards smoke;
    animation: 20s linear infinite forwards smoke
}
.specialhvr:hover{
	filter: brightness(1.2);	
}
@-webkit-keyframes smoke {
    0% {
        background-position: left -1920px top
    }
    100% {
        background-position: left 1920px top
    }
}
@keyframes smoke {
    0% {
        background-position: left -1920px top
    }
    100% {
        background-position: left 1920px top
    }
}
.highlight {
    width: 731px;
    height: 480px;
    position: absolute;
    left: 232px;
    top: 438px;
    text-align: center;
    -webkit-animation: 10s linear infinite highlight;
    animation: 10s linear infinite highlight;
    z-index: 17
}

