.mofulyrics-share {
  display: grid;
  row-gap: 20px;
  word-break: initial;
  margin: 30px 0;
  padding: 0 16px;
}

.share-title {
  display: flex;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-title h3 {
  display: inline-block;
  font-size: 17px;
  padding: 0 30px 11px;
  margin: 0;
  border-bottom: 1px solid;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-color: #c4c4c4;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.share-button {
  display: inline-flex;
  padding: 12px 17px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.share-button:hover {
  opacity: 0.85;
}

.share-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.share-button:active::after {
  width: 100px;
  height: 100px;
  transition: 0s;
}

.share-facebook { background: linear-gradient(145deg, #3b5998, #2d4373); }
.share-twitter { background: linear-gradient(145deg, #1a202c, #2d3748); }
.share-whatsapp { background: linear-gradient(145deg, #25d366, #20b558); }
.share-line { background: linear-gradient(145deg, #00b900, #009900); }
.share-telegram { background: linear-gradient(145deg, #0088cc, #006699); }
.share-reddit { background: linear-gradient(145deg, #ff4500, #cc3700); }
.share-linkedin { background: linear-gradient(145deg, #0077b5, #005f8c); }
.share-pinterest { background: linear-gradient(145deg, #e60023, #b8001c); }
.share-copy { background: linear-gradient(145deg, #3182ce, #2b6cb0); }
.share-copy.copied { background: linear-gradient(145deg, #38a169, #2f855a); }

.share-button i {
  font-size: 22px;
  color: #ffffff;
}

.share-toast {
  position: fixed;
  bottom: 125px;
  right: 20px;
  background: linear-gradient(145deg, #2d3748, #1a202c);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  z-index: 1000;
}

.share-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.share-toast i {
  font-size: 16px;
  color: #ffffff;
}