body {
  font-family: "Chakra Petch", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #e0e0e0;
}

.header {
  background-image: url('/FFBack.jpg');
  background-size: cover;
  background-position: center;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);

  color: #e0e0e0; position: relative; overflow: hidden;
}

.header.home {
  height: 70vh; 
}
.header.inside {
  height: 40vh;
}

.header h1 {
  font-size: 4em;
  margin-bottom: 0.5em;
  animation: glow 2s ease-in-out infinite alternate;
}

.header h1 a {
  color: white !important;
  text-decoration: none;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #454f60, 0 0 20px #454f60, 0 0 35px #454f60, 0 0 40px #454f60, 0 0 50px #454f60;
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #454f60, 0 0 40px #454f60, 0 0 70px #454f60, 0 0 80px #454f60, 0 0 100px #454f60;
  }
}

.header p {
  font-size: 1.5em;
  margin-bottom: 2em;
  text-shadow: 0 0 6px #fff;
}

.social-links, .additional-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
}

.social-links a, .additional-links a {
  color: #e0e0e0;
  font-size: 2em;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-links a:hover, .additional-links a:hover {
  color: #454f60;
  transform: scale(1.2) rotate(5deg);
}

.album-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4em 10em;
  background-color: #1a1a1a;
}

.album-cover {
  flex: 1;
  text-align: right;
  padding-right: 2em;
}

.album-cover img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

.album-cover img:hover {
  transform: scale(1.05);
}

.album-info {
  flex: 1;
  padding-left: 2em;
}

.album-info h2 {
  font-size: 2.5em;
  margin-top: 0px;
  margin-bottom: 0.5em;
  color: #c7c7c7;
}

.album-info p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.streaming-links a {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 0.5em 1em;
  background-color: #333;
  color: #e0e0e0 !important;
  text-decoration: none !important;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.streaming-links a:hover {
  background-color: #454f60;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px #454f60;
}

.more-info {
  display: inline-block;
  margin-top: 1em;
  padding: 0.7em 1.5em;
  background-color: #454f60;
  color: #e0e0e0 !important;
  text-decoration: none !important;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.more-info:hover {
  background-color: #454f60;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px #454f60;
}

@media screen and (max-width: 999px) {
  .header {
    height: 40vh !important;
  }

  .header h1 {
    font-size: 2.5em;
  }

  .header p {
    font-size: 1.2em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .album-section {
    flex-direction: column;
    padding: 2em 1em;
  }

  .album-cover {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 2em;
  }

  .album-cover img {
    width: 100%;
    max-width: 400px;
  }

  .album-info {
    padding-left: 20px;
    padding-right: 20px;
  }
  .album-info h2 {
    margin-top: 0px;
  }
}

.footer {
    color: #e0e0e0; padding: 20px; text-align: center;
}

a, a:hover, a:visited, a:active {
    color: white;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.album-description {
  padding-top: 25px;
  line-height: 30px;
}

#album.container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 2em;
  background-color: #1a1a1a;
}

#album {
  .album-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2em;
  }
  
  .album-cover {
    flex: 1;
    margin-right: 2em;

    margin: 0 1%;
  }
  
  .album-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
  }
  
  .album-details {
    flex: 1;
    margin: 0 1%;
  }
  .album-details h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .album-details h3 small {
    font-weight: normal;
  }

  .album-more {
    flex: 1;
    margin: 0 1%;
  }
  
  .track-list {
    list-style-type: none;
    padding: 0;
  }
  
  .track-list li {
    margin-bottom: 1em;
    background-color: #121212;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .track-list li:hover {
    background-color: #2a2a2a;
    transform: translateX(10px);
  }
  
  .track-number {
    display: inline-block;
    width: 30px;
    margin-right: 1em;
    font-weight: bold;
    color: #454f60;
  }
  
  .streaming-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
    margin-top: 2em;
  }
  
  .streaming-links a {
    display: inline-block;
    padding: 0.7em 1.5em;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  /*.streaming-links a:hover {
    background-color: #454f60;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255,0,255,0.3);
  }*/
  
  .credits {
    margin-top: 2em;
    padding: 2em;
    background-color: #121212;
    border-radius: 5px;
    margin-bottom: 2em;
  }

  .credits h3, p {
    font-size: 90%;
  }
  .credits h3 {
    margin-top: 0px;
  }
  .credits p {
    margin-top: 10px;
    margin-bottom: 0px;
  }
  
  .back-link {
    display: inline-block;
    padding: 0.7em 1.5em;
    background-color: #454f60;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .back-link:hover {
    background-color: #454f60;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px #454f60;
  }
}

@media screen and (max-width: 999px) {
  #album {
    .album-info {
      flex-direction: column;
    }

    .album-cover,
    .album-details,
    .album-more {
      flex: none;
      width: 100%;
      margin: 1em 0;
    }

    .album-cover {
      margin-right: 0;
    }
  }

  .album-description {
    padding-top: 6px;
    line-height: 20px;
  }
}


li {
  list-style-type: none;
}

li a {
  display: block;
  text-decoration: none !important;
  color: inherit;
  padding: 14px;  
}

.track-number {
  margin-right: 10px;  /* Space between track number and song name */
}

#song.container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 2em;
  background-color: #1a1a1a;
}

#song {
  .track-details {
    background-color: #1a1a1a;
  }
  
  .track-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1em;
  }
  
  .track-number {
    font-size: 3em;
    font-weight: bold;
    color: #00deff;
    margin-right: 20px;
  }
  
  .track-duration {
    font-size: 1.2em;
    color: #00deff;
  }
  
  .track-content {
    display: flex;
    gap: 2em;
    margin-top: 2em;
  }
  
  .track-description, .track-lyrics {
    flex: 1;
  }
  
  .track-description {
    line-height: 1.6;
  }

  .track-description h2, .track-lyrics h2 {
    margin-top: 0px;
  }
  .track-lyrics h2 {
    margin-bottom: 0px;
  }
  
  .track-lyrics {
    background-color: #222;
    padding-left: 1em;
    padding-right: 1em;
    border-radius: 5px;
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
  }
  
  .streaming-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
    margin-top: 2em;
  }
  
  .streaming-links a {
    display: inline-block;
    padding: 0.7em 1.5em;
    background-color: #333;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .streaming-links a:hover {
    background-color: #454f60;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px #454f60;
  }
  
  .navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-right {
    text-align: right;
}

.nav-button {
    display: inline-block;
}

.previous-button {
    float: left;
}

.next-button {
    float: right;
}
  
  .nav-button {
    padding: 0.7em 1.5em;
    background-color: #333;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .nav-button:hover {
    background-color: #454f60;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px #454f60;
  }
  
  .back-link {
    display: inline-block;
    margin-top: 2em;
    padding: 0.7em 1.5em;
    background-color: #454f60;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .back-link:hover {
    background-color: #454f60;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px #454f60;
  }
  
  .waveform {
    width: 100%;
    height: 60px;
    background: linear-gradient(to right, #00deff, #ff00de);
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100"><path d="M0 50 Q 20 40, 40 50 T 80 50 T 120 50 T 160 50 T 200 50" fill="none" stroke="white" stroke-width="2" /></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100"><path d="M0 50 Q 20 40, 40 50 T 80 50 T 120 50 T 160 50 T 200 50" fill="none" stroke="white" stroke-width="2" /></svg>');
    mask-size: 200px 100%;
    -webkit-mask-size: 200px 100%;
    mask-repeat: repeat-x;
    -webkit-mask-repeat: repeat-x;
    animation: waveform 10s linear infinite;
  }
  
  @keyframes waveform {
    0% {
      mask-position: 0 0;
      -webkit-mask-position: 0 0;
    }
    100% {
      mask-position: 200px 0;
      -webkit-mask-position: 200px 0;
    }
  }
}

@media screen and (max-width: 999px) {
  .track-content {
    flex-direction: column;
  }
  #song {
    .navigation {
      flex-direction: column;
      align-items: center;
    }
    .nav-left {
      margin-bottom: 10px;
    }
  }
}