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

html, body {
  min-height: 100%;
  font-family: Roboto, Arial, "Segoe UI", sans-serif;
  color: #202124;
  background: #f5f6f7;
}

.disclaimer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff4ce;
  border-bottom: 1px solid #d4a847;
  color: #4a3a00;
  font-size: 13px;
  padding: 8px 16px;
  text-align: center;
  z-index: 100;
}

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 20px 60px;
}

.intro {
  text-align: center;
  margin-bottom: 32px;
}

.intro h1 {
  font-size: 24px;
  font-weight: 400;
  color: #202124;
  margin-bottom: 8px;
}

.intro-text {
  font-size: 14px;
  color: #5f6368;
}

.step.hidden {
  display: none;
}

/* ===== Fake CAPTCHA ===== */
.captcha-box {
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 302px;
  height: 76px;
  margin: 0 auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-wrapper {
  position: relative;
}

.checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  background: #fff;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease;
}

.checkbox:hover {
  border-color: #a5a5a5;
}

.checkbox:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.spinner {
  width: 22px;
  height: 22px;
  border: 3px solid #e5e5e5;
  border-top-color: #4a90e2;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.checkmark {
  width: 22px;
  height: 22px;
}

.hidden {
  display: none !important;
}

.captcha-label {
  font-size: 14px;
  color: #212121;
}

.captcha-right {
  display: flex;
  align-items: center;
}

.captcha-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.captcha-brand {
  text-align: left;
  font-size: 9px;
  color: #5f6368;
  line-height: 1.2;
}

.brand-name {
  font-size: 11px;
  color: #4a4a4a;
  font-weight: 500;
}

.brand-links {
  font-size: 9px;
}

/* ===== Verify step (fake instructions) ===== */
.verify-box {
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.verify-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blue-check {
  width: 32px;
  height: 32px;
  background: #4a90e2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.verify-header h2 {
  font-size: 18px;
  font-weight: 500;
  color: #202124;
}

.verify-intro {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 20px;
}

.verify-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.verify-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid #f1f3f4;
}

.verify-steps li:last-child {
  border-bottom: none;
}

.step-num {
  background: #4a90e2;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}

kbd {
  background: #f1f3f4;
  border: 1px solid #dadce0;
  border-bottom-width: 2px;
  border-radius: 3px;
  padding: 2px 6px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  color: #202124;
  margin: 0 2px;
}

.fake-code-box {
  background: #263238;
  color: #eceff1;
  border-radius: 4px;
  padding: 12px 14px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  margin-bottom: 20px;
  overflow-x: auto;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  opacity: 0.85;
}

.btn {
  display: inline-block;
  border: none;
  background: #4a90e2;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  background: #3a7ec0;
}

.btn-primary {
  width: 100%;
}

/* ===== Reveal ===== */
.reveal-box {
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.reveal-header {
  text-align: center;
  margin-bottom: 24px;
}

.gotcha-icon {
  font-size: 56px;
  margin-bottom: 8px;
}

.reveal-box h1 {
  font-size: 24px;
  color: #c4314b;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.5;
}

.explanation {
  margin: 20px 0;
  padding: 16px;
  background: #f9f9f9;
  border-left: 3px solid #4a90e2;
  border-radius: 4px;
}

.explanation h2 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #202124;
}

.explanation p {
  font-size: 14px;
  line-height: 1.55;
  color: #202124;
}

.explanation code {
  background: #eceff1;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 13px;
  font-family: Consolas, monospace;
}

.red-flags, .tips {
  margin: 20px 0;
}

.red-flags h2, .tips h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.red-flags ul, .tips ul {
  list-style: none;
  padding: 0;
}

.red-flags li, .tips li {
  padding: 8px 0 8px 26px;
  font-size: 14px;
  line-height: 1.55;
  position: relative;
  border-bottom: 1px solid #f1f3f4;
}

.red-flags li::before {
  content: "\26a0\fe0f";
  position: absolute;
  left: 0;
  top: 8px;
}

.tips li::before {
  content: "\2713";
  position: absolute;
  left: 4px;
  top: 8px;
  color: #107c10;
  font-weight: bold;
}

.red-flags li:last-child,
.tips li:last-child {
  border-bottom: none;
}

.red-flags code, .tips code {
  background: #f3f3f3;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 13px;
  font-family: Consolas, monospace;
}

.actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.actions.center {
  justify-content: center;
}

@media (max-width: 500px) {
  .captcha-box {
    width: 100%;
  }

  .verify-box, .reveal-box {
    padding: 20px;
  }

  .page {
    padding-top: 68px;
  }
}
