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

body {
  font-family: Arial, sans-serif;
  background: #f0f4f8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 100vh;
  padding: 32px 24px;
  animation: fadeIn 0.3s ease;
  text-align: center;
}
.screen.active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gap-logo {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 8px;
  color: white;
  background: #0055a5;
  padding: 12px 32px;
  border-radius: 8px;
  margin-bottom: 28px;
}
.gap-logo.small { font-size: 28px; padding: 8px 20px; margin-bottom: 20px; }

.welcome-title { font-size: 34px; color: #222; margin-bottom: 12px; }
.welcome-sub { font-size: 17px; color: #666; margin-bottom: 28px; max-width: 500px; line-height: 1.6; }

.name-input {
  width: 100%;
  max-width: 420px;
  padding: 16px 20px;
  font-size: 20px;
  border: 3px solid #e0e0e0;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 24px;
  outline: none;
  transition: border-color 0.2s;
}
.name-input:focus { border-color: #0055a5; }

/* Progress */
.progress-bar {
  width: 100%;
  max-width: 560px;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: #0055a5;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.question-num {
  font-size: 13px;
  font-weight: 700;
  color: #0055a5;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.question-emoji { font-size: 48px; margin-bottom: 12px; }

.question-text {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  max-width: 520px;
  line-height: 1.4;
  margin-bottom: 28px;
}

/* Binary choices */
.choice-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 560px;
}

.choice-btn {
  flex: 1;
  min-width: 220px;
  padding: 24px 20px;
  background: white;
  border: 3px solid #e0e0e0;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.choice-btn:hover { border-color: #0055a5; background: #f0f4ff; transform: translateY(-3px); }
.choice-btn.selected { border-color: #0055a5; background: #e8f0fb; transform: translateY(-3px); }

/* Career result card */
.result-intro {
  font-size: 20px;
  color: #888;
  margin-bottom: 12px;
  font-weight: 400;
}

.career-card {
  background: white;
  border: 3px solid #0055a5;
  border-radius: 24px;
  padding: 36px 40px;
  max-width: 480px;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0,85,165,0.15);
}

.career-emoji { font-size: 72px; margin-bottom: 12px; }
.career-title { font-size: 30px; font-weight: 900; color: #0055a5; margin-bottom: 14px; }
.career-desc { font-size: 16px; color: #555; line-height: 1.7; }

.famous-box {
  background: #fffbea;
  border-left: 4px solid #f4d03f;
  border-radius: 8px;
  padding: 16px 20px;
  max-width: 480px;
  width: 100%;
  text-align: left;
  margin-bottom: 28px;
}
.famous-label { font-size: 12px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.famous-name { font-size: 17px; font-weight: 700; color: #333; }
.famous-note { font-size: 14px; color: #888; margin-top: 4px; font-style: italic; line-height: 1.5; }

/* Buttons */
.btn-primary {
  background: #0055a5;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover { background: #0044cc; transform: translateY(-2px); }
.btn-primary.big-btn { padding: 18px 48px; font-size: 20px; border-radius: 14px; }

.btn-secondary {
  background: white;
  color: #0055a5;
  border: 2px solid #0055a5;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #e8f0fb; }

.result-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.nav-row { display: flex; gap: 16px; align-items: center; justify-content: center; }
.step-sub { font-size: 15px; color: #888; margin-bottom: 20px; }
.success-icon { font-size: 80px; margin-bottom: 16px; }
