:root {
  --bk-surface-page:        #f8f8fd;
  --bk-surface-secondary:   #eeeefa;
  --bk-surface-tertiary:    #f5f5fb;
  --bk-surface-card:        #ffffff;
  --bk-border:              #e0e0ee;
  --bk-border-light:        #ebebf5;
  --bk-text-primary:        #1a1a1a;
  --bk-text-secondary:      #3a3e48;
  --bk-text-tertiary:       #5a6070;
  --bk-text-muted:          #7a8090;
  --bk-text-faint:          #9aa0b0;
  --bk-text-divider:        #c4c8d2;
  --bk-accent-blue:         #1a4fb8;
  --bk-accent-blue-bg:      #eff3ff;
  --bk-accent-green:        #1f7a45;
  --bk-accent-green-bg:     #e8f5ee;
  --bk-accent-amber:        #f5a623;
  --bk-accent-red:          #a32d2d;
  --bk-accent-red-bg:       #fceaea;
  --bk-promo-bg:            #fff7e6;
  --bk-promo-color:         #995900;
  --bk-promo-border:        #f0d9a3;
  --bk-badge-home-bg:       #eaf3de;
  --bk-badge-home-color:    #3b6d11;
  --bk-badge-away-bg:       #fceaea;
  --bk-badge-away-color:    #a32d2d;
  --bk-cta-blue:            linear-gradient(90deg, #4F91FF 0%, #3D36B9 100%);
  --bk-cta-blue-border:     #468AFD;
  --bk-cta-green:           linear-gradient(90deg, #10B981 0%, #059669 100%);
}

/* ===== Контентный контейнер ===== */
.bk-page {
  max-width: 930px;
  margin: 0 auto;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* ===== H1 + editorial intro ===== */
.bk-bonus__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--bk-text-primary, #1a1a1a);
  font-family: inherit;
}
.bk-bonus__intro { margin: 0 0 22px; }
.bk-bonus__intro-paragraph {
  font-size: 18px;
  line-height: 1.7;
  color: #2a2e38;
  margin: 0 0 14px;
  font-family: inherit;
}
.bk-bonus__intro-paragraph:last-child { margin-bottom: 0; }
.bk-bonus__intro-paragraph--secondary {
  font-size: 16px;
  color: var(--bk-text-secondary, #3a3e48);
}
.bk-bonus__intro-paragraph b { color: var(--bk-text-primary, #1a1a1a); font-weight: 600; }

/* ===== Bonus header card ===== */
.bk-bonus-header {
  border: 1px solid var(--bk-border, #e0e0ee);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 18px;
  background: #fff;
  font-family: inherit;
}
.bk-bonus-header__top {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; flex-wrap: wrap;
}
.bk-bonus-header__logo {
  flex-shrink: 0; width: 100px; height: 56px; background: #fff;
  border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 4px;
}
.bk-bonus-header__logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.bk-bonus-header__info { flex: 1; min-width: 160px; }
.bk-bonus-header__amount-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.bk-bonus-header__amount {
  font-size: 28px; font-weight: 700; color: var(--bk-accent-blue, #1a4fb8); line-height: 1;
}
.bk-bonus-header__amount-label { font-size: 13px; color: var(--bk-text-muted, #7a8090); }
.bk-bonus-header__meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 10px;
}
.bk-bonus-header__code-label { font-size: 13px; color: var(--bk-text-muted, #7a8090); }
.bk-bonus-header__validity { font-size: 12px; color: var(--bk-text-tertiary, #5a6070); }

/* Prominent coupon-style promo code */
.bk-promo-code {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--bk-promo-bg, #fff7e6); color: var(--bk-promo-color, #995900);
  padding: 8px 14px; border-radius: 6px; font-size: 16px; font-weight: 700;
  letter-spacing: 0.5px; font-family: inherit; border: 1.5px dashed #e0b765; cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  vertical-align: baseline;
}
.bk-promo-code:hover { background: #ffefcc; border-color: #d4a23f; }
.bk-promo-code:active { transform: translateY(1px); }
.bk-promo-code__icon-copy, .bk-promo-code__icon-check { flex-shrink: 0; opacity: 0.85; }
.bk-promo-code__icon-check { display: none; }
.bk-promo-code__tooltip {
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bk-text-primary, #1a1a1a); color: #fff; padding: 4px 10px;
  border-radius: 4px; font-size: 11px; font-weight: 500; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
}
.bk-promo-code__tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 4px solid transparent; border-top-color: var(--bk-text-primary, #1a1a1a);
}
.bk-promo-code--copied {
  background: var(--bk-accent-green-bg, #e8f5ee); color: var(--bk-accent-green, #1f7a45); border-color: #a8d8bb;
}
.bk-promo-code--copied .bk-promo-code__icon-copy { display: none; }
.bk-promo-code--copied .bk-promo-code__icon-check { display: inline-block; opacity: 1; }
.bk-promo-code--copied .bk-promo-code__tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* GREEN CTA — "забрать бонус" */
.bk-bonus-header__cta {
  padding: 11px 22px;
  background: var(--bk-cta-blue, linear-gradient(90deg, #4F91FF 0%, #3D36B9 100%));
  border: 1px solid var(--bk-cta-blue-border, #468AFD);
  color: #fff; border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; white-space: nowrap; transition: opacity 0.15s ease;
}
.bk-bonus-header__cta:hover { opacity: 0.92; }

.bk-bonus-header__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--bk-surface-secondary, #eeeefa); border-top: 1px solid var(--bk-border, #e0e0ee);
}
.bk-bonus-stat { padding: 10px 12px; text-align: center; border-right: 1px solid var(--bk-border, #e0e0ee); }
.bk-bonus-stat:last-child { border-right: none; }
.bk-bonus-stat__label {
  display: block; font-size: 10px; color: var(--bk-text-muted, #7a8090);
  text-transform: uppercase; letter-spacing: 0.4px; font-weight: 500; margin-bottom: 2px;
}
.bk-bonus-stat__value { display: block; font-size: 14px; font-weight: 600; color: var(--bk-text-primary, #1a1a1a); }

/* ===== Lead callout ===== */
.bk-bonus-lead {
  font-size: 15px; color: var(--bk-text-secondary, #3a3e48); line-height: 1.7;
  margin: 0 0 22px; font-family: inherit;
}
.bk-bonus-lead b { color: var(--bk-text-primary, #1a1a1a); font-weight: 600; }

/* ===== Article body ===== */
.bk-article { color: #2a2e38; line-height: 1.7; margin: 0 0 32px; font-family: inherit; }
.bk-article__intro { font-size: 17px; margin: 0 0 18px; }
.bk-article__intro b { color: var(--bk-text-primary, #1a1a1a); font-weight: 600; }
.bk-article h2 {
  font-size: 24px; font-weight: 600; color: var(--bk-text-primary, #1a1a1a);
  margin: 32px 0 12px; line-height: 1.3;
}
.bk-article h3 {
  font-size: 18px; font-weight: 600; color: var(--bk-text-primary, #1a1a1a);
  margin: 22px 0 8px; line-height: 1.35;
}
.bk-article p { font-size: 16px; margin: 0 0 14px; }
.bk-article p b { color: var(--bk-text-primary, #1a1a1a); font-weight: 600; }
.bk-article ul { list-style: none; padding: 0; margin: 0 0 16px; }
.bk-article ul li {
  position: relative; padding-left: 18px; margin-bottom: 8px; font-size: 16px;
}
.bk-article ul li::before {
  content: ''; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px;
  background: var(--bk-text-divider, #c4c8d2); border-radius: 50%;
}
.bk-article ul li b { color: var(--bk-text-primary, #1a1a1a); font-weight: 600; }
.bk-article__warn {
  background: var(--bk-accent-red-bg, #fceaea); border-left: 3px solid var(--bk-accent-red, #a32d2d);
  padding: 12px 16px; border-radius: 6px; font-size: 15px;
}
.bk-article__note {
  font-size: 14px; color: var(--bk-text-tertiary, #5a6070); font-style: italic; margin: -6px 0 16px;
}
.bk-article__tip {
  margin: 0 0 16px; padding: 12px 16px; background: var(--bk-accent-green-bg, #e8f5ee);
  border-left: 3px solid var(--bk-accent-green, #1f7a45); border-radius: 6px;
  font-size: 15px; color: var(--bk-text-secondary, #3a3e48);
}
.bk-article__tip b { color: var(--bk-accent-green, #1f7a45); }
.bk-article__figure { margin: 0 0 18px; }
.bk-article__figure img {
  display: block; width: 100%; height: auto; border: 1px solid var(--bk-border, #e0e0ee);
  border-radius: 8px;
}

/* ===== Tables ===== */
.bk-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 16px;
  border: 1px solid var(--bk-border, #e0e0ee); border-radius: 8px;
}
.bk-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; }
.bk-table th {
  background: var(--bk-surface-secondary, #eeeefa); color: var(--bk-text-primary, #1a1a1a);
  font-weight: 600; text-align: left; padding: 10px 14px; white-space: nowrap;
  border-bottom: 1px solid var(--bk-border, #e0e0ee);
}
.bk-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--bk-border-light, #ebebf5);
  color: var(--bk-text-secondary, #3a3e48);
}
.bk-table tr:last-child td { border-bottom: none; }
.bk-table tbody tr:nth-child(odd) { background: var(--bk-surface-tertiary, #f5f5fb); }
.bk-table td b { color: var(--bk-text-primary, #1a1a1a); }

/* ===== Inline CTA (green) ===== */
.bk-cta-wrap { margin: 4px 0 22px; text-align: center; }
.bk-inline-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; background: var(--bk-cta-blue, linear-gradient(90deg, #4F91FF 0%, #3D36B9 100%));
  border: 1px solid var(--bk-cta-blue-border, #468AFD); color: #fff; border-radius: 8px;
  font-size: 15px; font-weight: 600; text-decoration: none; transition: opacity 0.15s ease;
}
.bk-inline-cta:hover { opacity: 0.92; }

/* ===== Disclaimer ===== */
.bk-disclaimer {
  margin: 24px 0 0; padding: 14px 16px; background: var(--bk-surface-tertiary, #f5f5fb);
  border: 1px solid var(--bk-border-light, #ebebf5); border-radius: 8px;
}
.bk-disclaimer p { font-size: 13px; color: var(--bk-text-tertiary, #5a6070); line-height: 1.6; margin: 0; }

/* ===== FAQ accordion (как на /bonuses) ===== */
.bn-list-faq { margin: 0 0 40px; counter-reset: faq; }
.bn-list-faq__title {
  font-size: 24px; font-weight: 600; color: var(--bk-text-primary, #1a1a1a);
  margin: 0 0 16px; line-height: 1.3;
}
.bn-list-faq__item {
  border: 1px solid var(--bk-border, #e0e0ee); border-radius: 8px; margin-bottom: 8px;
  background: #fff; overflow: hidden; counter-increment: faq;
}
.bn-list-faq__item[open] { border-color: var(--bk-text-divider, #c4c8d2); }
.bn-list-faq__item > summary {
  list-style: none; cursor: pointer; padding: 14px 18px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; transition: background-color 0.15s ease;
}
.bn-list-faq__item > summary::-webkit-details-marker { display: none; }
.bn-list-faq__item > summary::marker { display: none; }
.bn-list-faq__item > summary:hover { background: var(--bk-surface-tertiary, #f5f5fb); }
.bn-list-faq__item > summary::before {
  content: counter(faq, decimal-leading-zero) " /"; flex-shrink: 0; font-size: 14px; font-weight: 600;
  color: var(--bk-text-muted, #7a8090); letter-spacing: 0.5px; min-width: 36px; margin-right: 6px;
  transition: color 0.2s ease;
}
.bn-list-faq__item[open] > summary::before { color: var(--bk-accent-blue, #1a4fb8); }
.bn-list-faq__question {
  font-size: 16px; font-weight: 600; color: var(--bk-text-primary, #1a1a1a); margin: 0; flex: 1; line-height: 1.4;
}
.bn-list-faq__item > summary::after {
  content: ''; flex-shrink: 0; width: 14px; height: 14px;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 100% 2px, 2px 100%; background-position: center; background-repeat: no-repeat;
  color: var(--bk-text-muted, #7a8090); transition: transform 0.25s ease, color 0.2s ease;
}
.bn-list-faq__item[open] > summary::after { transform: rotate(45deg); color: var(--bk-accent-blue, #1a4fb8); }
.bn-list-faq__answer {
  padding: 0 18px 16px; color: var(--bk-text-secondary, #3a3e48); font-size: 15px; line-height: 1.6;
  overflow: hidden; transition: height 0.28s ease; box-sizing: border-box;
}
.bn-list-faq__answer p { margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .bk-bonus__title { font-size: 24px; }
  .bk-bonus__intro-paragraph { font-size: 16px; }
  .bk-bonus__intro-paragraph--secondary { font-size: 15px; }

  .bk-bonus-header__top { padding: 14px 16px; align-items: center; gap: 12px; }
  .bk-bonus-header__logo { width: 72px; height: 44px; }
  .bk-bonus-header__info { min-width: 0; }
  .bk-bonus-header__amount { font-size: 24px; }
  .bk-bonus-header__cta { width: 100%; text-align: center; padding: 12px; }
  .bk-bonus-header__stats { grid-template-columns: repeat(2, 1fr); }
  .bk-bonus-stat:nth-child(2) { border-right: none; }
  .bk-bonus-stat:nth-child(1), .bk-bonus-stat:nth-child(2) { border-bottom: 1px solid var(--bk-border, #e0e0ee); }

  .bk-article h2, .bn-list-faq__title { font-size: 20px; }
  .bk-article h3 { font-size: 17px; }
  .bk-article p, .bk-article ul li, .bk-article__intro { font-size: 15px; }
  .bn-list-faq__question { font-size: 15px; }
  .bn-list-faq__item > summary { padding: 12px 14px; }
  .bn-list-faq__answer { padding: 0 14px 14px; font-size: 14.5px; }
}