   .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #0a192f, #000); /* Arxa fon gradient */
}

.profile-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Şəkil və yazı arasındakı məsafə */
}

   .sidebar {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100%;
      background: #181818;
      color: #fff;
      box-shadow: -2px 0 8px rgba(0,0,0,0.4);
      transition: right 0.3s ease-in-out;
      z-index: 1000;
      padding: 20px;
    }

    .sidebar.active {
      right: 0;
    }

    .sidebar h3 {
      margin-top: 0;
      margin-bottom: 20px;
    }

    .sidebar button {
      display: block;
      width: 100%;
      background: #282828;
      color: #fff;
      border: none;
      padding: 12px;
      margin: 10px 0;
      border-radius: 8px;
      cursor: pointer;
      text-align: left;
      font-size: 16px;
      transition: background 0.2s;
    }

    .sidebar button:hover {
      background: #3e3e3e;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease-in-out;
      z-index: 999;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Profil ikonu */
    .profile-menu-btn {
      background: none;
      border: none;
      cursor: pointer;
      margin-left: 15px;
    }

    .profile-menu-btn img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
    } 
.profile {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

.profile-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.avatar {
    width: 180px; 
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1db954;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.follow-btn {
  background: #09a49f;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  color: #fff;
}

.playlists, .followers, .following {
  padding: 30px 40px;
}

.playlist-grid {
  display: flex;
  gap: 20px;
}

.playlist img {
  width: 150px;
  border-radius: 8px;
  cursor: pointer;
}

.circle-grid {
  display: flex;
  gap: 20px;
}

.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #181818;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.burning-text {
    font-size: 40px;
    margin: 10px 0;
}
