h1 {
  font-family: 'Jersey 15', monospace;
  font-size: 36px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

button {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  display: inline-block;
  transition: transform 0.3s ease;
}

button img {
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 10px; /* İstersen */
}

button:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}



.kutu{
max-width: 50vh;}

    #lastfm-nowplaying {
      background: #1e1e1e;
      border-radius: 12px;
      padding: 12px 16px;
      max-width: 360px;
      margin: 20px auto 0;
      display: flex;
      align-items: center;
      font-family: 'Montserrat', sans-serif;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      color: #fff;
      user-select: none;
    }

    #lastfm-nowplaying img {
      width: 56px;
      height: 56px;
      border-radius: 8px;
      object-fit: cover;
      margin-right: 16px;
      flex-shrink: 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    }

    #lastfm-nowplaying .info {
      flex: 1;
      overflow: hidden;
    }

    #lastfm-nowplaying .info .artist {
      display: block;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      margin-bottom: 4px;
      color: #fff;
      opacity: 0.8;
    }

    #lastfm-nowplaying .info .title {
      font-size: 16px;
      font-weight: 700;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      color: #1DB954;
    }