.bottom-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  margin: 0 auto;
  width: 1160px;
  height: 80px;
}
.bottom-banner__item {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 40px;
  border-radius: 30px 30px 0 0;
  color: #fff;
  text-decoration: none;
}
.bottom-banner__item--trial {
  background: linear-gradient(110deg, #d93e98 0%, #8c24c8 55%, #6321d0 100%);
}
.bottom-banner__item--preview {
  background: linear-gradient(110deg, #cadcff 0%, #d8d8ff 50%, #cabaff 100%);
  color: #111;
}
.bottom-banner__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.bottom-banner__title {
  white-space: nowrap;
  display: flex;
  font-family: "NanumSquareNeoBold", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-top: 12px;
}
.bottom-banner__title em {
  color: #fff36a;
  font-style: normal;
  font-family: "NanumSquareNeoHeavy";
}
.bottom-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-family: "NanumSquareNeo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}
.bottom-banner__character {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: auto;
  max-height: 85px;
  object-fit: contain;
  pointer-events: none;
}
.bottom-banner__gradation-text {
  font-family: "NanumSquareNeoHeavy";
  background: linear-gradient(90deg, #367af5, #6444f5 38%, #e0528d 68%, #f58b17);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1440px) {
  .bottom-banner {
    max-width: 900px;
    height: 70px;
  }
  .bottom-banner__title {
    margin-top: 6px;
  }
  .bottom-banner__character {
    max-height: 78px;
    right: 20px;
  }
}
@media (max-width: 1024px) {
  .bottom-banner {
    height: 60px;
    max-width: 800px;
  }
  .bottom-banner__title {
    font-size: 16px;
    margin-top: 10px;
  }
  .bottom-banner__item {
    padding: 0 30px;
    border-radius: 24px 24px 0 0;
  }
  .bottom-banner__character {
    max-height: 70px;
    right: 26px;
  }
  .bottom-banner__link {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .bottom-banner {
    height: 40px;
    max-width: 100%;
  }
  .bottom-banner__link {
    display: none;
  }
  .bottom-banner__title {
    font-size: 16px;
    margin-top: 8px;
  }
  .bottom-banner__item {
    padding: 0 30px;
    display: flex;
    align-items: center;
    border-radius: 20px 20px 0 0;
    justify-content: center;
  }
  .bottom-banner__character {
    display: none;
  }
}