body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  
}

.container {
  width: 100%;
  max-width: 480px;
  margin: 2em auto;
  border-radius: 0.2m;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5em;
  color: white;
}

h1 {
  font-size: 1.3em;
  color: #fefefe;
  text-align: center;
  margin-bottom: 1em;
}

video {
  width: 100%;
  height: 55px;
  font-size: 18px;
  color: white;
}

/* Make video controls bigger (WebKit browsers) */
video::-webkit-media-controls-play-button {
  transform: scale(1.5);
}
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-fullscreen-button,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
  transform: scale(1.15);
  margin: 0 10px;
  color: white
}
/* Make control bar taller */
video::-webkit-media-controls-panel {
  height: 55px;
  background-color: #737188;
  color: white;
  border-radius: 0.1em;
}


.lyrics {
  padding: 15px;
  .content {
    white-space: pre-line;
    font-family: 'Noto Serif SC', 'serif', 'Microsoft YaHei', 'SimHei', Arial, sans-serif;
    font-size: 0.9em;
    line-height: 1.8;
    border-radius: 0.6em;
    padding: 0 1.1em;
    margin: 0;
    box-shadow: 2px 4px 9px rgb(58 56 173 / 58%);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0;
  }

  h1 {
    font-size: 1em;
  }
}




