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

/* Section backgrounds */
#bs-finance  { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%); }
#bs-players  { background: var(--bg); }
#bs-why-best { background: var(--bg2); }
#bs-download { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }

/* ---- Chain note ---- */
.bs-chain-note {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.72;
}

/* ---- Financial depth grid ---- */
.bs-finance-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.bs-finance-text h2  { margin-bottom: 16px; }
.bs-finance-text .lead { margin-bottom: 28px; }

/* Feature list */
.bs-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bs-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.6;
}
.bs-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;
}

/* ---- Takeover list (inside .multiplayer-block) ---- */
.bs-takeover-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 22px;
}
.bs-takeover-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.55;
}
.bs-takeover-bullet { flex-shrink: 0; }

/* ---- Empire Score grid ---- */
.bs-score-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.bs-score-text .lead { margin-bottom: 30px; }

/* ---- Why Best grid ---- */
.bs-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.bs-why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
}

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

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .bs-finance-grid { grid-template-columns: 1fr; }
  .bs-score-grid   { grid-template-columns: 1fr; }
  .bs-finance-grid .phone-frame,
  .bs-score-grid   .phone-frame { margin: 0 auto; }
}
@media (max-width: 780px) {
  .bs-why-grid { grid-template-columns: 1fr; }
}

/* ---- REWRITTEN body sections ---- */
.bs-hero-centered {
  grid-template-columns: 1fr;
  max-width: 860px;
  text-align: center;
}
.bs-hero-centered .hero-hooks  { justify-content: center; }
.bs-hero-centered .hero-actions { align-items: center; }

.bs-opening-section { background: var(--bg); }
.bs-opening-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.bs-opening-text p {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.8;
}

.bs-article-section { background: var(--bg); }
.bs-article-section.alt { background: var(--bg2); }
.bs-article-grid {
  display: grid;
  grid-template-columns: 1fr 256px;
  gap: 56px;
  align-items: start;
}
.bs-article-text h2 { margin-bottom: 18px; }
.bs-article-text p {
  color: var(--text2);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.bs-article-text p:last-child { margin-bottom: 0; }
.bs-screenshot-wrap { flex-shrink: 0; }
.bs-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;
}

.bs-competition-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);
}
.bs-competition-block h2 { color: var(--amber); margin-bottom: 22px; }
.bs-competition-block p {
  color: var(--text2);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.bs-competition-block p:last-child { margin-bottom: 0; }

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

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