@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Satoshi", sans-serif;
  background: #0f172a;
  margin: 0;
}

section {
  position: relative;
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 40px);
  padding: 20px;
}

.illustration {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(/assets/images/glow-bottom.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -10;
}

.box {
  background: #fff;
  color: #0f172a;
  text-align: center;
  border-radius: 25px;
  max-width: 600px;
  padding: 20px;
  margin: 100px 0;
}

h1 {
  margin-top: 0;
}

.img-book {
  border-radius: 8px;
  padding: 20px;
  max-width: 200px;
  margin: auto;
}

.img-book img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#countdown {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.glow-button {
  display: inline-block;
  font-size: 16px;
  background: #a855f7;
  color: #e5d9ff;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid #b07aff;
  border-radius: 999px;
  position: relative;
  font-weight: 700;
  box-shadow: 0 0 10px #b07aff, 0 0 30px #b07aff88;
  transition: all 0.3s ease;
  margin: 12px 0;
}

.glow-button:hover {
  box-shadow: 0 0 15px #d4a9ff, 0 0 40px #d4a9ffaa;
  transform: scale(1.05);
}

.disclaimer-1 {
  background: #0f172a;
  color: #fff;
  border-radius: 8px;
  padding: 12px 8px;
  margin: 12px 0 0;
}

.disclaimer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  backdrop-filter: blur(8px);
  padding: 20px;
}

.disclaimer-text {
  color: rgba(15, 23, 42, 0.7);
  margin: 0;
}

@media (max-width: 767px) {
  .disclaimer {
    position: relative;
  }
}
