* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: var(--bs-body-bg);
}

body {
  font-family: var(--font-body);
  color: var(--wa-text);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--wa-bg-chat);
}

.container {
  max-width: 500px;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: transparent;
}

.nav {
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px 20px;
  position: relative;
  z-index: 3;
}

.popup-buttons a {
  width: 100%;
  display: block;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  color: #000;
  background: linear-gradient(135deg, #d4af37, #f4e19c);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', sans-serif;
}

/* Efek hover tombol emas yang mewah */
.popup-buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.8s;
}

.popup-buttons a:hover::before {
  left: 100%;
}

.popup-buttons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #f4e19c, #d4af37);
}

.popup-buttons a:active {
  transform: translateY(1px);
}

.wa-wallpaper {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  height: 100%;
  background-color: var(--wa-bg-chat);
  z-index: 0;
  overflow: hidden;
}

.wa-wallpaper img {
  object-fit: cover;
  filter: grayscale(100%) opacity(0.08);
}

.center {
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 7px;
}

.welcome {
  max-width: 350px;
  margin: 0 auto;
}


.welcome h3 {
  font-size: 12px;
  color: #fff;
  overflow: hidden;
  border-right: 0.15em solid #fbf4a0;
  white-space: nowrap;
  letter-spacing: 0.09em;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }


  to {
    width: 100%;
  }
}

.banner {
  justify-content: center;
  margin-left: 15px;
  border-radius: 10px;
}