/* ================================================
   BUSINESS TYCOON — page-specific styles
   Loaded after /styles.css on all 4 language variants
   ================================================ */

/* Section backgrounds */
#bt-build    { background: var(--bg2); }
#bt-markets  { background: var(--bg); }
#bt-invest   { background: var(--bg2); }
#bt-realestate { background: var(--bg); }
#bt-download { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }

/* ---- Article grid (text + phone frame) ---- */
.bt-article-grid {
  display: grid;
  grid-template-columns: 1fr 256px;
  gap: 56px;
  align-items: start;
}
.bt-article-text h2 { margin-bottom: 18px; }
.bt-article-text p {
  color: var(--text2);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.bt-article-text p:last-of-type { margin-bottom: 0; }
.bt-screenshot-wrap { flex-shrink: 0; }
.bt-screenshot-caption {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  font-style: italic;
  padding: 0 4px;
}

/* ---- Invest feature list ---- */
.bt-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.bt-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.55;
}
.bt-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--card);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

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

/* ---- Footer keyword links ---- */
.bt-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);
}
.bt-footer-keywords a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s;
}
.bt-footer-keywords a:hover { color: var(--amber); }

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

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .bt-article-grid { grid-template-columns: 1fr; }
  .bt-screenshot-wrap { text-align: center; }
  .bt-screenshot-wrap .phone-frame { margin: 0 auto; }
}
