:root{
  --cream: #fbead0;
  --cream-2: #f6d9a8;
  --brown: #5a2a1a;
  --brown-dark: #3d1c10;
  --maroon: #6d2018;
  --red: #d94f3d;
  --gold: #c99a4a;
  --whatsapp: #25d366;
  --facebook: #1877f2;
  --instagram: linear-gradient(45deg, #feda75, #d62976, #4f5bd5);
}

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

html, body{
  min-height: 100%;
}

body{
  font-family: 'Poppins', sans-serif;
  color: var(--brown-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  background-color: var(--cream);
  background-image: repeating-linear-gradient(
      135deg,
      var(--cream) 0px,
      var(--cream) 18px,
      var(--cream-2) 18px,
      var(--cream-2) 20px
  );
  padding: 16px;
}

.card{
  max-width: 560px;
  width: 100%;
  text-align: center;
  padding: 40px 24px 32px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(61, 28, 16, 0.15);
}

.mascot{
  width: 190px;
  max-width: 55vw;
  filter: drop-shadow(0 12px 18px rgba(61,28,16,0.25));
}

.brand{
  font-family: 'Lobster', cursive;
  font-size: clamp(3rem, 12vw, 5.2rem);
  line-height: 1;
  color: var(--brown);
  text-shadow: 0 3px 0 var(--gold), 0 6px 14px rgba(61,28,16,0.2);
  margin-top: 6px;
}

.brand-sub{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  color: var(--maroon);
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.divider{
  width: 90px;
  height: 4px;
  background: var(--red);
  border-radius: 4px;
  margin: 22px auto 20px;
}

.status{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.status::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd166;
}

.message{
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  color: var(--brown-dark);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 34px;
}

.buttons{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  max-width: 320px;
  margin: 0 auto;
}

.btn{
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 8px 20px rgba(61,28,16,0.25);
  justify-content: center;
}

.btn img,
.btn svg{
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.btn-text small{
  font-weight: 400;
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--whatsapp{
  background: var(--whatsapp);
}
.btn--whatsapp img{
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}

.btn--facebook{
  background: var(--facebook);
}

.btn--instagram{
  background: var(--instagram);
}

footer{
  text-align: center;
  margin-top: 24px;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: var(--brown);
  opacity: 0.75;
}

@media (max-width: 480px){
  .card{ padding: 32px 18px 28px; border-radius: 22px; }
  .btn{ padding: 12px 16px; font-size: 0.95rem; }
  .status{ font-size: 0.75rem; padding: 7px 14px; }
  .message{ margin-bottom: 26px; }
}
