@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/PretendardVariable.woff2")
    format("woff2");
}

/* @font-face {
  font-family: 'Paperozi';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Pretendard", BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  height: 100%;
  background-color: #00070A;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}
strong {
  font-weight: 600;
}

.display-mobile {
  display: block;
}

.display-desktop {
  display: none;
}

@media (min-width: 768px) {
  .display-mobile {
      display: none;
  }

  .display-desktop {
      display: block;
  }
}


.container {
  position: relative;
  height: 100%;
  /* min-height: 100vh; */
  min-height: -webkit-fill-available;
  width: 100%;
  overflow: hidden;
}

/* Background */
.background {
  position: absolute;
  inset: 0;
}

.background img,
.background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* Content */
.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

/* Logo (Desktop only) */
.lg-logo {
  display: none;
  position: absolute;
  top: 20px;
  left: 20px;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subtitle {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 129%;
  letter-spacing: -0.32px;
}

.main-title {
  margin-top: 14px;
  height: 44px;
  text-align: center;
}

.main-title img {
  height: 100%;
}

.main-section {
  margin-top: 94px;
  position: relative;
  display: flex;
  min-width: 350px;
  padding: 60px 0 20px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 8px;
}

.series-logo-content {
  position: absolute;
  top: -69px;
}

.series-logo-content img {
  height: 150px;
}

/* Description */
.description {
  padding: 46px 0 0;
}
.description-title {
  color: #B2B2B2;
  text-align: center;
  font-size: 16px;
  line-height: 139%; /* 22.24px */
  letter-spacing: -0.32px;
}

.description-content {
  margin-top: 8px;
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 139%; /* 41.7px */
  letter-spacing: -0.6px;
}

/* Buttons */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 390px;
  padding: 0 7px;
}

.btn {
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  text-decoration: none;
  padding: 0 12px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
}

.btn span {
  background: url('../images/arr_white_right.svg') no-repeat right top 2px / 16px 16px;
  padding-right: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -1px;
}

.btn-primary {
  background: #EA1917;
  height: 60px;
  line-height: 60px;
}
.btn.btn-primary span {
  font-size: 20px;
  font-weight: 700;
  background-position: right top 4px;
}

/* Media Queries */
@media (min-width: 768px) {
  .lg-logo {
      display: flex;
  }
  .content {
    padding: 50px 0 20px;
  }

  .subtitle {
    font-size: 28px;
    line-height: 129%; /* 36.12px */
    letter-spacing: -0.56px;
  }

  .main-title {
    margin-top: 16px;
    height: 100px;
  }

  .main-section {
    margin-top: 128px;
    flex-direction: column;
    align-self: stretch;
    gap: 28px;
  }

  .series-logo-content {
    position: absolute;
    top: -84px;
  }
  
  .series-logo-content img {
    height: 210px;
  }

  .description {
    padding: 101px 0 0;
  }

  .description-title {
    color: #ADADAD;
    font-size: 25px;
    letter-spacing: -0.5px;
  }

  .description-content {
    margin-top: 10px;
    color: #FFF;
    font-size: 40px;
    line-height: 129%;
    letter-spacing: -0.8px;
  }

  .buttons {
    max-width: 656px;
    position: relative;
  }
  .buttons::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 788px;
    height: 85px;
    position: absolute;
    border-radius: 788px;
    opacity: 0.4;
    background: #000;
    filter: blur(50px);
  }

  .btn {
    height: 80px;
    line-height: 80px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
  }
  
  .btn span {
    background-position: right top 5px;
    background-size: 16px 16px;
    padding-right: 24px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -1px;
  }
  
  .btn-primary {
    height: 80px;
    line-height: 80px;
  }
  .btn.btn-primary span {
    background-position: right top 4px;
    background-size: 26px 26px;
    padding-right: 31px;
    font-size: 26px;
  }
}
