* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #000;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(5, 5, 5, 0.98);
  overflow-x: hidden;
  transition: 0.4s;
  border-right: 2px solid #b8996e;
}
.overlay-content {
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.overlay a {
  padding: 15px;
  text-decoration: none;
  font-size: 2.5rem;
  color: #fff;
  display: block;
  transition: 0.3s;
  font-family: serif;
  letter-spacing: 2px;
}
.overlay a:hover {
  color: #b8996e;
  transform: scale(1.05);
}
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  color: #b8996e;
}
/* HEADER & LOGO */
.header {
  display: flex;
  align-items: center;
  justify-content: center; /* Logoyu ortalar */
  padding: 20px;
  position: relative;
}
.hamburger {
  position: absolute;
  left: 20px;
  font-size: 30px;
  cursor: pointer;
}
.logo-img {
  height: 60px; /* Logonuzun boyutuna göre ayarlayın */
}
.artist-card:hover {
  transform: translateY(-5px);
}
.artist-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi ezmeden kutuya sığdırır */
}

.artist-grid {
  display: flex; /* Grid yerine flex kullanıyoruz */
  flex-wrap: wrap; /* Ekrana sığmadığında alt satıra geçmesini sağlar */
  justify-content: center; /* Kartları yatayda tam ortaya hizalar */
  gap: 15px; /* Kartlar arasındaki boşluk */
  padding: 20px 40px;
  max-width: 1800px;
  margin: 0 auto; /* Konteyneri sayfanın ortasına hizalar */
}

.artist-card {
  background: linear-gradient(
    to bottom,
    transparent 40%,
    #1e133d 70%,
    #0c335a 100%
  );
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;

  flex: 0 1 calc(20% - 15px);
  min-width: 250px;
  max-width: 300px;
}

.artist-image-container {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.store-icons,
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
  font-size: 18px;
}

.store-icons a,
.social-icons a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}
.store-icons a:hover,
.social-icons a:hover {
  color: #fff;
}

.player-controls {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.progress-bar {
  width: 100%;
  height: 4px;
  background: #555;
  border-radius: 2px;
  position: relative;
}
.progress-fill {
  width: 30%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
}
.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.play-btn {
  font-size: 24px;
  cursor: pointer;
}
.site-logo {
  height: auto;
  width: 11.5em;
  padding: 0px;
  margin: 0px;
  outline: 0px;
  margin-bottom: -45px;
}

@media (max-width: 1200px) {
  .artist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .artist-grid {
    grid-template-columns: 1fr;
  }
}
