/* repixel.de mucke player 2026 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-size: clamp(14px, 1.2vw, 16px);
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(45deg, red, violet, blue, cyan, green, yellow, orange, red);
  background-size: 400% 400%;
  animation: bodyBgAnimation 12s ease infinite;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100%;
  font-size: 100%;
  line-height: 1.5;
  min-height: 100vh;
  overflow: hidden;
}

/* ---------------- BASE LAYERS ---------------- */
.layer { position: absolute; }

/* ---------------- LEFT ---------------- */
.left {
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  animation-delay: 2s;
}

.left::before {
  content: "";
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(270deg, red, violet, blue, cyan, green, yellow, orange, red);
  background-size: 400% 100%;
}

/* ---------------- RIGHT ---------------- */
.right {
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  animation-delay: 8s;
}

.right::before {
  content: "";
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background: linear-gradient(270deg, red, orange, yellow, green, cyan, blue, violet, red);
  background-size: 400% 100%;
}

/* ---------------- TOP ---------------- */
.top {
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
}

.top::before {
  content: "";
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: linear-gradient(180deg, red, orange, yellow, green, cyan, blue, violet, red);
  background-size: 100% 400%;
}

/* ---------------- BOTTOM ---------------- */
.bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
}

.bottom::before {
  content: "";
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
  background: linear-gradient(180deg, red, violet, blue, cyan, green, yellow, orange, red);
  background-size: 100% 400%;
}

/* ---------------- ANIMATIONS ---------------- */
@keyframes flowX {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes flowY {
  0%   { background-position: 50% 0%; }
  100% { background-position: 50% 100%; }
}

@keyframes bodyBgAnimation {
  0%   { background-position: 0% 0%; }
  25%  { background-position: 100% 0%; }
  50%  { background-position: 100% 100%; }
  75%  { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

/* rotation + flow (your intended final behavior) */
.left::before,
.right::before {
  animation: rotate 12s linear infinite, flowX 8s linear infinite;
}

.top::before,
.bottom::before {
  animation: rotate 12s linear infinite, flowY 8s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---------------- CENTER CONTAINER ---------------- */
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: calc(98% - 1%);
  max-width: 600px;

}
*, .container, a, a:link, a:visited ,
ul.songlist {  color: white !important; text-align: center;} 
/* ---------------- SONG LIST ---------------- */
ul.songlist {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

ul.songlist li {
  padding: 0.8rem;
  border-radius: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}

ul.songlist li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

ul.songlist li h3 {
  margin: 0.6em auto;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.3;
}

ul.songlist li p {
  font-size: clamp(0.8rem, 2.2vw, 0.95rem);
  opacity: 0.7;
}

/* ---------------- TITLE ---------------- */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0.6em 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

/* ---------------- TEXT ---------------- */
p {
  font-size: clamp(1rem, 2.5vw, 1.7rem);
  margin: 10px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ---------------- BACK LINK ---------------- */
.back2trax {
  font-size: clamp(1rem, 3vw, 26px);
}



 
#hp, 
.hide, .hidden{ /*visiblity:hidden !important; display:none !important; */
  position: fixed;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0px !important;
  padding: 0px !important;
  margin: 0px !important;
  pointer-events: none !important;
}