* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif, sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
}

/* BACKGROUND */
.global-bg {
  position: fixed;
  inset: 0;
  background: url("img/hero.webp") center / cover no-repeat;
  z-index: -3;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgb(255 255 255 / 16%);
  z-index: -2;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  font-weight: bold;
  cursor: pointer;
  background: #ffffff4d;
  padding: 8px;
  border-radius: 8px;
}

/* DESKTOP NAV */
.desktop-nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

/* BURGER */
.burger {
  display: none;
  width: 26px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 11;
}

.burger span {
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

/* MOBILE MENU */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgb(160 160 160);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: .4s ease;
  z-index: 9;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  color: #fff;
  font-size: 22px;
  margin: 15px 0;
  text-decoration: none;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 8;
}

.menu-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* SLIDER */
.viewport {
  width: 100vw;
  height: 100vh;
}

.slides {
  display: flex;
  width: 300vw;
  height: 100%;
  transition: transform .6s ease;
}

.slide {
  width: 100vw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}

/* PLAY */
.play-btn {
  margin-top: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: transparent;
}

/* DOTS */
.dots {
  position: fixed;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 7;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(0,0,0,.6);
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
}

.dot.active {
  width: 28px;
  background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }
}


.logo-img {
  width: 200px;
  height: 100%;
}

.play-svg {
  width: 32px;
  height: 32px;
}

.block {
  height: calc(100% - 30vh);
    width: 100%;
    margin: 12px;
    background: #00000052;
    border-radius: 18px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    overflow: auto;
}

#artist {
  font-weight: 700;
  font-size: 6vw;
  text-align: center;
}
#title {
  font-weight: 700;
  font-size: 4vw;
  text-align: center;
}

@media (max-width: 768px) {
  #artist {
    font-weight: 700;
    font-size: 3em;
    text-align: center;
  }
  #title {
    font-weight: 700;
    font-size: 2em;
    text-align: center;
  }
}



a {
  font-size: 24px;
  font-weight: 700;
}

.block a {
  font-size: 16px;
  text-decoration: none;
  color: white;
  opacity: .8;
}

.socials {
  position: absolute;
  z-index: 9999;
  bottom: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
}

.ico {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  padding: 8px;
  border: 1px solid white;
  border-radius: 6px;
}
.ico > img {
  width: 32px;
  height: 32px;
}