*:focus {
  outline: none;
}

body {
  font-family: "Sixtyfour", sans-serif;
  margin: 0;
  background-color: #353434;
}

#vimeo-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#vimeo-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;  /* 16:9 ratio */
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Background image for mobile */
#bg-artwork {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://wallpaperaccess.com/full/1631218.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  z-index: 1;
}



  canvas#cursorCanvas{
    position:fixed;inset:0;z-index:5;pointer-events:none
  }

#app-cover {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 430px;
  height: 100px;
  margin: -4px auto;
}

#bg-layer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #141414;
  opacity: 0.51;
  z-index: 2;
}

#player {
  position: relative;
  height: 100%;
  z-index: 3;
}

#player-track {
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  padding: 15px 22px 5px 184px;
  background-color: rgb(22, 21, 21);
  border-radius: 15px 15px 0 0;
  transition: 0.3s ease top;
  z-index: 1;
}

#player-track.active {
  top: -92px;
}

#album-name {
  color: #f86d92;
  font-size: 17px;
  font-weight: bold;
}

#track-name {
  color: #f86d92;
  font-size: 13px;
  margin: 2px 0 13px 0;
}

#track-time {
  height: 12px;
  margin-bottom: 3px;
  overflow: hidden;
}

#current-time {
  float: left;
}

#track-length {
  float: right;
}

#current-time,
#track-length {
  color: transparent;
  font-size: 11px;
  background-color: #f86d92;
  border-radius: 10px;
  transition: 0.3s ease all;
}

#track-time.active #current-time,
#track-time.active #track-length {
  color: #f86d92;
  background-color: transparent;
}

#s-area,
#seek-bar {
  position: relative;
  height: 4px;
  border-radius: 4px;
}

#s-area {
  background-color: #ffe8ee;
}

#ins-time {
  position: absolute;
  top: -29px;
  color: #fff;
  font-size: 12px;
  white-space: pre;
  padding: 5px 6px;
  border-radius: 4px;
  display: none;
}

#s-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  z-index: 2;
}

#ins-time,
#s-hover {
  background-color: #3b3d50;
}

#seek-bar {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #fd6d94;
  transition: 0.2s ease width;
  z-index: 1;
}

#player-content {
  position: relative;
  height: 100%;
  background-color: rgb(22, 21, 21);
  box-shadow: 0 30px 80px #656565;
  border-radius: 15px;
  z-index: 2;
}

#album-art {
  position: absolute;
  top: -40px;
  width: 115px;
  height: 115px;
  margin-left: 40px;
  transform: rotateZ(0);
  transition: 0.3s ease all;
  box-shadow: 0 0 0 10px #fff;
  border-radius: 50%;
  overflow: hidden;
}

#album-art.active {
  top: -60px;
  box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
}

#album-art:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: -10px auto 0 auto;
  background-color: rgb(22, 21, 21);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff;
  z-index: 2;
}

#album-art img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}

#album-art img.active {
  opacity: 1;
  z-index: 1;
}

#album-art.active img.active {
  z-index: 1;
  animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@keyframes rotateAlbumArt {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

#buffer-box {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 13px;
  color: #1f1f1f;
  font-size: 13px;
  font-family: "Sixtyfour", sans-serif;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  padding: 6px;
  margin: -12px auto 0 auto;
  background-color: rgb(22, 21, 21);
  opacity: 0;
  z-index: 2;
}

#album-art img,
#buffer-box {
  transition: 0.1s linear all;
}

#album-art.buffering img {
  opacity: 0.25;
}

#album-art.buffering img.active {
  opacity: 0.8;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

#album-art.buffering #buffer-box {
  opacity: 1;
}

#player-controls {
  width: 250px;
  height: 100%;
  margin: 0 5px 0 141px;
  float: right;
  overflow: hidden;
}

.control {
  width: 33.333%;
  float: left;
  padding: 12px 0;
}

.button {
  width: 26px;
  height: 26px;
  padding: 25px;
  background-color: rgb(22, 21, 21);
  border-radius: 6px;
}

.button i {
  display: block;
  color: #d6dee7;
  font-size: 26px;
  text-align: center;
  line-height: 1;
}

.button,
.button i {
  transition: 0.2s ease all;
}

.button:hover {
  background-color: #fd6d94;
}

.button:hover i {
  color: #fff;
}
#player-profile {
  position: relative;
  margin: 10px 15px 0 15px; 
  padding: 15px;
  background-color: rgb(22, 21, 21); 
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
  transition: 0.3s ease;
}

#player-profile:hover {
  transform: translateY(-5px);
}

#player-profile .pf-avatar {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#player-profile .pf-avatar:hover {
  transform: scale(1.3);
}

#player-profile .pf-info {
  flex: 1;
}

#player-profile .pf-name {
  margin: 0;
  font-size: 16px;
  color: #ff4d6d;
}

#player-profile .pf-desc {
  color: #e5e5e5;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 3px;
  margin-bottom: 8px;
  line-height: 1.3;
}

#player-profile .pf-links a, #player-profile .pf-actions a {
  color: #fff;
  margin-right: 8px;
  font-size: 12px;
  transition: color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

#player-profile .pf-links a:hover,
#player-profile .pf-actions a:hover {
  color: #ff4d6d;
  transform: translateY(-3px) scale(1.1);
}

#player-profile .pf-links a:active,
#player-profile .pf-actions a:active {
  transform: scale(0.95);
}

#watermark {
  position: fixed;
  bottom: 10px;
  left: 47.5%;

  font-family: 'Sixtyfour', sans-serif;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 1000;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

/* responsywnosc */
@media (max-aspect-ratio: 16/9) {
  #vimeo-background iframe {
    width: 177.78vh;
    height: 100vh;
  }
}