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

body {
  font-family: 'Nunito', sans-serif;
  background: #f6efe7;
  color: #111;
}

/* NAVBAR */

.navbar {
  padding: 16px;
  background: #fff8f0;
  border-bottom: 3px solid black;
}

.nav-logo {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 22px;
}

/* LAYOUT */

.container {
  max-width: 620px;
  margin: 30px auto;
  padding: 0 16px 50px;
}

/* COUNTER */

.counter-card {
  text-align: center;
  background: #e9efff;
  border: 3px solid black;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 20px;
  font-weight: 600;
  box-shadow: 4px 4px 0 black;
}

.counter-card span {
  font-size: 24px;
  font-weight: 700;
  color: #3b6cff;
}

/* HERO */

.hero-card {
  background: #fff8f0;
  border: 3px solid black;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 22px;
  box-shadow: 4px 4px 0 black;
}

.hero-card h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.highlight {
  color: #3b6cff;
}

.subtext {
  opacity: 0.8;
}

/* FORM CARD */

.form-card {
  background: #fff8f0;
  border: 3px solid black;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 4px 4px 0 black;
  margin-bottom: 22px;
}

.form-card h2 {
  margin-bottom: 16px;
}

/* FORM */

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input {
  padding: 12px;
  border: 3px solid black;
  border-radius: 12px;
  font-size: 14px;
}

/* BUTTON */

button {
  padding: 12px;
  border: 3px solid black;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 4px 4px 0 black;
  background: white;

  transition: all 0.12s ease;
}

button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 black;
}

button:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 black;
}

.accent {
  background: #3b6cff;
  color: white;
}

/* STATUS */

.form-status {
  margin-top: 12px;
  font-size: 14px;
}

/* REFERRAL */

.referral-card {
  background: #fff8f0;
  border: 3px solid black;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 4px 4px 0 black;
}

.referral-card h3 {
  margin-bottom: 6px;
}

.referral-card p {
  opacity: 0.8;
  margin-bottom: 14px;
}

.referral-box {
  border: 3px dashed black;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-size: 14px;
  background: white;
}

/* (Your original CSS stays exactly same) */

#shareX {
  width: 100%;
}