.about-links-entry {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.about-links-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(48, 169, 222, 0.45);
  border-radius: 6px;
  color: #30a9de;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.about-links-button:hover {
  border-color: #30a9de;
  background-color: rgba(48, 169, 222, 0.12);
  color: #30a9de;
  text-decoration: none;
}

.netease-music-player {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.netease-music-toggle {
  min-width: 3.5rem;
  height: 2.4rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(48, 169, 222, 0.5);
  border-radius: 6px;
  background: rgba(31, 49, 68, 0.92);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.netease-music-toggle:hover {
  border-color: #30a9de;
  background: rgba(47, 65, 84, 0.96);
}

.netease-music-panel {
  display: none;
  width: 330px;
  max-width: calc(100vw - 2rem);
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.netease-music-player.is-open .netease-music-panel {
  display: block;
}

.netease-music-panel iframe {
  display: block;
  width: 100%;
  border: 0;
}

.soft-navigation-loading main {
  opacity: 0.68;
  transition: opacity 0.16s ease;
}

@media (max-width: 576px) {
  .netease-music-player {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .netease-music-panel {
    width: calc(100vw - 1.5rem);
  }
}
