* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  background-color: #fafafa;
}

.background-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  z-index: 0;
}

.line {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #fafafa 10%, #dedede 47.6%, #fafafa 90%);
  background-size: 100% 200%;
  animation: flowLines 8s linear infinite;
}

.line:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.line:nth-child(2) {
  animation-delay: 0s;
  animation-duration: 10s;
}
.line:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 8s;
}
.line:nth-child(4) {
  animation-delay: -1s;
  animation-duration: 9s;
}

@keyframes flowLines {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 200%;
  }
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-logo img {
  max-width: 150px;
  height: auto;
  display: block;
}

.bottom-left {
  position: absolute;
  bottom: 50px;
  left: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bottom-left .main-text {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
  background: linear-gradient(to bottom, #020202 0%, #121212 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.bottom-left .sub-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  background: linear-gradient(to bottom, #020202 0%, #121212 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-left: 6px;
}

.bottom-right {
  position: absolute;
  bottom: 50px;
  right: 50px;
  font-size: 14px;
  font-weight: 400; /* Semibold */
  background: linear-gradient(to bottom, #434343 0%, #626262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .bottom-left {
    left: 20px;
    bottom: 80px;
  }

  .bottom-left .main-text {
    font-size: 36px;
  }

  .bottom-left .sub-text {
    font-size: 16px;
  }

  .bottom-right {
    right: auto;
    left: 20px;
    bottom: 30px;
  }

  .center-logo img {
    max-width: 120px;
  }

  .line:nth-child(4) {
    display: none;
  }
}
