*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0a0a0a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-bar {
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #0a0a0a, #c9a227, #0a0a0a);
}

.bottom-bar {
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #0a0a0a, #c9a227, #0a0a0a);
  margin-top: auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 80px;
  width: 100%;
  max-width: 520px;
  flex: 1;
}

.logo-img {
  width: 420px;
  height: auto;
  object-fit: contain;
  margin-top: 12px;
  animation: fadeUp 0.4s ease 0.05s both;
  filter: drop-shadow(0 4px 16px rgba(201, 162, 39, 0.25));
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  margin-top: -50px;
  margin-bottom: 6px;
  animation: fadeUp 0.4s ease 0.1s both;
}

.brand-name span {
  font-weight: 400;
  color: #888;
  font-size: 0.95rem;
}

.tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c9a227;
  text-align: center;
  margin-bottom: 36px;
  animation: fadeUp 0.4s ease 0.15s both;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #333, transparent);
  margin: 8px 0 20px;
  animation: fadeUp 0.4s ease 0.18s both;
}

.btn-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 380px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #c9a227 0%, #a8851f 100%);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.93;
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.45);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.btn:nth-child(1) {
  animation: fadeUp 0.4s ease 0.2s both;
}
.btn:nth-child(2) {
  animation: fadeUp 0.4s ease 0.26s both;
}
.btn:nth-child(3) {
  animation: fadeUp 0.4s ease 0.32s both;
}
.btn:nth-child(4) {
  animation: fadeUp 0.4s ease 0.38s both;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 100;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.footer-text {
  margin-top: 40px;
  font-size: 0.72rem;
  color: #444;
  text-align: center;
  line-height: 1.8;
}

.footer-text a {
  color: #c9a22766;
  text-decoration: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 210px;
  }
  .btn {
    font-size: 0.92rem;
    padding: 14px 22px;
  }
  .tagline {
    font-size: 0.95rem;
  }
}
