body {
            font-family: Calibri, sans-serif;
            font-weight: 300;
            background-color: #F0F0F0;
            overflow-x: hidden;
        }
       


/* Top Music */
.carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
  margin: 10px;
}

.carousel::-webkit-scrollbar {
  display: none;
}
ul {
    list-style: none;
    
}

.carousel_item {
  flex-shrink: 0;
  margin-right: 10px;
}

.carousel_item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  max-width: 100%;
}

.title-extend {
  font-family: 'Calibri', sans-serif;
  font-weight: 300;
  color: red;
  margin-left: 10px;
}

.carousel_item .title {
  font-family: 'Calibri', sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin-top: -10px;
  margin-bottom: -10px;
  text-align: center;
  width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.carousel_item .artist {
  font-family: 'Calibri', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666;
  text-align: center;
}

.see-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  text-decoration: none;
  color: #333;
}

.see-more:hover {
  background-color: #f0f0f0;
}

.p-1\.5 {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block {
  display: block;
}

.w-full {
  width: 100%;
}

figure {
  margin: 0;
}

.carousel_item a {
  text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .carousel_item img {
    width: 120px;
    height: 120px;
  }
  .see-more {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .carousel_item img {
    width: 120px;
    height: 120px;
  }
  .see-more {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1200px) {
  .carousel_item img {
    width: 200px;
    height: 200px;
  }
  .see-more {
    width: 200px;
    height: 200px;
  }
}



/* song-details */

/* song-details */
.details-header {
    font-family: 'Calibri', sans-serif;
    font-weight: 300;
    text-align: center;
}

.song-details-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: 'Calibri', sans-serif;
    font-weight: 300;
}

.song-details {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-family: 'Calibri', sans-serif;
    font-weight: 300;
}

.detail-label {
    font-weight: bold;
    width: 100px;
    font-family: 'Calibri', sans-serif;
    margin-right: 10px;
}

.detail-separator {
    margin: 0 5px;
    font-weight: bold;
    border-left: 1px solid #000;
    height: 20px;
    display: flex;
    align-items: center;
    padding-right: 5px;
    border-right: 0;
}

.detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.detail-value {
    text-decoration: none;
    padding-left: 5px;
    font-family: 'Calibri', sans-serif;
    font-weight: 300;
    margin-left: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
        width: 300px;
        height: 260px;
        border-radius: 5px;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    .song-details-container {
        flex-direction: column-reverse;
        align-items: center;
        margin-top: -50px; /* Added margin-top */
    }
    .song-details {
        margin-top: -30px; /* Added margin-top */
        margin-left: 0;
        padding: 0 20px;
    }
}

@media (min-width: 769px) {
    .desktop-only {
        display: block !important;
    }
    .mobile-only {
        display: none !important;
    }
    .song-details {
        margin: 20px auto; 
    }
    .detail-row {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }
}


/* share */
.share-song {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.share-title {
  font-family: 'Calibri', sans-serif;
  font-weight: 300;
  color: #6c757d;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons i {
  font-size: 24px;
  color: #6c757d;
}



/* Number and downs */
.song-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Calibri', sans-serif;
    font-weight: 300;
}

.download-btn {
    margin-left: 10px;
    background: linear-gradient(to right, #FFA07A, #FF69B4, #800080, #FF0000);
    color: #fff;
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Calibri', sans-serif;
    font-weight: bold;
}

.stats {
    margin-right: 10px;
    font-size: 14px;
    font-family: 'Calibri', sans-serif;
    font-weight: 300;
}

.stats span {
    color: #333;
    background: rgba(144, 238, 144, 0.5); /* light green transparent */
    padding: 8px 10px;
    border-radius: 20px;
}

.stats span i {
    margin-right: 5px;
    margin-left: 10px;
}

.stats span i:first-child {
    margin-left: 0;
}


/* player */
.player-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.player-container .play-button, .player-container .volume-button, .player-container .stop-button {
    background-color: transparent;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
}

.player-container .progress-bar-container {
    flex-grow: 1;
    margin: 0 15px;
}

.player-container .progress-bar {
    height: 5px;
    background-color: #ddd;
    border-radius: 5px;
}

.player-container .progress {
    height: 5px;
    background-color: #fff;
    border-radius: 5px;
    width: 0;
}

.player-container .time {
    margin-right: 10px;
    color: #fff;
}

/* desktop player */
@media (min-width: 768px) {
    .desktop-player {
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 280px;
        background-color: #333;
        color: #fff;
        padding: 10px;
        border-radius: 0 0 5px 5px;
        z-index: 2;
    }
    .mobile-player {
        display: none;
    }
}

/* mobile player */
@media (max-width: 767px) {
    .desktop-player {
        display: none;
    }
    .mobile-player {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #444;
        color: #fff;
        border-radius: 5px;
        width: 100%;
        position: relative;
        top: -38px;
        left: auto;
        z-index: 1;
    }
    .mobile-player .play-button, .mobile-player .volume-button, .mobile-player .stop-button {
        font-size: 18px;
        padding: 10px;
    }
    .mobile-player .progress-bar-container {
        margin: 0 10px;
    }
    .mobile-player .time {
        font-size: 14px;
    }
}



/* image overly */
.container {
    display: flex;
    justify-content: center;
    background-color: transparent;
}

.song-card {
    width: 66.66%;
    max-width: 800px;
    border: none;
    border-radius: 0.25rem;
    padding: 20px;
}

.song-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 0;
    position: absolute;
    top: 50%;
    left: 150px;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.song-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 280px;
    background-size: cover;
    background-position: center;
    z-index: 0;
    border-radius: 5px;
    overflow: hidden;
}

.song-cover-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
    transform: scale(1.1);
}

.verified-badge {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ff9900;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
}

@media (max-width: 767px) {
    .song-cover-overlay {
        width: 100%;
        height: 32vh;
        background-size: cover;
        background-position: center;
        border-radius: 0;
    }
    .position-relative {
        width: 100%;
        height: 40vh;
    }
    .song-image {
        width: 150px;
        height: 150px;
        left: 50%;
        top: 40%;
    }
}

@media (max-width: 992px) {
    .song-card {
        width: 83.33%;
    }
}

@media (max-width: 768px) {
    .song-card {
        width: 100%;
    }
}

@media only screen and (min-width: 868px) {
    .container {
        max-width: 868px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }
}

    
/*Search*/

.search-bar {
  width: 50%;
}

.search-bar form {
  display: flex;
  width: 100%;
}

.search-bar input {
  width: 80%;
  padding: 10px;
  border: none;
  border-radius: 00.25rem 0 0 00.25rem;
}

.search-bar button {
  width: 20%;
  padding: 10px;
  border: none;
  border-radius: 0 0.25rem 0.25rem 0;
  background-color: #8B0A1A;
  color: #fff;
  cursor: pointer;
}

.large-screen {
  display: block;
}

.small-screen {
  display: none;
}

@media only screen and (max-width: 768px) {
    .large-screen {
        display: none;
    }
    .small-screen {
        display: block;
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }
    .small-screen form {
        width: 100%;
        display: flex;
    }
    .small-screen input {
        width: 80%;
        padding: 10px;
    }
    .small-screen button {
        width: 20%;
        padding: 10px;
    }
}



/* social media */
.social-icons {
  font-size: 26px;
  color: #000;
}

.custom-hr {
  border-top: 1px dashed #ccc;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.details-header {
    font-size: 20px;
    font-weight: medium;
    color: black;
    text-align: center;
}

.detail-label {
    font-size: 16px;
    font-weight: bold;
    color: black;
    width: 120px;
}

.song-detail {
    font-size: 16px;
    color: #FF69B4;
}

.position-relative {
    height: 280px;
    width: 100%;
    position: relative;
}



.song-info {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
}

@media (max-width: 767px) {
    .song-info h2 {
        font-size: 16px;
    }
    .song-info p {
        font-size: 14px;
    }
}

.sala-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 280px;
    border-radius: 5px;
    z-index: 1;
    display: none;
}

@media (min-width: 768px) {
    .sala-image {
        display: block;
    }
    .position-relative {
        width: 890px;
    }
}

  
    



/* icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 40px; /* icon size */
  animation: shake 2s infinite;
  z-index: 1000;
  display: none; /* hidden by default */
}

@media (max-width: 768px) {
  .whatsapp-icon {
    display: block; /* show on screens <= 768px wide */
  }
}

.whatsapp-icon a {
  color: #25D366; /* WhatsApp green */
  text-decoration: none;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

  
   /* footer */
  
.nav-links {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.nav-links a {
  margin: 0 20px;
  text-decoration: none;
  font-size: 18px;
}

.footer .nav-links a.top-100 {
  color: #FF69B4 !important; /* pink */
}

.footer .nav-links a.news {
  color: #FF0000 !important; /* red */
}

.footer .nav-links a.upload {
  color: #800080 !important; /* purple */
}

.social-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-links a {
  color: #000;
  margin: 0 15px;
  font-size: 24px;
}

.footer {
  text-align: center;
}