.bk-page { padding: 32px 0 64px; }

.bk-page__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.bk-page__breadcrumbs a { color: var(--text-muted); }
.bk-page__breadcrumbs a:hover { color: var(--text-primary); }
.bk-page__breadcrumbs span { color: var(--text-secondary); }

.bk-page__updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.bk-page__header {
  margin-bottom: 24px;
}

.bk-page__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.bk-page__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.bk-page__stats > * > :first-child {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

.bk-page__stat-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.bk-page__stat-value.green { color: var(--green); }

/* Feature card */
.bk-page__feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #0f2545 0%, #0a1a35 50%, #0f2545 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.bk-page__feature-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bk-page__feature-logo {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.bk-page__feature-logo img { max-width: 100%; max-height: 100%; }

.bk-page__feature-bonus {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
}

.bk-page__feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 300px;
}

.bk-page__feature-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 200px;
}

.bk-page__promo-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bk-page__promo-wrap {
  display: flex;
  gap: 8px;
  width: 100%;
}

.bk-page__promo-input {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.bk-page__promo-copy {
  padding: 10px 16px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

.bk-page__promo-copy:hover { border-color: var(--accent); color: var(--accent); }

.bk-page__promo-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.bk-page__promo-btn:hover { background: var(--accent-hover); }

.bk-page__proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.bk-page__pros,
.bk-page__cons {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
}

.bk-page__proscons-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bk-page__proscons-title--pros { color: var(--green); }
.bk-page__proscons-title--cons { color: var(--red); }

.bk-page__proscons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bk-page__proscons-list li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bk-page__proscons-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.bk-page__pros .bk-page__proscons-list li::before { color: var(--green); }
.bk-page__cons .bk-page__proscons-list li::before { color: var(--red); }

.bk-page__section {
  margin-bottom: 40px;
}

.bk-page__section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.bk-page__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.bk-page__desc p { margin-bottom: 16px; }
.bk-page__desc strong { color: var(--text-primary); }

.bk-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bk-page__tag {
  background: var(--bg-card);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.bk-page__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.bk-page__table th,
.bk-page__table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.bk-page__table th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bk-page__table td { color: var(--text-secondary); }
.bk-page__table td:first-child { color: var(--text-primary); font-weight: 500; }

.bk-page__promo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) {
  .bk-page__promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .bk-page__promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bk-page__promo-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}

.bk-page__promo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.bk-page__seo {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}

.bk-page__seo-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bk-page__seo-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .bk-page__feature {
    flex-direction: column;
    align-items: stretch;
  }

  .bk-page__feature-right {
    min-width: 0;
  }
}

.bk-page__toc {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.bk-page__toc-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.bk-page__toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -4px;
}

.bk-page__toc-link {
  display: inline-block;
  padding: 10px 18px;
  margin: 4px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1.4;
}

.bk-page__toc-link:hover {
  background: var(--accent);
  color: white;
}

.bk-page__proscons {
    grid-template-columns: 1fr;
  }

  .bk-page__title {
    font-size: 24px;
  }
