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

html {
  background: #050505;
}

body {
  min-height: 100vh;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.10), transparent 34%),
    linear-gradient(180deg, #111111 0%, #050505 58%, #000000 100%);
  color: #ffffff;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.card {
  width: 100%;
  max-width: 430px;
  min-height: 590px;
  padding: 34px 22px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    #070707;
  box-shadow:
    0 0 45px rgba(255,255,255,0.05),
    0 0 80px rgba(150,0,0,0.13);
}

.brand {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 800;
  color: #bdbdbd;
  margin-bottom: 30px;
}

.cap-image-box {
  width: 245px;
  height: 245px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-image {
  width: 100%;
  max-width: 245px;
  max-height: 245px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.16));
}

h1 {
  font-size: 44px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.sub-brand {
  font-size: 14px;
  letter-spacing: 3px;
  color: #bdbdbd;
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.line {
  width: 90px;
  height: 2px;
  margin: 0 auto 26px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  opacity: 0.45;
}

.scan-section {
  margin-bottom: 22px;
}

.scan-section p {
  font-size: 13px;
  letter-spacing: 2.5px;
  color: #9b9b9b;
  margin-bottom: 7px;
}

.scan-section strong {
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: 900;
}

.verify-pill {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

.green-dot {
  width: 9px;
  height: 9px;
  background: #18ff77;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(24,255,119,0.8);
}

.info {
  margin: 0 auto 24px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.info-row {
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.info-row span {
  color: #9e9e9e;
}

.info-row strong {
  color: #ffffff;
  text-align: right;
}

.note {
  max-width: 310px;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.5;
  color: #777777;
}

@media (max-width: 480px) {
  .card {
    min-height: 560px;
    padding: 30px 18px;
  }

  .cap-image-box {
    width: 210px;
    height: 210px;
  }

  .cap-image {
    max-width: 210px;
    max-height: 210px;
  }

  h1 {
    font-size: 36px;
  }

  .scan-section strong {
    font-size: 26px;
  }

  .info-row {
    font-size: 13px;
  }
}