* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #0B1220 url('assets/bg.jpg') no-repeat center center;
  background-size: cover;
  color: #5A8FB8;
  font-family: 'Manrope', sans-serif;
}

.center {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding:
    calc(20px + env(safe-area-inset-top))
    20px
    calc(20px + env(safe-area-inset-bottom));  
}

.logo {
  width: 250px;
  margin-bottom: 36px;
}

.title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 110%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 25%,
    rgba(255,255,255,0.8) 50%,
    rgba(255,255,255,0.4) 75%,
    rgba(255,255,255,0) 100%
  );
  border-radius: 2px;
}

.subtitle {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
  opacity: 0.9;
}

.lottie-box {
  width: 130px;
  height: 40px;
  margin-top: 40px;
}

.lottie-loading {
  width: 110px;
  height: 110px;
  margin-top: 40px;
}

p .accent {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

@media (max-width: 768px) {
  body {
    background: #0B1220 url('assets/bg-mobile.jpg') no-repeat center center;
    background-size: cover;
  }

  .center {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 20px;
  }

  .logo {
    width: 120px;
    margin-top: -10px;
    margin-bottom: 30px;
  }

  .title {
    position: relative;
    display: inline-block;
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.12);
  }

  .title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 110%;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.4) 25%,
      rgba(255,255,255,0.8) 50%,
      rgba(255,255,255,0.4) 75%,
      rgba(255,255,255,0) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(255,255,255,0.12);
  }

  .subtitle {
    max-width: 320px;
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.08);
  }

  .lottie-box {
    width: 110px;
    height: 35px;
    margin-top: 34px;
  }

  .lottie-loading {
    width: 110px;
    height: 110px;
    margin-top: 34px;
  }
}