* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
  font-family: "DM Sans", sans-serif;
}

header {
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(rgba(183, 144, 255, 0.2), rgba(18, 74, 171, 0.4)), url("../background.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: "Blanka", sans-serif;
  letter-spacing: 0.3rem;
  font-size: 3.5rem;
  margin-bottom: 0.625rem;
  text-shadow: 0 0 2rem #ffffff;
}

.header-content {
  text-align: center;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1.25rem;
  max-width: 35rem;
}

.scroll-hint {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.container {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #7d93f6, #66a1e5, #b19bed, #99a2e9);
  background-size: 200% 200%;
  gap: 2rem;
  padding: 2rem 0;
}

.container > * {
  max-width: 64rem;
  width: 100%;
  margin: 0 auto;
}

.artists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 0.2rem;
  margin-bottom: 3rem;
}

.lyrics-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 1rem;
}

.lyrics-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.color-key {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: bold;
}

.section-label {
  font-weight: 600;
  letter-spacing: 0.12rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.verse {
  margin-bottom: 2rem;
  padding: 1.25rem;
  border-left: 0.25rem solid rgba(255, 255, 255, 0.6);
}

.chorus,
.post-chorus {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 1.25rem;
  margin-bottom: 2rem;
  border-left: 0.25rem solid rgba(255, 255, 255, 0.6);
}

.rumi {
  color: #6600ff;
}

.zoey {
  color: #1151ff;
}

.mira {
  color: #9d174d;
}

.translation {
  font-style: italic;
}

.highlight {
  color: #ffffbb;
  font-weight: bold;
  text-shadow: 0 0 1.25rem #ffffbb80;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1.25rem;
  margin-top: 2.5rem;
}

footer p {
  max-width: 40rem;
}
