body {
    background-color: #E9E9E9;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin: 0 auto;
    max-width: 1000px;
}
a {
    text-decoration:none;
}
.header {
    background: linear-gradient(to bottom, #8823ba, #660099, #8823ba);
    color: #fff;
    padding:16px;
    margin: auto;
    align-items: center;
    text-align: center;
}
.header a {
    color: #FFF;
}
.header a:hover {
    color: #d8dcde;
}
.header svg {
    margin-bottom: -1.8px;
}
.navbar {
    background-color: #f4f4f4;
    padding: 8px 0;
    text-align: center;
    position: relative;
}
.navbar-nav {
    list-style-type: none;
    margin: 0;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-nav .nav-item {
    margin: 0 15px;
    display: flex;
    align-items: center;
}
.navbar-nav .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
}
.navbar-nav .nav-link:hover {
    color: #660099;
}
.navbar-nav .nav-item {
    position: relative;
    margin: 0 15px;
}
.navbar-nav .nav-item:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px; /* Çizginin <li> öğesinin altına yerleştirilmesi */
    height: 2px; /* Çizgi kalınlığı */
    background-color: #660099; /* Çizgi rengi */
    transform: scaleX(1);
    transition: transform 0.3s ease;
}
.navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background-color: #660099;
    transform: scaleX(0); /* Varsayılan olarak çizgi görünmez */
    transition: transform 0.3s ease; /* Hover sırasında çizginin açılması */
}
.hidden-link {
    display: none; /* Varsayılan olarak gizli */
}
#more-button {
    cursor: pointer;
    display: none; /* Varsayılan olarak gizli */
}
#more-button svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

/* Büyük ekranlar için gizli linkleri göster ve daha fazla butonunu gizle */
@media (min-width: 769px) {
    .hidden-link {
        display: inline-block; /* Gizli olan linkleri göster */
    }
    #more-button {
        display: none; /* Daha Fazla butonunu gizle */
    }
    .dropdown-menu {
        display: none; /* Büyük ekranlarda dropdown menüyü gizle */
    }
}

/* Küçük ekranlar için daha fazla butonunu göster ve bazı linkleri gizle */
@media (max-width: 768px) {
    .hidden-link {
        display: none; /* Küçük ekranlarda gizli linkler */
    }
    #more-button {
        display: inline-block;
    }
    .dropdown-menu {
        display: none; /* Menü varsayılan olarak gizli */
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #f4f4f4;
        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: center;
        border: 1px solid #ddd; /* Menüye hafif bir kenarlık ekleyin */
        border-radius: 4px; /* Menü köşelerini yuvarlayın */
    }
    .dropdown-menu .nav-item {
        display: block;
        margin: 0;
    }
    .dropdown-menu .nav-link {
        display: block;
        padding: 5px;
        color: #333;
        text-decoration: none;
    }
    .dropdown-menu .nav-link:hover {
        color: #660099;
        background-color: #ddd; /* Hover efekti için arka plan rengi */
    }
}
.title {
    background: linear-gradient(to bottom, #8823ba, #660099, #8823ba);
    padding:16px;
    position: relative;
    color: #fff;
    font-size: 18px;
    margin-bottom: 0px;
    margin-top: 5px;
    display: flex;
    align-items: center;
}
.title a {
    color: #FFF;
}
.link {
    background-color:#fff;
    border-bottom:1px solid #E7E7E7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    padding: 10px;
}
.link:hover{
    color: #660099;
    background-color: #f5f0f6;
}
h3 {
    all: unset;
}
.music-title {
    display: flex;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
}
.music-title img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    margin-right: 10px; 
    flex-shrink: 0;
}
.text {
    margin-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
}
.duration {
    flex-shrink: 0;
    margin-left: 5px;
}
.duration svg {
    margin-bottom: -1.8px;
}
.search-container {
    background-color: #f4f4f4;
    border-top: 1px solid #dfdfe5;
    width: 100%;
    display: flex;
    justify-content: center;
}
.search-container form {
    width: 100%;
    padding:10px;
    display: flex;
}
.search-container input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    box-sizing: border-box;
}
.search-container button {
    padding: 8px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-left: 0;
    background: linear-gradient(to bottom, #8823ba, #660099, #8823ba);
    color: white;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    box-sizing: border-box;
}
.search-container button svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
.info{
    padding:15px;
    color:#6A6A6B;
    font-size:17px;
    margin: auto;
    background-image:url(../img/info.png);
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center center;
    border-right:1px solid #EFEFEF;
    border-left:1px solid #EFEFEF;
}
.info span{
    font-size:16px;
}
.info img{
    border-radius:5px;
    border:2px solid #fff;
    box-shadow:0 1px 1px rgba(0,0,0,.1);
}
.info a{
    color:#6A6A6B;
}
.mejs__container {
    background-color: #660099 !important;
}
.button-container {
    text-align: center;
}
.download-button{
    display: inline-block;
    text-align:center;
    padding:2% 4% 2% 4%;
    background-color:#454A56;
    border:1px solid #393D47;
    color:#fff !important;
    border-radius: 10px;
    margin: auto;
}
.download-button a{
    color:#fff !important;
}
.download-button:hover{
    background:#505663;
}
.download-button svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}
.details {
    text-align: center;
}
.socials{
    text-align: center;
    vertical-align: middle;
    margin-top: 1em;
    margin-bottom: 1em;
}
.socials svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}
.tag-container {
    display:block;
    background-color:#fff;
    padding: 10px;
    text-align: center;
    /*color:#9c5197;*/
}
.tag {
    background:#f1f2f6;
    padding:3px 8px;
    color:#FFF;
    font-size:14px;
    margin:2px;
    line-height:2.2;
    border-radius:10px;
    display:inline-block;
}
.tag a{
    color: #373B44;
}
.tag a:hover{
    color: #660099;
}
.center {
    text-align: center !important;
}
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #333;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}
.footer-column {
    width: 30%;
    box-sizing: border-box;
    padding: 10px;
}
.footer-column h4 {
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    margin-bottom: 10px; /* Space below the heading */
}
.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin: 10px 0;
}
.footer-column ul li a {
    color: white;
    text-decoration: none;
}
.footer-column ul li a {
    position: relative;
    /*margin: 0 15px;*/
}
.footer-column ul li a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px; /* Çizginin <li> öğesinin altına yerleştirilmesi */
    height: 2px; /* Çizgi kalınlığı */
    background-color: #fff; /* Çizgi rengi */
    transform: scaleX(1);
    transition: transform 0.3s ease;
}
.footer-column ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0); /* Varsayılan olarak çizgi görünmez */
    transition: transform 0.3s ease; /* Hover sırasında çizginin açılması */
}
.social-media {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between icons */
}
.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; /* Increased size */
    height: 32px; /* Increased size */
    background-color: #444; /* Background color for better visibility */
    border-radius: 50%; /* Circular background */
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}
.social-media svg {
    width: 16px;
    height: 16px;
    fill: white;
    transition: fill 0.3s;
}
.social-media a.facebook {
    background-color: #3b5998; /* Facebook color */
}
.social-media a.twitter {
    background-color: #1da1f2; /* Twitter color */
}
.social-media a.instagram {
    background-color: #c13584; /* Instagram color */
}
.social-media a:hover {
    transform: scale(1.1); /* Slightly larger on hover */
}
.social-media a.facebook:hover svg {
    fill: #fff;
    background-color: #3b5998;
}
.social-media a.twitter:hover svg {
    fill: #fff;
    background-color: #1da1f2;
}
.social-media a.instagram:hover svg {
    fill: #fff;
    background-color: #c13584;
}
.copyright {
    text-align: center;
    padding: 10px;
    background-color: #222;
    color: #999;
    border-top: 1px solid #555;
}
.copyright a {
    color: white;
    text-decoration: none;
}
.copyright a:hover {
    text-decoration: underline;
}
.red a {
    color: #eb1e0f !important;
}

@media (max-width: 768px) {
    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }
}