* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #151514;
  color: #d4d4d3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  padding: 1.5rem;
  position: relative;
}

.gs-divider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  padding: 0;
  margin: 0;
  background: #1e5799;
  background: -moz-linear-gradient(left, #1e5799 0, #f300ff 50%, #e0ff00 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #1e5799), color-stop(50%, #f300ff), color-stop(100%, #e0ff00));
  background: -webkit-linear-gradient(left, #1e5799 0, #f300ff 50%, #e0ff00 100%);
  background: -o-linear-gradient(left, #1e5799 0, #f300ff 50%, #e0ff00 100%);
  background: -ms-linear-gradient(left, #1e5799 0, #f300ff 50%, #e0ff00 100%);
  background: linear-gradient(to right, #1e5799 0, #f300ff 50%, #e0ff00 100%);
  border-bottom: 1px solid #000;
  z-index: 999;
}

.now-playing {
  position: fixed;
  top: 12px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(21, 21, 20, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid #353534;
  border-radius: 4px;
  padding: 8px 14px 8px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  max-width: 260px;
  min-width: 180px;
}

.album-art {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  border: 1px solid #2a2a29;
  object-fit: cover;
  flex-shrink: 0;
  background: #2a2a29;
}

.track-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.track-status {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 1px;
}

.track-status.playing {
  color: #b4e61e;
}

.track-name {
  font-size: 12px;
  font-weight: 600;
  color: #d4d4d3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 10px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

pre {
  color: #d4d4d3;
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 0 6px rgba(200, 200, 200, 0.05);
  background: rgba(0, 0, 0, 0.3);
  padding: 1.8rem 2.5rem;
  border-radius: 4px;
  border: 1px solid #353534;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 2.5rem;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: center;
  max-width: 780px;
  width: 100%;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.8rem;
  margin-top: 0.5rem;
}

.home-button {
  display: inline-block;
  background: transparent;
  color: #888;
  font-family: Impact, sans-serif;
  font-size: 18pt;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  padding: 8px 15px;
  border: none;
  border-radius: 4px 4px 0 0;
  transition: color 0.5s ease;
  cursor: pointer;
}

.home-button:hover {
  color: #fff;
}

.home-button:active {
  color: #aaa;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footnote {
  margin-top: 3rem;
  color: #4d4d48;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 1px solid #2e2e2c;
  padding-top: 1.2rem;
  width: 60%;
  text-align: center;
  opacity: 0.4;
}

@media (max-width: 600px) {
  pre {
    font-size: 0.6rem;
    padding: 1rem 1.2rem;
  }
  .home-button {
    font-size: 14pt;
    padding: 6px 12px;
  }
  .button-group {
    gap: 0.8rem;
  }
  .now-playing {
    max-width: 180px;
    min-width: 140px;
    padding: 6px 10px 6px 8px;
    top: 10px;
    right: 12px;
  }
  .album-art {
    width: 32px;
    height: 32px;
  }
  .track-name {
    font-size: 10px;
  }
  .track-artist {
    font-size: 9px;
  }
}


::selection {
  background: #4d4d48;
  color: #e6e4dc;
}