.sc-slider {
  max-width: 900px;
  margin: 40px auto;
  color: #ccc;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.soundcloud-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border: 2px solid #cc1f1f;
  box-shadow: 0 0 18px rgba(204, 31, 31, 0.45);
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

.soundcloud-wrapper iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.sc-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.sc-btn {
  justify-self: start;
  background: #0f0f0f;
  color: #e1e1e1;
  border: 1px solid #2a2a2a;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, border-color .2s ease;
}
.sc-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.35); border-color:#3a3a3a; }
.sc-btn:active { transform: translateY(0); }

.sc-next { justify-self: end; }

.sc-dots {
  display: flex; gap: 8px; justify-content: center; align-items: center;
}
.sc-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #555; border: 1px solid #777;
  cursor: pointer; transition: transform .1s ease, background .2s ease;
}
.sc-dot:hover { transform: scale(1.15); }
.sc-dot.active {
  background: #cc1f1f;
  border-color: #cc1f1f;
  box-shadow: 0 0 12px rgba(204,31,31,.7);
}

.sc-meta {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  color: #bdbdbd;
  opacity: .95;
}
.sc-meta a {
  color: #cc1f1f; text-decoration: none;
}
.sc-meta a:hover { text-decoration: underline; }
