/* Shared styles for all awareness demos */
* { margin: 0; padding: 0; box-sizing: border-box; }

.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: 1000;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

.step.hidden, .hidden { display: none !important; }

/* ============================================
   Reveal / Gotcha (identical across all demos)
   ============================================ */
.reveal-wrap {
  min-height: 100vh;
  background: #f5f5f7;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  color: #1b1b1b;
  padding: 60px 20px 40px;
  display: flex;
  justify-content: center;
}

.reveal-box {
  background: #fff;
  max-width: 680px;
  width: 100%;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.reveal-header h1 {
  font-size: 26px;
  color: #c4314b;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.reveal-box .explanation {
  margin: 20px 0;
  padding: 16px;
  background: #f3f6fb;
  border-left: 4px solid #0067b8;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
}

.reveal-box .explanation h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

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

.reveal-box ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.reveal-box code {
  background: #f3f3f3;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 13px;
  font-family: Consolas, "Courier New", monospace;
}

.reveal-box .actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.reveal-btn {
  display: inline-block;
  background: #0067b8;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.reveal-btn:hover { background: #005a9e; }
