  body, html {
            height: 100%;
            margin: 0;
            overflow: hidden;
            background-color: #000;
  -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Non-prefixed version, currently supported by most modern browsers */
touch-action: manipulation; /* Çift tıklamayı zoom yapmadan işle */
-webkit-touch-callout: none; /* Uzun basma ile içerik menüsünü engelle */
        

}


/* Sabit kategori barı */
        .category-container {
            position: fixed;
           // top: -10px;
            left: 40;
            width: 100%;
          //  background: rgba(0, 0, 0, 0.8);
            padding: 5px 0;
            z-index: 1000;
            overflow: hidden;
        }

        /* Scrollable kategori menüsü */
        .category-menu {
            display: flex;
            overflow-x: auto;
            white-space: nowrap;
            padding: 5px 10px;
            gap: 15px;
            scrollbar-width: none;
           // top:-10px;
        }

        .category-menu::-webkit-scrollbar {
            display: none;
        }

        /* Kategori butonları */
        .category-item {
           // background: #333;
            color: white;
            padding: 5px 10px;
          //  border-radius: 15px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s, transform 0.2s;
            flex-shrink: 0;
           font-size: 20px;
           // top:-10px;
        }

        .category-item:hover {
           // background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
            color: red;
        }       





/* Başlangıçta tam ekran */
.fullscreen-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: height 0.5s ease, width 0.5s ease; /* Yumuşak geçiş */
    z-index: 99; /* Üstte kalmasını sağla */
}

/* Küçülmüş durumda */
.minimized-section {
    width: 300px; /* Küçük genişlik */
    height: 100px; /* Küçük yükseklik */
    bottom: 20px;
    right: 20px;
    position: fixed; /* Ekranın köşesinde sabitlenmiş */
    z-index: 99;
}





body a:hover {
text-decoration:none;
}



 .social-icons {
        display: flex;
        gap: 3px; /* İkonlar arasındaki boşluğu ayarlamak için */
    }

body.no-scroll {
  overflow: hidden;
}
.content-section {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    padding-left: 10px;
    background-color: #000;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 50px;
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
    .content-section {
        background-position: center center; /* Mobilde resim ortalanır */
        background-size: cover; /* Resim ekranı tam kaplar */
    }
}

/* Masaüstü cihazlar için */
@media (min-width: 769px) {
    .content-section {
        background-position: top center; /* Masaüstünde resim yukarı hizalanır */
        background-size: contain; /* Resmin tam görünmesini sağlar */
    }
}






.content-section h1,
.content-section h2,
.content-section h3,
.content-section h4,
.content-section p {
    position: relative;
    z-index: 2;
    top: 73%; /* Bu değeri test ederek doğru yerleşimi bulabilirsiniz */
}
        .content-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1); /* Optional: dark overlay for better text readability */
            z-index: 1;
        }





  /* Menü stili */
        .menu {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 10999999000;
            top: 0;
            right: 0;
            background-color: #111;
            overflow-x: hidden;
 
            transition: 0.1s;
            padding-top: 40px;
background: linear-gradient(to right, #000, #3e3e3e); /* Degrade arka plan */
        }

        .menu a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 18px;
            color: #818181;
            display: block;
            transition: 0.1s;
 	    text-decoration: none;
        }

        .menu a:hover {
            color: #f1f1f1;
            text-decoration: none; 
        }

        .menu .closebtn {
            position: absolute;
            top: 10px;
            right: 2px;
            font-size:40px;
            margin-right: 6px;
        }

        /* Menü açma düğmesi */
        .menu-icon {
            position: fixed;
            top: 5px;
            left: 20px;
            font-size: 50px;
            z-index: 20;
            color: white;
            cursor: pointer;
        }





  .lyrics-control {
            position: absolute;
            bottom: 140px;
            right: 20px;
            font-size: 25px;
            color: white;
            z-index: 9999999;
            cursor: pointer;
          //  background-color: rgba(0, 0, 0, 0.3);
            padding: 10px;
          //  border-radius: 50%;
            transition: background-color 0.3s, color 0.3s;
        }

/* Yanıp sönen "Swipe" yazısı ve ok işareti */
.swipe-hint {
    position: fixed;
    bottom: 120px; /* Alt kısımda yer alacak şekilde ayarlama */
    width: 100%;
    text-align: center;
    z-index: 100; /* Diğer elementlerin üstünde olacak şekilde yüksek bir değer verin */
    color: #efefef; /* Renk tanımlaması */
    animation: fade-animation 2s ease-in-out infinite;
}

.swipe-hint .arrow-up {
    font-size: 34px;
    display: block;
}

@keyframes fade-animation {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}



.duration {
  position: absolute;
  right:5px;
  top:65px;
  left: 40px;
    display: flex;
    justify-content: right;
    z-index: 2; /* İçeriklerin altında kalması için */
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* Light 300 */
    color: white; /* Beyaz renk */
 text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Çok hafif koyu gölge */

}

.eq-container {
    position: fixed;
    top: 20px;
    right: 5px; /* Sağda daha fazla boşluk bırakmak için ayarlandı */
    left: 50px;
    width: calc(100% - 60px); /* Toplam sağ ve sol boşluğu hesaba kat */
    height: 50px;
    display: flex;
    justify-content: right;
    align-items: center;
    z-index: 2; /* İçeriklerin altında kalması için */
    pointer-events: none; /* EQ animasyonunun tıklanmasını engellemek için */
}
.eq-bar {
    width: 10px;
    height: 50%;
    margin: 0 3px;
    background-color: #fff;
    animation: bounce 1s infinite alternate;
    border-radius: 2px;
}

.eq-bar:nth-child(2) {
    animation-delay: 0.1s;
}
.eq-bar:nth-child(3) {
    animation-delay: 0.2s;
}
.eq-bar:nth-child(4) {
    animation-delay: 0.3s;
}
.eq-bar:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0% {
        transform: scaleY(0.3);
    }
    100% {
        transform: scaleY(1);
    }
}

 /* Arama Kaplama Alanı */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            z-index: 99999999999;
        }

        .search-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Kapatma Butonu */
        .close-search {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 45px;
            cursor: pointer;
            color: #fff;
            transition: color 0.3s ease;
        }

        .close-search:hover {
            color: #ff4d4d;
        }

        /* Filodyo Logosu */
        .search-logo {
            max-width: 100px;
            margin-bottom: 20px;
        }

        /* Arama Kutusu */
        .search-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 80%;
            max-width: 500px;
        }

        .search-box input {
            width: 100%;
            padding: 14px;
            font-size: 20px;
            border: 2px solid #444;
            background: #222;
            color: #fff;
            border-radius: 30px;
            outline: none;
            text-align: center;
            transition: border 0.3s ease-in-out;
            margin-bottom: 20px;
        }

        .search-box input:focus {
            border-color: #ff4d4d;
        }

        /* Arama Butonu */
        .search-box button {
            padding: 12px 20px;
            font-size: 16px;
            background: #ff4d4d;
            color: white;
            border: none;
            cursor: pointer;
            margin-top: 12px;
            border-radius: 25px;
            width: 100%;
            max-width: 150px;
            transition: background 0.3s ease-in-out;
        }

        .search-box button:hover {
            background: #e63939;
        }

        /* Arama Sonuçları */
        .search-results {
            margin-top: 15px;
            width: 100%;
           // max-width: 500px;
            max-height: 300px;
            overflow-y: auto;
            background: #1a1a1a;
            color: white;
            border-radius: 10px;
            padding: 12px;
            display: none;
        }

        .search-results div {
            padding: 10px;
            border-bottom: 1px solid #333;
            font-size: 14px;
        }

        .search-results div:last-child {
            border-bottom: none;
        }

        /* Scrollbar stilleri */
        .search-results::-webkit-scrollbar {
            width: 6px;
        }

        .search-results::-webkit-scrollbar-track {
            background: #333;
            border-radius: 5px;
        }

        .search-results::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 5px;
        }

        .search-results::-webkit-scrollbar-thumb:hover {
            background: #bbb;
        }

        /* Responsive Ayarlar */
        @media (max-width: 600px) {
            .search-box {
                width: 90%;
            }
            .search-box input {
                font-size: 14px;
                padding: 12px;
            }
            .search-box button {
                font-size: 14px;
                padding: 10px;
            }
  }
      
.searchicon {
   position: absolute;
color:white;
font-size:30px;
  right:110px;
  top:25px;
z-index:99999;
cursor:pointer


}


.content-section h2 {
    margin-bottom: 10px; /* İstediğiniz boşluk değerini buraya koyabilirsiniz */
}

.content-section h3 {
    margin-top: 10; /* Eğer arada hiç boşluk istemiyorsanız */
}



.content-section h2 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 36px; /* h2 için daha büyük bir boyut */
    color: #efefe;
    margin-bottom: 20px;
}

.content-section h3 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 28px; /* h3 için orta boyut */
    color: #efefef;
    margin-bottom: 15px;
}

.content-section h4 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 22px; /* h4 için daha küçük bir boyut */
    color: #efefef;
    margin-bottom: 10px;
}










/* Butonları flex container içinde yatay hizalama */
#music-controls {
z-index: 99999 !important; /* Butonların diğer tüm içeriklerin üstünde görünmesi için yüksek z-index */
    position: fixed;
    bottom: 50%;
    left: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Yatay alanın %90'ını kaplar */
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
}


   .music-button {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 20px;
    font-size: 70px; /* Daha büyük ikonlar için */
    cursor: pointer;
    z-index: 9999; /* Üstte görünmesi için yüksek z-index */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    transition: opacity 0.5s, transform 0.3s;
    opacity: 0.7;
}

.music-button.hide {
    opacity: 0;
    pointer-events: none; /* Tıklamayı engellemek için */
}



   .rewindbtn {
    position: fixed;
    left: 17%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 20px;
    font-size: 22px; /* Daha büyük ikonlar için */
    cursor: pointer;
    z-index: 99999; /* Üstte görünmesi için yüksek z-index */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: opacity 0.5s, transform 0.3s;
    opacity: 0.7;

}

.rewindbtn.hide {
    opacity: 0;
    pointer-events: none; /* Tıklamayı engellemek için */
}



   .forwardbtn {
    position: fixed;
    right: 15%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 20px;
    font-size: 22px; /* Daha büyük ikonlar için */
    cursor: pointer;
    z-index: 99999; /* Üstte görünmesi için yüksek z-index */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: opacity 0.5s, transform 0.3s;
    opacity: 0.7;

}

.forwardbtn.hide {
    opacity: 0;
    pointer-events: none; /* Tıklamayı engellemek için */
}






#rewind-music, #forward-music {
    touch-action: auto; /* manipulation yerine auto kullanarak çift tıklamayı etkinleştirin */
}


@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1); /* Başlangıç pozisyonu ve orijinal boyut */
    }
    100% {
        opacity: 0;
        transform: translateX(-50px) scale(5); /* Sola hareket ve büyüme */
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1); /* Başlangıç pozisyonu ve orijinal boyut */
    }
    100% {
        opacity: 0;
        transform: translateX(50px) scale(5); /* Sağa hareket ve büyüme */
    }
}

.icon-clone {
    position: fixed;
    color: white;
    font-size: 22px; /* İkon boyutunu butonla uyumlu hale getir */
    opacity: 1;
    pointer-events: none; /* Kopyalar tıklanamaz */
    z-index: 99999;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
}

.fade-out-left {
    animation-name: fadeOutLeft;
}

.fade-out-right {
    animation-name: fadeOutRight;
}








/* Play butonu için daha büyük boyut */
#play-music {
    width: 120px;
    height: 120px;
    font-size: 35px; /* Daha büyük ikon boyutu */
 
}



#rewind-music, #play-music, #forward-music {
    display: block !important; /* Butonların görünür olmasını zorlayın */
    visibility: visible !important;
}













.background-section {

}

@keyframes light-effect {
    0% {
        background: rgba(0, 0, 0, 0.1);
    }
    50% {
        background: rgba(0, 0, 0, 0.3); /* Renk tonu değiştiriliyor */
    }
    100% {
        background: rgba(0, 0, 0, 0.1);
    }
}

.background-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1); 
   // animation: light-effect 4s infinite ease-in-out; /* 8 saniyelik bir dalgalanma efekti */
    z-index: 2;
}



.fly-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.fly-item {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.4); /* Opaklık düşürülmüş beyaz */
    border-radius: 50%; /* Yuvarlak şekil */
    animation: flyUp 5s ease-in-out infinite; /* Uçuş animasyonu */
    opacity: 0;
}

/* Farklı elementlerin farklı hızlarda uçması için */
.fly-item:nth-child(1) {
    left: -50px;
    animation-duration: 7s;
}

.fly-item:nth-child(2) {
    left: 0;
    animation-duration: 5s;
}

.fly-item:nth-child(3) {
    left: 50px;
    animation-duration: 6s;
}

@keyframes flyUp {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3; /* Daha düşük opaklıkla başlayacak */
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-500px); /* Üst tarafa doğru çıkış */
        opacity: 0;
    }
}




.lyrics-screen {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    z-index: 100000000000000000000000001;
    overflow-y: auto;
    transition: bottom 0.05s;
display: block;


}

.lyrics-screen.show {
    bottom: 0;

}

.lyrics-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    z-index: 100000000000000000000000001;
    overflow-y: auto;
    transition: bottom 0.05s;
    display: block;
    line-height: 1.9; /* Satır yüksekliği, okunabilirlik için */
   font-size: 0.9rem;
}

.lyrics-content.show {
    bottom: 0;

}


.lyrics-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 40px;
    cursor: pointer;
            z-index: 99999999999999999999999;
}

pre {
    white-space: pre-wrap;
    font-family: inherit;
    line-height: 1.5;
}





.ninfo {
    display: none; /* Varsayılan olarak gizli */

}

.ninfo.show {
    display: block; 
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 0; /* Padding'i 0 yaptık */
    z-index: 100000000000000000000000001;
    overflow-y: auto;
    transition: bottom 0.05s ease-in-out;
    will-change: bottom;
    overflow-y: auto;
    text-align: justify;
   hyphens: auto;
    text-align-last: left;
    line-height: 1.9; 
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* Light 300 */
}



.ninfo.show a,
.ninfo.show a:hover,
.ninfo.show a:focus,
.ninfo.show a:active {
    text-decoration: none; /* Mobilde veya odaklandığında alt çizgiyi kaldırır */
    outline: none; /* İsterseniz, odaklandığında çevresindeki kenarlığı da kaldırabilirsiniz */
}



.nlyrics {
    display: none; /* Varsayılan olarak gizli */

}

.nlyrics.show {
    display: block; /* .show sınıfı eklendiğinde görünür */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    z-index: 100000000000000000000000001;
    overflow-y: auto;
    transition: bottom 0.05s;
    overflow-y: auto; /* İçerik çok uzunsa dikey scroll */
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* Light 300 */
    line-height: 1.9; /* Satır yüksekliği, okunabilirlik için */
  // font-size: 1.3rem;
}




.new-banner {
  position: fixed;
  top: 90px;
  right: -5px;
  background-color: yellow; /* Sarı arka plan */
  color: black; /* Siyah font */
  padding: 8px 16px;
 border-bottom-left-radius: 10px; /* Sol alt köşe yuvarlak */
  font-weight: bold;
  font-size:20px;
  z-index: 1000; /* Diğer öğelerin üzerinde görünmesini sağlar */
  // transform: rotate(45deg); /* 45 derece döndür */
}


.newbannera {
  position: absolute;
  top: 90px;
  right: -5px;
  background-color: red; /* Sarı arka plan */
  color: white; 
  padding: 8px 16px;
  border-bottom-left-radius: 10px; /* Sol alt köşe yuvarlak */
  font-weight: bold;
  font-size: 20px;
  z-index: 1000; /* Diğer öğelerin üzerinde görünmesini sağlar */
  
}

.newbannertop10at10 {
  position: absolute;
  top: 90px;
  right: -5px;
  background-color: #0088cc; /* Sarı arka plan */
  color: white;   padding: 8px 16px;
  border-bottom-left-radius: 10px; /* Sol alt köşe yuvarlak */
  font-weight: bold;
  font-size: 20px;
  z-index: 1000; /* Diğer öğelerin üzerinde görünmesini sağlar */
  
}


.chart_banner {
  position: relative;
  top: 90px;
  right: -5px;
 // background-color: yellow; /* Sarı arka plan */
  color: white; /* Siyah font */
  padding: 8px 16px;
 //  border-bottom-left-radius: 10px; /* Sol alt köşe yuvarlak */
  font-weight: bold;
  font-size:50px;
  z-index: 1000000000; /* Diğer öğelerin üzerinde görünmesini sağlar */
  // transform: rotate(45deg); /* 45 derece döndür */
}






@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
  html {
    transform: rotate(-90deg);
    transform-origin: left top;
    width: 100vh;
    overflow-x: hidden;
    position: absolute;
    top: 100%;
    left: 0;
  }
}

.rotated-label {
    position: fixed;
    left: 0; /* Ekranın solundan -50px çıkarak tamamen sola yapışmasını sağlıyoruz */
    top: 40%; /* Yükseklik olarak ekranın ortasında */
    transform: rotate(-90deg) translate(-50%, 0); /* Döndürme ve çevirme işlemleri */
    transform-origin: left top; /* Döndürme noktasını sol üst köşe olarak ayarlıyoruz */
    background-color: red;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    z-index: 100000000; /* Katmanı ön plana almak için */
}


.rotated-label-blue {
    position: fixed;
    left: 0; /* Ekranın solundan -50px çıkarak tamamen sola yapışmasını sağlıyoruz */
    top: 40%; /* Yükseklik olarak ekranın ortasında */
    transform: rotate(-90deg) translate(-50%, 0); /* Döndürme ve çevirme işlemleri */
    transform-origin: left top; /* Döndürme noktasını sol üst köşe olarak ayarlıyoruz */
    background-color: #4c9ff8;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    z-index: 100000000; /* Katmanı ön plana almak için */
}


  #overlay {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding-top: 20%;
    font-size: 24px;
    z-index: 999999999999999999999;
  }









/* Yeni Menü stili */
.newmenu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1099999999999999999999000;
    top: 0;
    left: 0;
    background-color: #111;
    transition: 0.1s;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: 100vh;
    color: #efefef; /* Metin rengi */
}

.newmenu a {
    padding: 10px 10px 10px 40px; /* Menü elemanları arasında daha az boşluk */
    text-decoration: none;
    font-size: 18px; /* Menü yazı boyutunu büyüttük */
    color: #818181;
    display: block;
    transition: 0.1s;
    font-family: 'Poppins', sans-serif; /* Roboto fontu kullanımı */
}

.newmenu a:hover {
    color: #f1f1f1;
}

.newmenu .closebtn {
    position: absolute;
    top: -5px; /* Kapatma düğmesini menünün sağ üst köşesine taşıdık */
    right: 4px; 
    font-size: 40px;
    margin-left: 5px;
    cursor: pointer;
}

/* Menü açma düğmesi */
.menu-icon {
    position: fixed;
    top: -5px;
    left: 10px;
    font-size: 50px;
    z-index: 20;
    color: white;
    cursor: pointer;
}

/* Filodyo logosunu sola taşımak ve boyutunu küçültmek */
.newmenu .logo-container {
    text-align: left;
    padding-left: 2px; /* Soldan boşluk */
    margin-top: 5px; /* Alt boşluğu biraz azaltıldı */
}

.newmenu .logo-container img {
    width: 80px; /* Logo boyutunu küçültme */
}

/* Sosyal medya ikonları */
.social-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 5px;
}






.newmenu .menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 6px; /* İçerik kenar boşluğu */
}

.newmenu .footer {
  padding: 7px;
    text-align: center;
    border-top: 1px solid #333;
    background-color: #111; /* Alt kısmın arka plan rengini belirleyin */
    flex-shrink: 0; /* Footer'ın sıkışmasını engeller */
    margin-bottom: 80px; /* Footer'ı yukarı çekmek için eklendi */
}

.newmenu .footer a {
    font-size: 12px;
    line-height: 12px;
    color: #efefef;
    text-decoration: none; /* Altı çizili olmamasını sağlar */
}

.newmenu .footer a:hover {
    color: #fff; /* Üzerine gelindiğinde metin rengini değiştirir */
}





















.lyrics-control {
    position: absolute;
    bottom: 150px;
    right: 12px;
    font-size: 46px;
    color: white;
    color:#1bb3fd;
    z-index: 9999999;
    cursor: pointer;
    padding: 5px;
    /* Gereksiz kodlar kaldırıldı */
}

.lyrics-buttons {
    position: absolute;
    bottom: 220px;
    right: 20px;
    display: flex;
    flex-direction: column;
    opacity: 0; /* Başlangıçta görünmez */
    transform: translateY(10px); /* Daha küçük kaydırma */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Daha hızlı geçiş */
    z-index: -99999;
 
}

.lyrics-buttons.open {
    opacity: 1; /* Görünür hale gelsin */
    transform: translateY(0); /* Yukarı kayarak yerine gelsin */
    z-index: 9999999;
}

.lyrics-button {
    margin-bottom: 5px; /* Butonlar arasında daha az boşluk */
    padding: 5px; /* Butonun içindeki boşluk küçültüldü */
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 28px; /* Font boyutu aynı kaldı */
    transition: background-color 0.3s ease;
    z-index: 9999999;
}

.lyrics-button i {
    pointer-events: none;
}


/* Orijinal kalp için başlangıç stili */
.lyrics-button i.fa-heart {
    font-size: 28px;
    color: white; /* Başlangıçta beyaz renk */
    transition: color 0.3s ease; /* Renk değişikliği animasyonu */
}

/* Kalp animasyonları için genel stil */
.heart {
    position: fixed;
    font-size: 28px;
    color: red; /* Animasyon kalpleri kırmızı */
    animation: heartFloat 3s ease-out forwards;
}

@keyframes heartFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-300px) scale(1.5);
        opacity: 0;
    }
}






/* Lyrics Section için Poppins fontu */
.lyrics-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px; /* h2 için büyük boyut */
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 0.8;
}

.lyrics-section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px; /* h3 için orta boyut */
    color: #ff0000;
    margin-bottom: 15px;
    line-height: 1.2;
}




/* Lyrics metni için Light 300 */
.lyricstxt-section {
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* Light 300 */
    color: white; /* Beyaz renk */
    line-height: 1.9; /* Satır yüksekliği, okunabilirlik için */
  // font-size: 1.1rem;

}




/* Responsive Tasarım için */
@media (max-width: 768px) {
    .content-section h2, .lyrics-section h2 {
        font-size: 30px; /* Küçük ekranlar için h2 boyutu küçültülüyor */
    }

    .content-section h3, .lyrics-section h3 {
        font-size: 24px; /* Küçük ekranlar için h3 boyutu küçültülüyor */
    }
}





/* Lyrics Section için Poppins fontu */
.info-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px; /* h2 için büyük boyut */
    color: #ff0000;
  //  margin-bottom: 10px;
  // padding-left: 10px;
    line-height: 1.2;
}

.info-section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px; /* h3 için orta boyut */
    color: #ff0000;
   // margin-bottom: 10px;
   padding-left: 10px;
    line-height: 1.2;

}



.infotxt-section {
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* Light 300 */
    color: white; /* Beyaz renk */
    line-height: 1.9; /* Satır yüksekliği, okunabilirlik için */
    margin:10px;
  //  padding:5px;



}




th, tr, td {
    color: #a5a5a5;
}

a {
    color: inherit; /* Link rengini td ile aynı yapar */
    text-decoration: none; /* Alt çizgiyi kaldırır */

}

a:hover {
    text-decoration: underline; /* İsterseniz hover durumunda alt çizgi ekleyebilirsiniz */
}

a:focus,
a:active {
    text-decoration: none; /* Mobilde veya odaklandığında alt çizgiyi kaldırır */
    outline: none; /* İsterseniz, odaklandığında çevresindeki kenarlığı da kaldırabilirsiniz */
}



.hero-banner {
    position: relative;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: top; /* Resmin üst kısmının görünmesini sağlar */
    background-position: 50% 35%; /* Yatayda ortada, dikeyde biraz üstte */
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-text {
font-size: 28px;
font-family: 'Poppins', sans-serif;
color:#6c6c6c;
// padding:10px;
font-weight:bold;
z-index:999;
// margin-left: 5px;
// margin-right: 5px;
// margin: 10px; /* İçindeki elementlere margin ekledik */
        }



.verified-badge {
    position: absolute;
    bottom: 10px;  /* Sağ üst köşeye yakın bir konum */
    left: 10px;  /* Sağ üst köşeye yakın bir konum */
    background-color: rgba(0, 0, 0, 0.7);
    color: white;  /* Yazı rengi beyaz */
    padding: 5px 10px;  /* İç boşluk */
    border-radius: 10px;  /* Kenarları yuvarlak */
    display: flex;
    align-items: center;  /* İçerikleri dikey olarak ortala */
    font-size: 16px;  /* Yazı boyutu */
}

.verified-badge img {
    width: 25px;  /* Resmin genişliği */
    height: auto;  /* Resmin yüksekliği otomatik ayarlanır */
    margin-right: 5px;  /* Resim ile yazı arasında boşluk */
}

.text-right {
    text-align: right;
}






.insights-container {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin-top: 60px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }
        .insights-title {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
        }
        .insights-text {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 10px;
        }
        .insights-icon-section {
            background-color: #e9e9e9;
            border-radius: 10px;
            padding: 15px;
            margin-top: 20px;
        }
        .insights-icon-row {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        .insights-icon-row div {
            text-align: center;
        }
        .insights-stats-section {
            margin-top: 20px;
            padding: 15px 0;
        }
        .insights-stats-row {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        .insights-first-col span {
            font-size: 0.9rem;
            color: #ccc;
        }
        .insights-first-col .insights-value {
            font-size: 2.5rem;
            color: #333;
            font-weight: bold;
            font-family: 'Poppins', sans-serif;
        }
        .insights-second-col span, .insights-third-col span {
            display: block;
            margin-bottom: 5px;
            font-size: 0.9rem;
            color: #666;
        }
        .insights-second-col .insights-value, .insights-third-col .insights-value {
            font-size: 1.5rem;
            color: #333;
            font-weight: bold;
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
        }


a[href="/pulse"] i.fa-heart-pulse {
    color: red;
    animation:blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.pulse-blink {
    color: red;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}



#clearAllTracks {
    font-weight: bold;
    padding: 10px 20px;
}




  .a2hs-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    color: white;
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 90%;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    z-index: 9999;
    animation: fadeInUp 0.6s ease;
    text-align: center;
  }

  .a2hs-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 4px;
  }

  .a2hs-text {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .a2hs-icon {
    font-size: 1.4rem;
    vertical-align: middle;
  }

  .a2hs-arrow {
    font-size: 1.5rem;
    animation: bounce 1.5s infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate(-50%, 50px);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }


