body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e0e;
  color: #fff;
  overflow: hidden;
}

.artists-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* tam ortala */
  gap: 20px; /* kartlar arası boşluk */
  padding: 30px 60px;
  box-sizing: border-box;
}

.artist-block {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid transparent; /* <-- çözüm bu */
  box-shadow: 0 0 0 2px transparent;
  transition: all 0.7s ease;
  overflow: hidden;
  z-index: 1;
}

.artist-block:hover {
  box-shadow: 0 0 20px 6px #525252aa;
  border: 1px solid #ffffff;
}


.artist-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.artist-block:hover::before {
  opacity: 0.2;
}

.artist-text {
  flex: 1;
  z-index: 2;
}

.artist-text h2 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: #666666;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.artist-text .role {
  font-style: italic;
  color: #ccc;
  margin-bottom: 10px;
}

.artist-text p {
  line-height: 1.5;
  color: #ddd;
  margin-bottom: 15px;
}

.spotify-link img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.spotify-link img:hover {
  transform: scale(1.1);
}
/* Diğer stiller zaten var, şimdi sadece Instagram logosunu ekliyoruz */

.social-links {
  display: flex;
  gap: 20px; /* Spotify ve Instagram arasında boşluk */
}

.social-links img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Hover animasyonu */
.social-links img:hover {
  transform: scale(1.1); /* Hover'da ikonu büyüt */
}

/* Spotify ve Instagram logoları */
.spotify-link img {
  /* Spotify'ın kendi logosu için ek stil */
}

.instagram-link img {
  /* Instagram logosu için ek stil */
}

/* Sayfa genel stilleri */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

/* Video stilini ayarlıyoruz */
#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; 
  opacity: 0.3; 
}

/* Diğer içeriklerin üstte görünmesini sağlıyoruz */
.artists-wrapper {
  position: relative;
  z-index: 1;
  /* Diğer stiller burada kalacak */
}

/* Header kısmı */
header {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000; /* Her zaman ön planda olmalı */
}

/* Logo stilini ayarlıyoruz */
.logo {
  width: 100px; /* İstediğin boyutta yapabilirsin */
  height: auto;
  cursor: pointer; /* Tıklanabilir hale getiriyoruz */
  transition: transform 0.3s ease;
}

/* Hover efekt */
.logo:hover {
  transform: scale(1.1); /* Hover'da büyüme efekti */
}

.title {
  font-size: 48px;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8); /* Başlangıçta hafif glow */
  transition: text-shadow 0.3s ease; /* Yumuşak geçiş */
}

/* Hover efekti */
.title:hover {
  text-shadow: 0 0 20px rgba(88, 88, 88, 0.8), 0 0 30px rgba(255, 255, 255, 0.6); /* Hover'da daha parlak */
}


/* Başlık container'ı */
.title-container {
  position: relative;
  text-align: center;
  z-index: 1; /* Başlık her zaman ön planda */
}


/* Partiküller için container */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Partiküller tıklanabilir olmayacak */
  z-index: 0;
}

/* Partiküller */
.particles::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: rgba(250, 193, 21, 0.8);
  border-radius: 50%;
  animation: particle-move 3s infinite ease-in-out;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

/* Partikülleri rastgele hareket ettirme */
@keyframes particle-move {
  0% {
    transform: translate(-50%, -50%) translateX(0) translateY(0);
  }
  25% {
    transform: translate(-50%, -50%) translateX(80px) translateY(-80px);
  }
  50% {
    transform: translate(-50%, -50%) translateX(0) translateY(80px);
  }
  75% {
    transform: translate(-50%, -50%) translateX(-80px) translateY(80px);
  }
  100% {
    transform: translate(-50%, -50%) translateX(0) translateY(0);
  }
}

.social-links i {
  font-size: 28px;
  color: white;
  margin-right: 5px; /* Eskiden 10px'ti, azalttık */
  transition: 0.3s ease;
}

.social-links i:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.social-links i:last-child {
  margin-right: 0;
}
