/* ================================================
   HOSTILE TAKEOVER GAME — page-specific styles
   Loaded after /styles.css on all 4 language variants
   ================================================ */

/* Section backgrounds */
#ht-how    { background: var(--bg2); }
#ht-defend { background: var(--bg); }
#ht-download { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }

/* ---- Steps section ---- */
.ht-steps-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.ht-steps-intro p {
  font-size: 1.02rem;
  color: var(--text2);
  line-height: 1.78;
}
.ht-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.ht-step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  position: relative;
}
.ht-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(224,125,48,0.2);
  border: 1.5px solid rgba(224,125,48,0.5);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.ht-step-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}
.ht-step-card h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--amber);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ht-step-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
}

/* ---- Body screenshot (centered phone frame) ---- */
.ht-body-screenshot {
  max-width: 280px;
  margin: 0 auto;
}
.ht-screenshot-caption {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}

/* ---- Defend block ---- */
.ht-defend-block {
  background: linear-gradient(135deg, #3d2510 0%, #281504 100%);
  border: 1px solid rgba(224,125,48,0.28);
  border-radius: 28px;
  padding: clamp(32px,5vw,58px);
  max-width: 860px;
  margin: 0 auto;
}
.ht-defend-block h2 { color: var(--amber); margin-bottom: 22px; }
.ht-defend-block p {
  color: var(--text2);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ---- Download CTA (focused) ---- */
.ht-cta-simple {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ht-cta-simple h2  { margin-bottom: 0; }
.ht-cta-simple .lead { margin-bottom: 4px; }
.ht-cta-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

/* ---- Footer keyword links ---- */
.ht-footer-keywords {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding: 16px clamp(20px,5vw,64px);
  border-top: 1px solid var(--border);
}
.ht-footer-keywords a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s;
}
.ht-footer-keywords a:hover { color: var(--amber); }

/* ---- QR code ---- */
.ht-qr { border-radius: 10px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .ht-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ht-steps-grid { grid-template-columns: 1fr; }
}
