/* ===== RESET ===== */
* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: #eef3f9;
  -webkit-text-size-adjust: 100%;
  overflow: hidden;
}

/* ===== APP ROOT ===== */
.page-wrapper {
  height: 100vh;     /* fallback */
  height: 100svh;    /* modern Safari */
  height: var(--app-height); /* JS fallback */
  display: flex;
  flex-direction: column;
}

/* ===== FULL SCREEN APP ===== */
.card {
  flex: 1;
  display: flex;
  flex-direction: column;

  min-height: 100vh;      /* fallback */
  min-height: 100svh;
  min-height: var(--app-height);

  background: url("assets/image 217.png") center / cover no-repeat;

  /* Safe-area + vertical priority */
  padding-top: calc(3vh + env(safe-area-inset-top));
  padding-bottom: calc(3vh + env(safe-area-inset-bottom));
  padding-left: calc(4vw + env(safe-area-inset-left));
  padding-right: calc(4vw + env(safe-area-inset-right));
}

/* ===== TOP BAR ===== */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booth {
  font-size: 1.6vh;
  font-weight: 600;
}

.logo {
  width: 6.5vh;
}

/* ===== LOCK ===== */
.lock {
  display: flex;
  justify-content: center;
  margin: 3vh 0 2.5vh;
}

.lock img {
  width: 14vh;
  max-width: 140px;
}

/* ===== CONTENT AREA ===== */
.steps-box {
  background: #E5EDFA;
  border-radius: 16px;
  padding: 3vh 4vw;
  margin-bottom: 3vh;

  flex: 1;
  overflow-y: auto;

  display: flex;
  flex-direction: column;
}

/* ===== TITLE ===== */
.title {
  margin: 0;
  text-align: center;
  font-size: 2.6vh;
  font-weight: 600;
}

/* ===== SUBTITLE ===== */
.subtitle {
  text-align: center;
  font-size: 1.6vh;
  color: #4B5563;
  margin: 1.2vh 0 2.2vh;
  line-height: 1.45;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: lightgray;
  margin-bottom: 2.4vh;
}

/* ===== STEPS ===== */
.step {
  display: flex;
  align-items: flex-start;
  gap: 2vh;
  margin-bottom: 2.4vh;
}

.step:last-child {
  margin-bottom: 0;
}

/* ===== ICON ===== */
.icon {
  width: 5.2vh;
  height: 5.2vh;
  padding: 0.6vh;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(180deg, #58A8FE 0%, #236CD2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-inner img {
  width: 2.4vh;
}

/* ===== STEP TEXT ===== */
.step-text {
  display: flex;
  flex-direction: column;
}

.step-title {
  font-size: 1.7vh;
  font-weight: 600;
}

.step-desc {
  font-size: 1.55vh;
  color: #4B5563;
  line-height: 1.45;
  margin-top: 0.4vh;
}

/* ===== CTA ===== */
.cta {
  width: 100%;
  min-height: 6.5vh;
  margin-top: auto;

  padding: 1.8vh 0;

  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.35);

  background: linear-gradient(
    180deg,
    #5AA2FF 0%,
    #1E6FE3 100%
  );

  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.35),
    inset 0 -2px 4px rgba(0,0,0,0.2),
    0 4px 8px rgba(0,0,0,0.18);

  color: #fff;
  font-size: 1.9vh;
  font-weight: 600;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
