@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html, body {
    margin: 0;
    background: url('../img/bg.webp') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
    background-color: #6B3185;
}

.hd-cont {
    position: relative;
    height: 51vh;
    padding: 50px;
    background: #101010;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    border: 1px solid transparent;
    border-image-slice: 1;
    transition: border-image 0.15s ease-out;
}

.lw-cont {
    position: relative;
    flex-grow: 1;
    padding: 50px;
}

.hd-menu-cont {
    position: relative;
    display: flex;
    justify-content: flex-end;  
}

.hd-menu-bt {
    align-self: center;
    padding-right: 20px;
    color: #6B3185;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 4px;
}

.hd-menu-fav {
    width: 68px;
    height: 68px;
    background: url(../img/wlg.png) 
}

.hd-ul {
    position: relative;
    height: inherit;
    font-size: 250px;
    color: transparent;
}

.hd-ul::before {
    content: "BBOMBS";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-image: url('../img/bg.webp');
    background-position: calc(50% - 75px) calc(50% + 10px);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: #6B3185;
}

.hd-bl {
    position: absolute;
    right: 0;
    top: -20px;
    margin-right: 50px;
    color: #101010;
    text-shadow: 0px 5px 19.6px rgba(41, 0, 64, 0.50);
    font-size: 225px;
}

.lw-menu-cont {
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: flex-start;
}

.lw-menu-bt {
    width: 262px;
    height: 80px;
    margin: 20px;
    border-radius: 40px;
    border: 1px solid #2E2E2E;
    background: rgba(16, 16, 16, 0.667);
    backdrop-filter: blur(7.5px);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease-out;
    animation: pulseGlow 3s ease-in-out infinite;

}

.lw-menu-bt::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: none;
}

.lw-menu-bt:hover::before {
  animation: shine 0.8s forwards;
}

.lw-menu-bt:hover {
  transform: scale(1.03);
}

.lw-menu-lb {
    color: #6D7DD1;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 7.2px;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(131, 86, 193, 0.389);
  }
  50% {
    box-shadow: 0 0 20px rgba(62, 39, 90, 0.653);
  }
}

@keyframes shine {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}
