@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Quicksand:wght@400;500;700&display=swap');

:root {
  --cyan-normal: #f13b3b;
  --white: #ffffff;
  --moon: #6c3b3b;
  --light-gray: #efefef2c;
  --gray: #D8D8D8;
  --black: #000000;
  --dark-gray: #5E5E5E;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Libre Baskerville', serif;
  margin: 0;
  height: 100vh;
  color: #ffffff;
  overflow: hidden;
  user-select: none;
}

h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}

h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

a {
  color: #b84242;
  transition: color ease 0.2s;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}

a:hover {
  color: #ff3131;
}

button {
  background-color: transparent;
  height: 50px;
  outline: none;
  border: solid 2px #3b3b3b;
  color: white;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 1.2em;
  border-radius: 15px;
  transition: all ease-in-out 0.15s;
  cursor: pointer;
  margin: 10px;
}

button:hover {
  background-color: #992a2a;
  border: solid 2px #ff0000;
  box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
}

button:active {
  scale: 0.8;
}

button:disabled {
  cursor: not-allowed !important;
  background-color: #0e0e0e;
  border: solid 5px #292929;
  scale: 1;
  box-shadow: none;
}

#back {
  position: absolute;
  top: 0;
  color: #b84242;
  transition: color ease 0.2s;
  text-decoration: none;
  font-weight: 700;
}

#back:hover {
  color: #ff3131;
  cursor: pointer;
}

#vanta {
  transition: all ease-out 0.4s;
  background-color: #000;
  width: 100vw;
  height: 100vh;
}

#roddyricchesbox {
  transition: all ease-in-out 1.5s;
  position: absolute;
  z-index: 9997;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 600px;
  height: 600px;
  border-radius: 35px;
  color: white;
  padding: 30px;
  line-height: 1.8;
  overflow: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #1a1a1a6e;
  backdrop-filter: blur(20px);
}

#topleft {
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  text-align: center;
  padding: 0;
  position: fixed;
}

#topright {
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  text-align: center;
  padding: 0;
  position: fixed;
}

#topright h3 {
  margin: 0;
}

#bottomleft {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  text-align: center;
  padding: 0;
  position: fixed;
}

#bottomright {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  text-align: center;
  padding: 0;
  margin: 0;
  position: fixed;
}

#thethingabovethemusicbar {
  transition: all ease-in-out 1.5s;
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 40px;
  height: 20px;
  background-color: #1a1a1a6e;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  cursor: pointer;
}

#musicbar {
  transition: all ease-in-out 1.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #1a1a1a6e;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: flex;
  align-items: center;
  padding: 0;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}

#progress-container {
  position: fixed;
  width: 50%;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  right: 20px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: #ffffff;
  border-radius: 2px;
}

.controls {
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
}

.controls button {
  border: none;
  color: white;
  background-color: transparent;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.85;
}

.controls button:hover {
  opacity: 1;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.controls .play {
  font-size: 26px;
}

#musicmenu {
  transition: all ease-in-out 0.9s;
  position: absolute;
  z-index: 9997;
  text-align: center;
  top: 150%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 400px;
  height: 560px;
  border-radius: 35px;
  color: white;
  padding: 30px;
  line-height: 1.8;
  overflow: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #1a1a1a6e;
  backdrop-filter: blur(20px);
}

#thetop {
  width: 400px;
  height: 100px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, 0);
}

#thebottom {
  width: 400px;
  height: 530px;
  position: absolute;
  top: 57px;
  left: 50%;
  transform: translate(-50%, 0);
  overflow: auto;
}

::-webkit-scrollbar {
  width: 4px;
  border-radius: 100px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
  backdrop-filter: blur(20px);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb {
  background: var(--cyan-normal);
  border-radius: 20px;
  outline: 1px solid var(--black);
}

.track {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 14px;
  padding: 10px;
  border-radius: 10px;
  align-items: center;
  cursor: pointer;
}

.track:hover {
  background: rgba(255, 255, 255, 0.08);
}

.track img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}

.track-info {
  display: flex;
  flex-direction: column;
}

.track-info .title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

.track-info .artist {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
}

.album {
  font-family: 'Libre Baskerville', serif;
  font-size: 12px;
  opacity: 0.6;
}

.pagestuffs {
  opacity: 0;
}

.info {
  transition: all ease-in-out 1.5s;
  position: fixed;
  z-index: 9997;
  text-align: center;
  top: 20%;
  left: -150%;
  width: 100%;
  height: 100%;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  color: white;
  padding: 0;
  line-height: 1.8;
  overflow: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #1a1a1a6e;
  backdrop-filter: blur(20px);
}

.butheresthereader {
  transition: all ease-in-out 1.5s;
  position: fixed;
  z-index: 9997;
  text-align: center;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  padding: 0;
  line-height: 1.8;
  overflow: scroll;
  scrollbar-width: none;
}

.title {
  transition: all ease-in-out 1.5s;
  position: fixed;
  z-index: 9997;
  text-align: center;
  top: 0;
  left: -150%;
  width: 100%;
  height: 20%;
  color: white;
  padding: 0;
  line-height: 1.8;
  overflow: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 100%;
}

#albumcover {
  width: 90px;
  height: 90px;
  border-radius: 10px;
}

.content {
  top: -70%;
  transform: translate(0, -55%);
  position: sticky;
}

#lowtaperfade {
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  left: 0;
  position: fixed;
  top: 0px;
  z-index: 2;
  opacity: 0.7;
}

#evenbiggerfadethanlowtaperfade {
  transition: all ease-in-out 1.5s;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  left: 0;
  position: fixed;
  top: 0px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

.iconlinks {
  width: 35px;
  height: 35px;
  transition: ease 0.2s;
}

.iconlinks:hover {
  cursor: pointer;
  scale: 1.2;
}

.enter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  z-index: 9999;
  transition: all 0.3s ease;
}

.enter-button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  top: 50%;
  left: 50%;
  font-size: 24px;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.enter-button:hover {
  color: #ff3131;
  text-shadow: 0 0 10px #ff3131;
}

#canvas {
  transition: all ease-in-out 0.9s;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}