/* side-cta.css */
.sticky-cta {
  position: fixed;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  background: #1e1e1e;
  color: white;
  padding: 12px 14px;
  border-radius: 12px 0 0 12px;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  width: 150px;
  font-family: sans-serif;
  transition: 0.3s ease;
}
.sticky-cta:hover {
  right: 0;
}
.sticky-cta h4 {
  margin: 0 0 8px 0;
  font-size: 14px;
  text-align: center;
}
.cta-link {
  display: block;
  margin: 6px 0;
  text-decoration: none;
  background: #444;
  padding: 6px 10px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  transition: 0.2s ease;
}
.cta-link:hover {
  background: #f90;
  color: #000;
}
.youtube {
  background: #ff0000;
}
.spotify {
  background: #1db954;
}
.future {
  background: #0af;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .sticky-cta {
    top: auto;
    bottom: 150px;
    right: 10px;
    transform: none;
    width: auto;
    border-radius: 10px;
  }
}
