* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 214, 0, 0.28), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(193, 53, 132, 0.38), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(64, 93, 230, 0.34), transparent 35%),
    linear-gradient(145deg, #35124c 0%, #7a1f68 42%, #11152d 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.page {
  width: 100%;
  max-width: 1040px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 30px;
  align-items: center;
}

.hero {
  padding: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff1fb;
  font-size: 14px;
  margin-bottom: 18px;
  backdrop-filter: blur(14px);
}

.badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 14px #4ade80;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

h1 strong {
  background: linear-gradient(90deg, #ffd600, #ff5aa5, #6aa7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.subtext {
  color: #f2dff4;
  font-size: 18px;
  line-height: 1.55;
  max-width: 590px;
  margin-bottom: 24px;
}

.notice {
  max-width: 590px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffeef9;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 590px;
}

.feature {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 14px;
  color: #fff3fb;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  border-radius: 30px;
  padding: 24px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -85px;
  right: -75px;
  width: 190px;
  height: 190px;
  background: linear-gradient(145deg, rgba(255,214,0,0.25), rgba(193,53,132,0.28));
  border-radius: 50%;
  filter: blur(4px);
}

.card-header {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.icon {
  width: 86px;
  height: 86px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  box-shadow: 0 16px 34px rgba(225,48,108,0.42);
  overflow: hidden;
  background: rgba(255,255,255,0.12);
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card h2 {
  font-size: 25px;
  margin-bottom: 7px;
}

.card p {
  color: #f3dcef;
  font-size: 14px;
  line-height: 1.5;
}

label {
  display: block;
  font-size: 13px;
  color: #fff1fb;
  margin: 16px 0 8px;
}

input,
select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10, 8, 28, 0.54);
  color: #fff;
  border-radius: 16px;
  outline: none;
  font-size: 15px;
}

input::placeholder {
  color: #b999bd;
}

button {
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 16px;
  margin-top: 18px;
  color: #fff;
  background: linear-gradient(135deg, #ffd600, #e1306c 52%, #405de6);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(225,48,108,0.28);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
}

button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.progress-box {
  margin-top: 18px;
  display: none;
}

.bar-wrap {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.13);
  margin-bottom: 12px;
}

.bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffd600, #e1306c, #405de6);
  transition: width 0.4s ease;
}

.status {
  font-size: 14px;
  color: #fff0fb;
  min-height: 22px;
}

.result-box {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
}

.result-box h3 {
  margin-bottom: 8px;
  color: #ffe066;
  text-align: center;
}

.result-box p {
  text-align: center;
}

.checklist {
  list-style: none;
  margin: 15px 0 0;
  display: grid;
  gap: 9px;
}

.checklist li {
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  color: #fff5fb;
  font-size: 13px;
  line-height: 1.4;
}

.result-box a {
  display: block;
  margin-top: 14px;
  padding: 15px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd600, #e1306c 52%, #405de6);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}

.small-note {
  margin-top: 10px;
  color: #e9cfe4;
  font-size: 12px !important;
  text-align: center;
}

.activity {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.13);
  color: #ead4ec;
  font-size: 13px;
}

.activity div {
  padding: 7px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.activity-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.activity-item.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

.activity-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.activity span:last-child {
  color: #ffe066;
}

.footer-disclaimer {
  margin-top: 16px;
  color: #dac1dd;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 880px) {
  .page {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
    padding: 10px 0;
  }

  .subtext,
  .features,
  .notice {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 540px) {
  body {
    padding: 14px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
    border-radius: 24px;
  }
}

/* =========================
   Mobile input overflow fix
========================= */
input,
select,
button {
  max-width: 100%;
  box-sizing: border-box;
}

form {
  width: 100%;
  overflow: hidden;
}

#disabledDate {
  width: 100%;
  min-width: 0;
  display: block;
  -webkit-appearance: none;
  appearance: none;
}

/* =========================
   Username attention giggle
========================= */
@keyframes softGiggle {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}

.giggle-attention {
  animation: softGiggle 0.32s ease-in-out;
  box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.16);
  border-color: rgba(225, 48, 108, 0.55) !important;
}

/* =========================
   Result box attention
========================= */
.result-giggle {
  animation: softGiggle 0.55s ease-in-out 0s 3;
  box-shadow: 0 18px 42px rgba(69, 255, 154, 0.18);
}

