/* DUVAR YAZILARI */

.duvar_yazilari_slider {
    width: 414px;
    height: 272px;
    position: absolute;
    margin: -34px 0 0 539px;
    z-index: 1;
}


@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-20px) scale(0.85); }
    100% { opacity: 0.4; transform: translateY(0) scale(1); }
}

@keyframes glow {
    0% { text-shadow: 0px 0px 2px rgba(255, 0, 127, 0.2); }
    50% { text-shadow: 0px 0px 4px rgba(255, 0, 127, 0.4); }
    100% { text-shadow: 0px 0px 2px rgba(255, 0, 127, 0.2); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.dolma_baslik {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5em;  /* Daha küçük */
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3); /* Daha fazla saydamlık */
    gap: 2px;
    margin-top: 27px;
    margin-left: -51px;
}

.dolma_baslik span {
    opacity: 0;
    display: inline-block;
    animation: slideDown 1s ease-out forwards, glow 2s infinite alternate;
}

/* Her harfe farklı gecikme vererek şık bir kayma efekti sağladım */
.dolma_baslik span:nth-child(1) { animation-delay: 0.1s; }
.dolma_baslik span:nth-child(2) { animation-delay: 0.2s; }
.dolma_baslik span:nth-child(3) { animation-delay: 0.3s; }
.dolma_baslik span:nth-child(4) { animation-delay: 0.4s; }
.dolma_baslik span:nth-child(5) { animation-delay: 0.5s; }

/* Hover efekti: Hafif parlama ve büyüme */
.dolma_baslik:hover span {
    animation: bounce 0.4s infinite alternate, glow 1.5s infinite alternate;
    opacity: 0.6;
}


.duvar_yazilari_listele {
    width: 100%;
    height: 290px;
    position: absolute;
}

.duvar_yazilari_listele>div,
.duvar_yazilari_listele>div>div {
    width: 100%;
    height: 120px;
    position: relative;
}

/* SCP text - Mavi (Yeni: İndigo Mavisi → Açık Turkuaz) */
.text-bg-mavi {
    position: absolute;
    width: 400px;
    height: 130px;
    background: linear-gradient(to right, #3f2b96, #a8c0ff); /* İndigo Mavisi → Açık Turkuaz */
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
    overflow: hidden;
    margin-bottom: 20px;
}




.text-bg-mavi a {
    position: absolute;
    margin: 180px 0 0 35px;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.text-bg-mavi a:hover {
    color: #f7ff00; /* Hoverda renk değişikliği */
}

.text-bg-mavi .resim_cerceve {
    position: relative;
    width: 120px;
    height: 120px;
    animation: bounce 2s ease infinite;
}

.text-bg-mavi .duvar_resim {
    width: 80%; /* Eski haline getirdim (yuvarlak) */
    height: 80%; /* Eski haline getirdim (yuvarlak) */
    position: absolute;
    left: -28px;
    top: -160px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; /* Eski yuvarlak şekil */
    border: 5px solid #fff; /* Beyaz kenarlık */
    box-shadow: 0 10px 20px 0 rgba(59,7,92,.8);
    transition: transform 0.3s ease-in-out;
}

.text-bg-mavi .duvar_resim:hover {
    transform: scale(1.1); /* Hoverda büyüme efekti */
}

.text-bg-mavi .duvar_baslik {
    text-align: left;
    left: 120px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2em;
    padding: 10px 20px;
    font-style: italic;
    margin: 0px 0 0 146px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-bg-mavi .duvar_ozet {
    text-align: left;
    line-height: 1em;
    padding: 0 86px 0 0px;
    font-weight: 500;
    font-size: 0.85em;
    top: 42px;
    color: #fff;
    margin: -14px 0 0 129px;
}

/* SCP text - Kırmızı (Yeni: Bordo → Yanık Turuncu) */
.text-bg-kirmizi {
    position: absolute;
    width: 400px;
    height: 130px;
    margin-top: 23px;
    right: 14px;
    background: linear-gradient(to right, #6d071a, #ff914d); /* Bordo → Yanık Turuncu */
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: slideInRight 1s ease-out;
}

.text-bg-kirmizi a {
    position: absolute;
    margin-top: 180px;
    right: 40px;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.text-bg-kirmizi a:hover {
    color: #f7ff00; /* Hoverda renk değişikliği */
}

.text-bg-kirmizi .resim_cerceve {
    position: relative;
    width: 120px;
    height: 120px;
    animation: bounce 2s ease infinite;
}

.text-bg-kirmizi .duvar_resim {
    width: 80%; /* Eski haline getirdim (yuvarlak) */
    height: 80%; /* Eski haline getirdim (yuvarlak) */
    position: absolute;
    left: -234px;
    top: -160px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; /* Eski yuvarlak şekil */
    border: 5px solid #fff; /* Beyaz kenarlık */
    box-shadow: 0 10px 20px 0 rgba(59,7,92,.8);
    transition: transform 0.3s ease-in-out;
}

.text-bg-kirmizi .duvar_resim:hover {
    transform: scale(1.1); /* Hoverda büyüme efekti */
}

.text-bg-kirmizi .duvar_baslik {
    text-align: left;
    left: 120px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2em;
    padding: 10px 20px;
    font-style: italic;
    margin: 0px 0 0 157px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-bg-kirmizi .duvar_ozet {
    text-align: left;
    line-height: 1em;
    padding: 0 86px 0 0px;
    font-weight: 500;
    font-size: 0.85em;
    top: 42px;
    color: #fff;
    margin: -14px 0 0 129px;
}



/* Animasyonlar */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }


/* İLERİ GERİ BUTONLAR */

#Duvar_SliderGeri {
    background: url('../../../Images/nav_yatay_geri.png') no-repeat center bottom;
    position: absolute;
    z-index: 9;
    width: 18px;
    height: 34px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    right: 150px;
    top: -62px;
}

#Duvar_SliderGeri:hover {
    background-position: top center;
}

#Duvar_SliderIleri {
    background: url('../../../Images/nav_yatay_ileri.png') no-repeat bottom center;
    position: absolute;
    z-index: 9;
    width: 12px;
    height: 24px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    right: 130px;
    top: -57px;
}

#Duvar_SliderIleri:hover {
    background-position: top center;
}


/* DUVAR HAREKETLERİ */

.hareketler_slider {
    width: 340px;
    height: 240px;
    margin-top: 60px;
    position: absolute;
    right: 30px;
    z-index: 1;
}

.hareketler_slider_baslik {
    position: absolute;
    color: #FFF;
    text-shadow: 0 5px 5px rgba(0, 0, 0, .6);
    font-weight: 300;
    font-size: 1.20em;
    margin: -45px 0 0 -40px;
    font-style: italic;
}

.hareketler_slider_baslik span {
    font-weight: 600;
}

.hareketler_listele {
    width: 100%;
    height: 240px;
    position: absolute;
    overflow: hidden;
}

.hareketler_listele>div {
    width: 100%;
    height: 100%;
    position: relative;
}

.hareket_pozisyon {
    position: relative;
    margin: 10px 0 0 10px;
}

.hareket_bay {
    width: 297px;
    height: 50px;
    position: relative;
    overflow: hidden;
    float: left;
    background: url('../../../Images/hareket_cinsiyet.png') no-repeat center top;
    margin-top: 6px;
}

.hareket_bayan {
    width: 297px;
    height: 50px;
    position: relative;
    overflow: hidden;
    float: left;
    background: url('../../../Images/hareket_cinsiyet.png') no-repeat center bottom;
    margin-top: 6px;
}

.hareket_bay p:first-child,
.hareket_bayan p:first-child {
    color: #FFF;
    font-weight: 600;
    margin: 6px 0 0 57px;
}

.hareket_bay p:last-child,
.hareket_bayan p:last-child {
    color: #FFF;
    font-weight: 500;
    font-size: .75em;
    margin: -5px 0 0 57px;
}

.hareket_bay:hover p,
.hareket_bayan:hover p {
    color: #FC0;
}


/* İLERİ GERİ BUTONLAR */

#Hareket_SliderGeri {
    background: url('../../../Images/nav_yatay_geri.png') no-repeat center bottom;
    position: absolute;
    z-index: 9;
    width: 18px;
    height: 34px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    right: 180px;
    top: -48px;
}

#Hareket_SliderGeri:hover {
    background-position: top center;
}

#Hareket_SliderIleri {
    background: url('../../../Images/nav_yatay_ileri.png') no-repeat bottom center;
    position: absolute;
    z-index: 9;
    width: 12px;
    height: 24px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    right: 160px;
    top: -43px;
}

#Hareket_SliderIleri:hover {
    background-position: top center;
}


/* CHAT ÜYELER SLİDER */

.chat_uyeler_slider {
    width: 290px;
    position: absolute;
    height: 167px;
    z-index: 1;
    top: 296px;
    left: 0;
    overflow: hidden;
    background: url('../../../images/chat/uye_mavi_bg.png') no-repeat -10px center;
}

.chat_uyeler_listele {
    width: 310px;
    height: 167px;
    position: absolute;
    overflow: hidden;
}

.chat_uyeler_listele>div {
    width: 100%;
    height: 100%;
    position: relative;
}


/* İLERİ GERİ BUTONLAR */

#chat_uyeler_SliderGeri {
    background: url('../../../Images/chat/uyeler_nav.png') no-repeat top left;
    position: absolute;
    z-index: 9;
    width: 20px;
    height: 20px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    left: 115px;
    top: 114px;
}

#chat_uyeler_SliderGeri:hover {
    background-position: bottom left;
}

#chat_uyeler_SliderIleri {
    background: url('../../../Images/chat/uyeler_nav.png') no-repeat top right;
    position: absolute;
    z-index: 9;
    width: 20px;
    height: 20px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    left: 137px;
    top: 114px;
}

#chat_uyeler_SliderIleri:hover {
    background-position: bottom right;
}


/* CHAT MESAJLAR SLİDER */

.mesajlar_slider {
    width: 270px;
    margin: 5px;
    height: 139px;
    padding: 5px;
    z-index: 1;
    margin-top: 30px;
    position: relative;
    background: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.mesaj_listele {
    width: 270px;
    height: 143px;
    position: absolute;
    overflow: hidden;
}

.mesaj_listele>div {
    width: 278px;
    height: 143px;
    position: relative;
}

.mesaj_icerik {
    width: 100%;
    height: 44px;
    border-bottom: dashed 1px #e9e0d6;
    margin-bottom: 5px;
}

.mesaj_icerik:last-child {
    border: none;
}

.mesaj_baslik {
    color: #7e6c6a;
    font-size: .75em;
    line-height: 1.10em;
    width: 180px;
    position: absolute;
    margin: 0px 0 0 47px;
    font-weight: 500;
}

.mesaj_baslik span {
    color: #15bac4;
}

.mesaj_tarih {
    color: #666;
    font-size: .75em;
    line-height: 1em;
    width: 180px;
    position: absolute;
    margin: 28px 0 0 47px;
}

.mesaj_resim {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: absolute;
    overflow: hidden;
}


/* İLERİ GERİ BUTONLAR */

#mesajlar_SliderGeri {
    background: url('../../../Images/chat/uyeler_nav.png') no-repeat top left;
    position: absolute;
    z-index: 9;
    width: 20px;
    height: 20px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    left: 103px;
    top: -25px;
}

#mesajlar_SliderGeri:hover {
    background-position: bottom left;
}

#mesajlar_SliderIleri {
    background: url('../../../Images/chat/uyeler_nav.png') no-repeat top right;
    position: absolute;
    z-index: 9;
    width: 20px;
    height: 20px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    left: 125px;
    top: -25px;
}

#mesajlar_SliderIleri:hover {
    background-position: bottom right;
}


/* CHAT YETKİLİLER SLİDER */

.yetkililer_slider {
    width: 180px;
    height: 60px;
    z-index: 1;
    margin: 79px 0 0 7px;
    position: absolute;
}

.yetkili_listele {
    width: 180px;
    height: 60px;
    position: absolute;
    overflow: hidden;
}

.yetkili_listele>div {
    width: 190px;
    height: 64px;
    position: relative;
}

.yetkili_resim {
    width: 48px;
    height: 48px;
    position: absolute;
    overflow: hidden;
    margin: 3px 0 0 4px;
    border: solid 2px #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.yetkililer_slider:hover .yetkili_resim {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.yetkili_bilgi {
    position: absolute;
    color: #fff;
    font-size: 1em;
    line-height: 1em;
    font-weight: 500;
    margin: 7px 0 0 65px;
}

.yetkili_bilgi span {
    color: #fff;
    font-weight: 500;
    font-size: .80em;
}

.star {
    background: url('../../../Images/chat/star.png');
    position: absolute;
    overflow: hidden;
    display: block;
    margin: 40px 0 0 65px;
}

.star1 {
    width: 11px;
    height: 11px;
}

.star2 {
    width: 22px;
    height: 11px;
}

.star3 {
    width: 33px;
    height: 11px;
}

.star4 {
    width: 44px;
    height: 11px;
}

.star5 {
    width: 55px;
    height: 11px;
}

.star6 {
    width: 66px;
    height: 11px;
}

.star7 {
    width: 77px;
    height: 11px;
}

.star8 {
    width: 88px;
    height: 11px;
}

.star9 {
    width: 99px;
    height: 11px;
}

.star10 {
    width: 110px;
    height: 11px;
}


/* İLERİ GERİ BUTONLAR */

#yetkili_SliderGeri {
    background: url('../../../Images/chat/yetkililier_nav.png') no-repeat top left;
    position: absolute;
    z-index: 9;
    width: 20px;
    height: 20px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    left: 150px;
    top: 8px;
}

#yetkili_SliderGeri:hover {
    background-position: top right;
}

#yetkili_SliderIleri {
    background: url('../../../Images/chat/yetkililier_nav.png') no-repeat bottom left;
    position: absolute;
    z-index: 9;
    width: 20px;
    height: 20px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    left: 150px;
    top: 30px;
}

#yetkili_SliderIleri:hover {
    background-position: bottom right;
}