@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #082132;
  --text: #01111c;
  --muted: #7d858a;
  --orange: #faa223;
  --orange-dark: #e8901a;
  --blue-soft: #dbf0fe;
  --blue: #4bb3fa;
  --orange-soft: #feecd3;
  --green-a: #63d95b;
  --green-b: #149414;
  --border: #e3e8ef;
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ───── Header ───── */
.header {
  background: var(--navy);
  height: 76px;
  position: sticky; top: 0; z-index: 20;
}
.header__container {
  max-width: 1100px; margin: 0 auto; padding: 0 20px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.header__logo {
  font-size: 22px; font-weight: 800; color: #fff; white-space: nowrap;
}
.header__logo span { color: var(--orange); }
.header__menu {
  display: flex; gap: 22px; list-style: none; flex-wrap: wrap;
}
.header__menu a {
  color: #dfe7ee; font-weight: 600; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.3px;
}
.header__menu a:hover { color: var(--orange); text-decoration: none; }
.header__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.header__burger span { width: 26px; height: 3px; background: #fff; border-radius: 2px; }

/* ───── Breadcrumbs ───── */
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none;
  font-weight: 700; font-size: 13px; color: var(--muted);
  padding: 16px 0 0;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs li:not(:last-child)::after { content: '›'; margin-left: 8px; color: #b7c0c7; }

/* ───── Page header ───── */
.page-header { padding: 20px 0 8px; }
.entry-title {
  font-size: 32px; font-weight: 800; line-height: 1.2; color: var(--text);
  text-transform: none; margin-bottom: 14px;
}
.page-info { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13px; color: var(--muted); }
.page-info__item { display: flex; align-items: center; gap: 6px; }
.page-info__item span.label { font-weight: 600; }
.page-info__value { color: var(--text); font-weight: 600; }
.page-info .avatar-mini {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #2c7fd4);
  color: #fff; font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ───── Section base ───── */
.section { padding: 28px 0; }
.section h2 {
  font-size: 26px; font-weight: 800; line-height: 1.25; margin-bottom: 14px;
  color: var(--text);
}
.section h3 { font-size: 19px; font-weight: 700; margin: 22px 0 10px; }
.section p { margin-bottom: 12px; color: #2a3640; }
.section ul.dotted { margin: 0 0 14px 20px; color: #2a3640; }
.section ul.dotted li { padding: 3px 0; }

/* ───── Offer table (table-bonus) ───── */
.table-bonus { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.table-bonus__row {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 12px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 10px rgba(8,33,50,0.05);
  transition: box-shadow .18s, transform .18s;
}
.table-bonus__row:hover { box-shadow: 0 6px 22px rgba(8,33,50,0.12); transform: translateY(-2px); }

/* Left cell: rating + logo */
.table-bonus__info {
  position: relative;
  background: var(--blue-soft);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 22px 12px 14px;
}
.table-bonus__rating {
  position: absolute; top: -2px; left: -2px;
  display: flex; align-items: center; gap: 3px;
  background: linear-gradient(135deg, var(--green-a), var(--green-b));
  color: #fff; font-size: 13px; font-weight: 700;
  border-radius: 4px; padding: 4px 8px;
}
.brand-logo { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; text-align: center; }
.bl-ice   { color: #1d4ed8; }
.bl-ggbet { color: #c2410c; }
.bl-verde { color: #15803d; }
.bl-lemon { color: #a16207; }

/* Middle cell */
.table-bonus__middle { display: flex; }
.table-bonus__middle-inner {
  border: 1px solid var(--blue-soft); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 8px; padding: 12px; flex-grow: 1;
  justify-content: center;
}
.table-bonus__details-text { font-size: 18px; font-weight: 700; color: var(--text); }
.table-bonus__details-slot { font-size: 14px; color: var(--muted); }
.table-bonus__details-slot a { color: var(--blue); font-weight: 600; }
.table-bonus__conditions-items {
  background: var(--blue-soft); border-radius: 4px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  font-size: 12px; letter-spacing: .3px; padding: 8px 10px;
}
.table-bonus__conditions-item { display: flex; gap: 5px; }
.table-bonus__conditions-item span:first-child { color: var(--muted); }
.table-bonus__conditions-item .value { font-weight: 700; color: var(--text); }

/* Promo code box (copy-text) */
.copy-text {
  display: flex; align-items: center; gap: 8px;
  border: 1px dashed var(--blue); border-radius: 6px;
  padding: 7px 10px; background: #f1f9ff;
}
.copy-text .code-val { font-weight: 800; letter-spacing: 1px; color: #0a6cc0; font-size: 14px; }
.copy-text .copy-btn {
  margin-left: auto; background: var(--orange); color: #fff; border: none;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 5px 11px; border-radius: 6px; cursor: pointer; transition: background .2s;
}
.copy-text .copy-btn:hover { background: var(--orange-dark); }
.copy-text.no-code { border-style: solid; border-color: var(--border); background: #f7f9fb; justify-content: center; }
.copy-text.no-code span { color: var(--muted); font-size: 12px; font-style: italic; }

/* Right cell: buttons */
.table-bonus__buttons {
  display: flex; flex-direction: column; gap: 8px; justify-content: center; text-align: center;
}
.button {
  display: block; width: 100%; border: none; border-radius: 10px;
  color: #fff; font-size: 15px; font-weight: 700; line-height: 24px;
  text-transform: uppercase; padding: 11px 14px; text-align: center;
  cursor: pointer; transition: .25s;
}
.button:hover { text-decoration: none; }
.button_orange { background: var(--orange); }
.button_orange:hover { background: var(--orange-dark); }
.terms_conditions { font-size: 11px; color: var(--muted); }

/* ───── Trust badges ───── */
.table-bonus-badges {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: 18px; padding: 14px; background: var(--blue-soft); border-radius: 10px;
}
.table-bonus-badges__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--text);
}
.table-bonus-badges__item .ico {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-a), var(--green-b));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* ───── Instruction ───── */
.instruction { counter-reset: instruction; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.instruction__item {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--blue-soft); border-radius: var(--radius); padding: 12px; position: relative;
}
.instruction__item::before {
  counter-increment: instruction; content: counter(instruction);
  flex: 0 0 40px; height: 40px; border-radius: var(--radius);
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; font-weight: 700;
}
.instruction__data { flex-grow: 1; padding-top: 6px; }
.instruction__data strong { color: var(--text); }
.instruction__data p { margin: 0; color: #2a3640; }

/* ───── Pros / Cons ───── */
.pros_cons { display: flex; flex-wrap: wrap; gap: 14px; }
.pros_cons__main-title { font-size: 22px; font-weight: 800; width: 100%; margin-bottom: 4px; }
.pros_cons__column {
  flex-basis: calc(50% - 7px); flex-grow: 1;
  border: 1px solid var(--orange-soft); border-radius: 8px; padding: 16px 18px;
}
.pros_cons__column-cons { border-color: #fcd9d2; }
.pros_cons__title { font-size: 17px; font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.pros_cons__column .pros_cons__title { color: var(--green-b); }
.pros_cons__column-cons .pros_cons__title { color: #c0392b; }
.pros_cons__items { list-style: none; }
.pros_cons__item { position: relative; padding: 5px 0 5px 26px; color: #2a3640; }
.pros_cons__item::before {
  content: '✓'; position: absolute; left: 0; top: 5px; color: var(--green-b); font-weight: 700;
}
.pros_cons__item-cons::before { content: '✕'; color: #c0392b; }

/* ───── Author review ───── */
.author-review {
  background: var(--blue-soft); border: 1px solid var(--blue); border-radius: 14px;
  padding: 18px 20px; margin: 8px 0; position: relative;
}
.author-review__content p { margin: 0 0 14px; color: #1f2c35; }
.author-review__author { display: flex; align-items: center; gap: 12px; }
.author-review__photo {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #2c7fd4);
  color: #fff; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex: 0 0 46px;
}
.author-review__name { font-weight: 800; font-size: 15px; }
.author-review__text { font-size: 12px; color: var(--muted); }

/* ───── FAQ ───── */
.faq-item {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 4px 18px; margin-bottom: 10px; background: #fff;
}
.faq-item__question-wrapper {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; position: relative; padding: 14px 0;
}
.faq-item__question { font-size: 16px; font-weight: 700; line-height: 21px; margin: 0; }
.faq-item__question-icon {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 21px;
  background: var(--orange-soft); position: relative; transition: .2s;
}
.faq-item__question-icon::before,
.faq-item__question-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--orange);
  transform: translate(-50%, -50%); border-radius: 2px;
}
.faq-item__question-icon::before { width: 14px; height: 2px; }
.faq-item__question-icon::after { width: 2px; height: 14px; transition: .2s; }
.faq-item_open .faq-item__question-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item__answer { display: none; font-size: 14px; line-height: 21px; padding-bottom: 14px; color: #2a3640; }
.faq-item_open .faq-item__answer { display: block; }

/* ───── Info box ───── */
.info-box {
  background: var(--orange-soft); border: 1px solid #f6d9ab;
  border-radius: 10px; padding: 18px 20px; margin: 18px 0;
}
.info-box p { margin: 0; color: #6b4a16; }

/* ───── Conditions table (brand pages) ───── */
.cond-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.cond-table th, .cond-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.cond-table th { background: var(--blue-soft); font-weight: 700; width: 42%; }
.cond-table tr:last-child td, .cond-table tr:last-child th { border-bottom: none; }
.cond-table .code-chip {
  display: inline-block; background: #f1f9ff; border: 1px dashed var(--blue);
  padding: 2px 9px; border-radius: 6px; font-weight: 800; color: #0a6cc0; letter-spacing: 1px;
}

/* Brand page promo block */
.brand-promo {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  border: 1px dashed var(--blue); background: #f1f9ff;
  border-radius: 12px; padding: 18px 20px; margin: 16px 0;
}
.brand-promo .bp-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; }
.brand-promo .bp-code { font-size: 26px; font-weight: 800; letter-spacing: 2px; color: #0a6cc0; }
.brand-promo .bp-copy {
  margin-left: auto; background: var(--orange); color: #fff; border: none;
  font-weight: 700; text-transform: uppercase; font-size: 13px;
  padding: 10px 20px; border-radius: 9px; cursor: pointer; transition: background .2s;
}
.brand-promo .bp-copy:hover { background: var(--orange-dark); }

.cta-center { text-align: center; padding: 8px 0 24px; }
.cta-center .button { display: inline-block; width: auto; min-width: 320px; }

/* ───── Footer ───── */
.footer { background: var(--navy); color: #aeb6c2; padding: 32px 0; margin-top: 32px; font-size: 13px; }
.footer__menu { display: flex; gap: 18px; flex-wrap: wrap; list-style: none; margin-bottom: 16px; }
.footer__menu a { color: #cdd5e0; font-weight: 600; }
.footer .disclaimer { line-height: 1.7; }
.age { display: inline-block; background: #b4452f; color: #fff; font-weight: 800; padding: 2px 9px; border-radius: 6px; margin-right: 8px; }

/* ───── Copy-text label ───── */
.copy-text .ct-label { font-size: 11px; color: var(--muted); font-weight: 600; }

/* ───── H3 brand sections ───── */
.section h3 {
  font-size: 20px; font-weight: 800; margin: 30px 0 10px;
  color: var(--text); border-left: 4px solid var(--orange);
  padding-left: 12px; line-height: 1.3;
}
.section h4 {
  font-size: 16px; font-weight: 700; margin: 18px 0 8px; color: var(--text);
}

/* ───── Offer CTA inline (inside brand section) ───── */
.offer-cta-inline { margin: 14px 0 24px; }
.offer-cta-inline .button { display: inline-block; width: auto; min-width: 280px; }

/* ───── Slot info box ───── */
.slot-info {
  background: var(--blue-soft); border-radius: var(--radius);
  padding: 14px 18px; margin: 8px 0 20px;
}
.slot-info p { margin: 0 0 8px; color: #1f2c35; }
.slot-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 0; }
.slot-facts li { font-size: 13px; color: #2a3640; }
.slot-facts li strong { color: var(--text); }

/* ───── Mobile ───── */
@media (max-width: 860px) {
  .header__menu {
    position: absolute; top: 76px; left: 0; right: 0; background: var(--navy);
    flex-direction: column; gap: 0; padding: 0 20px; display: none;
  }
  .header__menu.open { display: flex; }
  .header__menu li { border-top: 1px solid rgba(255,255,255,0.1); }
  .header__menu a { display: block; padding: 14px 0; }
  .header__burger { display: flex; }
  .table-bonus__row { grid-template-columns: 1fr; }
  .pros_cons__column { flex-basis: 100%; }
  .entry-title { font-size: 26px; }
  .section h2 { font-size: 22px; }
  .cta-center .button { min-width: 0; width: 100%; }
}
