/* Share Buttons Container */
.share-buttons-container {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-card:hover .share-buttons-container {
  opacity: 1;
}

/* Static container for modal/lyrics */
.share-buttons-container.static {
  position: static;
  opacity: 1;
}

/* Individual Share Button */
.share-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.share-icon-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 8px rgba(0,0,0,0.6);
}

.share-icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Brand Colors */
.btn-fb {
  background: #1877F2; /* Facebook Blue */
}

.btn-insta {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); /* Insta Gradient */
}

/* Mobile: Always show */
@media (max-width: 768px) {
  .share-buttons-container {
    opacity: 1;
  }
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2000;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Share Options Modal */
.share-options-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.share-options-content {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  border: 1px solid #333;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
}

.share-options-content h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.5rem;
}

.share-preview-text {
  background: #2a2a2a;
  padding: 15px;
  border-radius: 8px;
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-align: left;
  font-style: italic;
  border-left: 3px solid var(--accent);
}

.share-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.share-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  font-size: 1rem;
}

.share-action-btn:hover {
  transform: translateY(-2px);
}

.btn-native { background: var(--accent); color: white; }
.btn-facebook { background: #1877F2; color: white; }
.btn-copy { background: #333; color: white; border: 1px solid #555; }

.close-share {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}
