.elementor-1699 .elementor-element.elementor-element-494b5db{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-1699 .elementor-element.elementor-element-494b5db{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-a50ba31 *//* ======================= */
/* GLOBAL SAFETY ONLY */
/* ======================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

/* ======================= */
/* Background */
/* ======================= */
#landing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2b2b2b;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  z-index: 2;
  padding-top:30vh ;
  /* Fixed padding made responsive */
  transition: background-color 0.8s ease, transform 1s ease-in-out;
}

/* ======================= */
/* Logo letters */
/* ======================= */
#logo-animation {
  display: flex;
  gap: clamp(20px, 5vw, 50px); /* Fixed gap made responsive */
  justify-content: center;
}

.letter {
  opacity: 0;
  font-size: clamp(1rem, 6vw, 2.4rem); /* Fixed font-size made responsive */
  color: gray;
  display: inline-block;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ======================= */
/* Center page content */
/* ======================= */
#landing-content {
  position: fixed;
  width: 100%;
  max-width: clamp(250px, 90%, 350px); /* Fixed max-width made responsive */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: gray;
  z-index: 10;
}

#landing-content h1 {
  font-family: inter;
  font-size: clamp(1rem, 1.4vw, 2.4rem) !important; /* Fixed font-size made responsive */
  font-weight: 400;
  line-height: 1.4em;
  color: gray;
  text-align: center;
}

#landing-content img,
#landing-content h1,
#landing-content button,
#landing-content a {
  transition: opacity 0.6s ease-in;
}

/* ======================= */
/* Button - Responsive Base */
#landing-content button {
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 1.5vw, 10px); /* Fixed gap made responsive */
  margin-top: clamp(10px, 3vh, 15px); /* Fixed margin-top made responsive */
  padding: clamp(8px, 2.5vw, 12px) clamp(20px, 5vw, 30px); /* Fixed padding made responsive */
  font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Fixed font-size made responsive */
  border-radius: 20px;
  border: 1px solid gray;
  color: gray;
  cursor: pointer;
  transition:
    background-color 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s ease,
    color 0.7s ease,
    border-color 0.7s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 11;
}

#landing-content button .arrow {
  display: inline-block;
  transform-origin: center;
}

#landing-content button:hover {
  background-color: red;
  color: white;
  border-color: white;
  transform: translateY(-2px);
  opacity: 0.85;
}

#landing-content button:hover .arrow {
  transform: rotate(25deg) translateY(1px) translateX(4px);
}

/* ======================= */
/* Enter without music link */
#enter-no-music {
  display: block;
  margin-top: clamp(30px, 7vh, 50px); /* Fixed margin-top made responsive */
  font-size: clamp(0.9rem, 2.5vw, 1rem); /* Fixed font-size made responsive */
  color: gray;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 11;
  position: relative;
}

/* Unified underline */
#enter-no-music::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: red;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease 0.2s;
}

#enter-no-music:hover::after {
  transform: translateX(-50%) scaleX(0.4);
}

/* ======================= */
/* Main logo image */
#main-logo {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(0.8);
  max-width: 100%;
  height: auto;
}

/* ======================= */
/* Class visible for showing button and link */
.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}/* End custom CSS */