body {
  background-color: #95ffc9;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: violet;
  text-align: center;
}

h1 {
  color: #95ffc9;
  font-family: 'Audiowide', sans-serif;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

h2 {
  color: #95ffc9;
  font-family: 'Audiowide', sans-serif;
  font-weight: 400;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

h3 {
  color: #95ffc9;
  font-family: 'Audiowide', sans-serif;
  font-weight: 500;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

h4 {
  color: #95ffc9;
  font-family: 'Audiowide', sans-serif;
  font-weight: 600;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

h5 {
  color: #95ffc9;
  font-family: 'Datatype', sans-serif;
  font-weight: 600;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

h6 {
  color: #95ffc9;
  font-family: 'Audiowide', sans-serif;
  font-weight: 400;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

p,
ul,
il {
  color: violet;
  color: #95ffc9;
  font-family: 'Genos', sans-serif;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

ul {
  padding-left: 0;
  text-align: left;
  list-style-position: inside;
}

a:link {
  transition: 0.6s ease;
  color: #95ffc9;
  text-decoration: none;
  text-shadow: 0 0 5px #95ffc9, 0 0 10px #95ffc9, 0 0 20px #95ffc9;
}

a:visited {
  transition: 0.6s ease;
  color: #000000;
  text-decoration: none;
  text-shadow: 0 0 5px #2f4f4f, 0 0 10px #2f4f4f, 0 0 20px #2f4f4f;
}

a:link:hover {
  transition: 0.6s ease;
  color: #ee82ee;
  text-shadow: 0 0 5px #ff00ff, 0 0 15px #ff00ff, 0 0 30px #ff00ff;
}

a:visited:hover {
  transition: 0.6s ease;
  color: #95ffc9;
  text-shadow: 0 0 5px #ff06b5, 0 0 15px #ff06b5, 0 0 30px #ff06b5;
}

a:active {
  transition: 0.6s ease;
  color: white;
  text-shadow: 0 0 5px #95ffc9, 0 0 15px #95ffc9, 0 0 30px #95ffc9;
}

@keyframes scanlines {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 24px;
  }
}

@keyframes neonPulse {
  0% {
    box-shadow: 0 0 6px #ff00ff,
      0 0 16px #ff00ff,
      0 0 28px rgba(0,255,255,0.4);
    border-color: #ee82ee;
  }
  50% {
    box-shadow: 0 0 6px #ff06b5,
      0 0 16px #ff06b5,
      0 0 28px rgba(255,0,255,0.4);
    border-color: #ff00ff;
  }
  100% {
    box-shadow: 0 0 6px #ff00ff,
      0 0 16px #ff00ff,
      0 0 28px rgba(0,255,255,0.4);
    border-color: #ee82ee;
  }
}

.layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.topbar a:visited,
.sidebar a:visited,
.bottombar a:visited {
  color: #95ffc9;
  text-shadow: 0 0 5px #ff00ff,
               0 0 10px #ff00ff,
               0 0 20px #ff00ff;
}

.topbar a:visited:hover,
.sidebar a:visited:hover,
.bottombar a:visited:hover {
  color: #ee82ee;
  text-shadow: 0 0 5px #ff00ff,
               0 0 10px #ff00ff,
               0 0 20px #ff00ff; 
}

.sidebar {
  position: relative;
  box-shadow: 0 0 6px #ff00ff, 0 0 16px #ff00ff, 0 0 28px rgba(0,255,255,0.4);
  border: 2px solid #ee82ee;
  width: 220px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.45);
  color: black;
}

.left {
  border-radius: 6px 28px 6px 28px;
  background: rgba(0, 0, 0, 0.45);
}

.right {
  border-radius: 28px 6px 28px 6px;
  background: rgba(0, 0, 0, 0.45);
}

.sidebar .scanlines,
.sidebar::marker {
  display: none;
}

.sidebar::selection {
  background: transparent;
}

.sidebar::before,
.sidebar::after {
  z-index: 1;
}

.sidebar::before {
  pointer-events: none;
}

.sidebar {
  position: relative;
  animation: scanlines 8s linear infinite;
  box-shadow: 0 0 6px #ff00ff, 0 0 16px #ff00ff, 0 0 28px rgba(0,255,255,0.4);
  border: 2px solid #ee82ee;
  width: 220px;
  padding: 15px;
  background-image: repeating-linear-gradient( to bottom, rgba(0,255,255,0.08) 0px, rgba(0,255,255,0.08) 1px, transparent 2px, transparent 6px );
  background-size: auto, auto, auto;
  color: white;
}

.topbar {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: scanlines 8s linear infinite;
  box-sizing: border-box;
  box-shadow: 0 0 6px #ff00ff, 0 0 16px #ff00ff, 0 0 28px rgba(0,255,255,0.4);
  border: 2px solid #ee82ee;
  border-radius: 9px 9px 28px 28px;
  width: 100%;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.45);
  background-image: repeating-linear-gradient( to bottom, rgba(0,255,255,0.08) 0px, rgba(0,255,255,0.08) 1px, transparent 2px, transparent 6px );
  color: white;
}

.topbar a,
.topbar p {
  margin: 0px 16px;
  font-size: 1.5rem;
}

.content {
  position: relative;
  flex: 1;
  overflow: hidden;
  box-shadow: 0 0 8px #ff00ff, 0 0 18px #ff00ff, 0 0 30px rgba(0,255,255,0.25);
  border: 2px solid #ee82ee;
  border-radius: 28px 9px 28px 9px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
  color: white;
}

.content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  animation: scanlines 8s linear infinite;
  border-radius: 28px 9px 28px 9px;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient( to bottom, rgba(0, 255, 255, 0.08) 0px, rgba(0, 255, 255, 0.08) 1px, transparent 2px, transparent 6px );
  mix-blend-mode: screen;
  pointer-events: none;
}

.sticker-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.sticker-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sticker {
  display: block;
  will-change: transform;
  transition: transform 1s ease, filter 0.15s ease;
  width: 50px;
  height: auto;
  user-select: none;
  cursor: help;
}

.sticker:hover {
  transform: scale(2.3);
  filter: drop-shadow(0 0 6px #ff00ff) drop-shadow(0 0 10px #95ffc9);
}

.sticker:active {
  transform: scale(2.3);
  cursor: help;
}

footer {
  margin-top: 20px;
}

.bottombar {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: scanlines 8s linear infinite;
  box-sizing: border-box;
  box-shadow: 0 0 6px #ff00ff, 0 0 16px #ff00ff, 0 0 28px rgba(0,255,255,0.4);
  border: 2px solid #ee82ee;
  border-radius: 28px 28px 9px 9px;
  width: 100%;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.45);
  background-image: repeating-linear-gradient( to bottom, rgba(0,255,255,0.08) 0px, rgba(0,255,255,0.08) 1px, transparent 2px, transparent 6px );
  color: white;
}

.bottombar a,
.bottombar p {
  margin: 0px 16px;
  font-size: 1.5rem;
}

.player {
  position: relative;
  align-items: center;
  justify-content: center;
  animation: scanlines 8s linear infinite,
    neonPulse 6s ease-in-out infinite;
  box-shadow: 0 0 6px #ff00ff,
    0 0 16px #ff00ff,
    0 0 28px rgba(0,255,255,0.4);
  margin: auto;
  border: 2px solid #ee82ee;
  border-radius: 9px 28px 9px 28px;
  width: 320px;
  height: 180px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.45);
  background-image: repeating-linear-gradient(
      to bottom,
      rgba(0,255,255,0.08) 0px,
      rgba(0,255,255,0.08) 1px,
      transparent 2px,
      transparent 6px
    );
  color: white;
}

.player h5,
.player h6,
.player p {
  margin: 4px 0;
  font-size: 0.7rem;
}

.player h6 {
  margin: 4px 0;
  font-size: 0.6rem;
}

#playBtn,
#muteBtn {
  transition: 2.5s ease;
  box-shadow: 0 0 5px #95ffc9,
    inset 0 0 5px rgba(0,255,255,0.3);
  margin: 0px 40px;
  border: 2px solid #95ffc9;
  border-radius: 6px 14px 6px 14px;
  padding: 6px 9px;
  background: rgba(0, 0, 0, 0.6);
  color: #95ffc9;
  text-shadow: 0 0 5px #95ffc9,
    0 0 10px #95ffc9;
  cursor: pointer;
}

#playBtn:hover,
#muteBtn:hover {
  box-shadow: 0 0 8px #ff00ff,
    0 0 18px #ff00ff;
  border-color: #ee82ee;
  color: #ff00ff;
  text-shadow: 0 0 5px #ff00ff,
    0 0 15px #ff00ff;
}

#progressBar {
  overflow: hidden;
  transition: 2.5s ease;
  box-shadow: 0 0 5px #95ffc9,
    inset 0 0 5px rgba(0,255,255,0.3);
  margin: 12px 0;
  border: 1px solid #95ffc9;
  border-radius: 999px;
  width: 100%;
  height: 10px;
  background: rgba(0,0,0,0.6);
}

#progressBar:hover {
  transition: 2.5s ease;
  box-shadow: 0 0 6px #ff00ff, 0 0 16px #ff00ff, 0 0 28px rgba(0,255,255,0.4);
  border-color: #ee82ee;
  color: #95ffc9;
}

#progress {
  box-shadow: 0 0 8px #95ffc9,
    0 0 16px #ff00ff;
  margin: 1px,1px;
  width: 0%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #95ffc9,
    #ff00ff
  );
}

.time {
  margin: 1px 1px;
  color: #95ffc9;
  font-family: 'Audiowide', sans-serif;
  font-size: 0.6rem;
  text-shadow: 0 0 5px #ff00ff,
    0 0 10px #ff00ff;
}

#volume {
  transition: 2.5s ease;
  margin-top: 12px;
  width: 100%;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

#volume::-webkit-slider-runnable-track {
  transition: 2.5s ease;
  box-shadow: 0 0 5px #95ffc9,
    inset 0 0 5px rgba(0,255,255,0.3);
  border: 1px solid #95ffc9;
  border-radius: 999px;
  height: 10px;
  background: rgba(0, 0, 0, 0.6);
}

#volume::-webkit-slider-runnable-track:hover {
  transition: 2.5s ease;
  box-shadow: 0 0 6px #ff00ff, 0 0 16px #ff00ff, 0 0 28px rgba(0,255,255,0.4);
  border-color: #ee82ee;
  color: #95ffc9;
}

#volume::-webkit-slider-thumb {
  transition: 2.5s ease;
  box-shadow: 0 0 5px #ff00ff,
    0 0 10px #ff00ff,
    inset 0 0 4px #95ffc9;
  margin-top: -5px;
  border: 2px solid #ee82ee;
  border-radius: 4px 8px 4px 8px;
  width: 18px;
  height: 18px;
  background: black;
  -webkit-appearance: none;
  appearance: none;
}

#volume::-webkit-slider-thumb:hover {
  box-shadow: 0 0 8px #95ffc9,
    0 0 16px #95ffc9,
    inset 0 0 4px #ff00ff;
  border-color: #95ffc9;
}
