body {
  margin: 0;
  background-color: #000000;
  background-image: url('images/bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden !important;

  @media (max-width: 1024px) {
    background-image: none;
  }
}

.btn {
  background-color: transparent;
  border: 0;
  border-radius: 50px;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 24px;
  color: #000;
  font-family: 'Nunito', Arial, sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;

  @media (max-width: 700px) {
    font-size: 16px;
  }
}

.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
  max-width: 725px;
  padding: 56px 60px 0;
  box-sizing: border-box;
  overflow-x: hidden !important;

  @media (max-width: 1024px) {
    height: auto;
  }

  @media (max-width: 700px) {
    padding: 24px 20px 0;
  }
}

.footer {
  position: absolute;
  bottom: 0;
  height: auto;
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 44px;
  overflow: hidden;
  
  @media (max-width: 1024px) {
    position: relative;
    height: 751px;
  }
}

.footer-bg {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 751px;
  object-fit: cover;
  object-position: top;
  overflow: hidden;

  @media (max-width: 1024px) {
    display: block;
  }

  @media (max-width: 500px) {
    object-position: -100px top;
  }
}

.title {
  margin: 0;
  margin-top: 64px;
  font-family: 'DynaPuff', Arial, sans-serif;
  font-size: 64px;
  line-height: 1.2;
  color: #ff00dd;
  text-align: center;
  text-shadow: 0 2px 4px rgba(255, 0, 221, 0.75);

  @media (max-width: 700px) {
    font-size: 48px;
    margin-top: 32px;
  }

  & span:first-child {
    padding-left: 14px;
  }
}

.description {
  margin: 0;
  margin-top: 8px;
  color: #00ff4d;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 15px rgba(0, 255, 77, 0.75);

  @media (max-width: 700px) {
    font-size: 24px;
  }
}

.word-animate {
  display: inline-block;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  margin-right: 0.25em;
}

.word-animate:last-child {
  margin-right: 0;
}

.actions {
  display: flex;
  gap: 16px;
  margin: 24px 0 160px;

  @media (max-width: 1024px) {
    margin-bottom: 32px;
  }

  @media (max-width: 700px) {
    margin-bottom: 8px;
  }
}

.actions-hidden {
  opacity: 0;
}

.action-buy-btn {
  box-shadow: 0 2px 15px rgba(255, 0, 221, 0.75);
  background: #f0d;
  text-decoration: none;

  &:hover {
    box-shadow: 0 2px 15px rgba(0, 255, 77, 0.75);
    background: #00ff4d;
  }
}

.action-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 158px;
  color: #00ff4d;
  border: 1px solid #00ff4d;
  box-shadow: 0 2px 15px rgba(0, 255, 77, 0.75);
}

.action-copy-btn.copied {
  background: #00ff4d;
  color: #000;
}

.copy-back {
  display: none;
}

.action-copy-btn .copy-front,
.action-copy-btn.copied .copy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.action-copy-btn.copied .copy-front {
  display: none;
}

.action-x-btn {
  position: relative;
  z-index: 1;
  margin-top: auto;
  box-shadow: 0 2px 15px rgba(0, 255, 77, 0.75);
  background: #00ff4d;
  text-decoration: none;

  &:hover {
    box-shadow: 0 2px 15px rgba(255, 0, 221, 0.75);
    background: #f0d;
  }
}
