body {
    margin: 0;
    background: #000;
    color: #eaeaea;
    font-family: Consolas, Menlo, Monaco, monospace;
}

.soc-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soc-player {
	width: 760px;
    padding: 32px;
    border: 1px solid #9A26B5;
    background: linear-gradient(135deg, #000, #0b0b0b);
    border-radius: 15px;
}

.soc-cmd {
    color: #03E08F;
    font-size: 14px;
}

.soc-track {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 600;
}

.soc-meta {
    margin-top: 4px;
    font-size: 14px;
    color: #aaa;
}

.soc-row {
    margin-top: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.soc-cover {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.15);
    background: #111;
}

.soc-controls {
    flex: 1;
}

.soc-bar {
    height: 6px;
    background: #222;
    position: relative;
    cursor: pointer;
    margin: 10px 0;
}

.soc-bar span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #9225AC;
}

.soc-controls-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

#playBtn {
    background: none;
    border: 1px solid #444;
    color: #fff;
    padding: 6px 14px;
    cursor: pointer;
}

#playBtn:hover {
    border-color: #fff;
}

.soc-time {
    font-size: 13px;
    color: #aaa;
    width: 60px;
    text-align: right;
}

#volume {
    width: 90px;
    accent-color: #9225AC;
}
.soc-hint {
    margin-top: 6px;
    font-size: 25px;
    color: #f91212;
    letter-spacing: .02em;
    text-align: left;
}
.soc-variant {
    margin-top: 14px;
    font-size: 24px;
    color: #aaa;
}

.soc-alt-link {
    color: #0070c9;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-bottom: 1px dotted #0070c9;
    transition: all 0.2s ease;
}

.soc-alt-link:hover {
    color: #9225AC;
    border-bottom-color: #9225AC;
}
.go-home-div {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px; /* space from player */
}

.go-home-button {
  padding: 12px 28px;
  color: #fff;
  text-decoration: none;
  font-family: inherit;

  background: linear-gradient(
    130deg,
    rgba(151, 38, 178, 1) 94%,
    rgba(0, 0, 0, 0) 95%
  );

  border-radius: 4px;
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.go-home-button:hover {
  opacity: 1;
  transform: translateY(-1px);
}
