@font-face {
  font-family: "Vespertine";
  src: url("https://fontsforyou.com/fonts/v/Vespertine.ttf");
}

@font-face {
  font-family: "ThatILoveYouTtf";
  src: url("https://fontsforyou.com/fonts/t/ThatILoveYouTtf.ttf");
}

@font-face {
    font-family: "Echelon Regular W00 Regular";
    src: url("https://db.onlinewebfonts.com/t/556886c8fdcecd79248acce6db348014.eot");
    src: url("https://db.onlinewebfonts.com/t/556886c8fdcecd79248acce6db348014.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/556886c8fdcecd79248acce6db348014.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/556886c8fdcecd79248acce6db348014.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/556886c8fdcecd79248acce6db348014.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/556886c8fdcecd79248acce6db348014.svg#Echelon Regular W00 Regular")format("svg");
}
body {
  background-image: url('/images/music-room.JPG');
  background-position: top center;
  background-size: cover; 
  background-repeat: no-repeat;
  background-attachment: fixed; 
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden; 
}

.first-header {
  display: flex;
  align-items: center;
  width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
}
.yes a {
  color: inherit;
  text-decoration: none;
  width: 7vw;
  margin-top: 1%;
  margin-left: 8%;
  font-size: 7vw;
  font-weight: bold;
  color: #ee3fa5;
  font-family: 'Vespertine', sans-serif;
  box-sizing: border-box;
}
.yes {
  width: 7vw;
  margin-top: 1%;
  margin-left: 8%;
  font-size: 7vw;
  font-weight: bold;
  color: #ee3fa5;
  font-family: 'Vespertine', sans-serif;
  box-sizing: border-box;
}
.lyric-marquee-wrapper {
  width: 85vw;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 16px 0;
  box-sizing: border-box;
}
.lyric-marquee {
  width: 100%;
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  width: max-content;
}
.scroll-ltr {
  animation: scrollLeftToRight 60s linear infinite;
}
.scroll-rtl {
  animation: scrollRightToLeft 60s linear infinite;
}
.marquee-track:has(.lyric-brick:hover) {
  animation-play-state: paused;
}
.marquee-group {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}
.lyric-brick {
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  color: #ee3fa5;
  padding: 1px;

  font-family: sans-serif;
  font-size: 1.3vh;
  line-height: 1.3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  
  white-space: normal;
  word-break: break-word;
  overflow: auto;
  text-overflow: ellipsis;

  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}
.lyric-brick a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.lyric-brick:hover {
  background: #ee3fa567;
  transform: scale(1.08);
}
@keyframes scrollLeftToRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}
@keyframes scrollRightToLeft {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.pixel-horse{
  width: 100vw;
  box-sizing: border-box;
  padding: 50px 20px;
  overflow-x: hidden;
}
.horse-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, auto);
  gap: 3px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.horse-grid > div {
  width: 100%;
  height: 100%;
}
.album-pixel {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.25s ease, z-index 0.25s ease, box-shadow 0.25s ease;
}
.album-pixel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-2x2 {
  aspect-ratio: auto;
}
.album-pixel:hover {
  transform: scale(1.4);
  z-index: 20;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.8);
}


.bottom-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.container-title {
  font-family: 'Echelon Regular W00 Regular', sans-serif;
  margin-top: 0;
  margin-bottom: 15px;
  color: #f090c1;
  font-size: 1.4rem;
}
.songs-container {
  flex: 1;
  max-height: 365px;
  overflow-y: auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  font-family: 'DotGothic16', sans-serif;
  color: #9a7186;
  font-size: 0.7rem;

}
.songs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.songs-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.songs-list li:last-child {
  border-bottom: none;
}

.performances-container {
  flex: 1;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}

.video-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: scroll;
  max-height: 285px;

}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

