:root {
  --bg-color: #180603;
  --surface-color: #270904;
  --surface-2: #330C06;
  --border-color: rgba(221, 53, 25, 0.2);
  --color-primary: #DD3519;
  --color-primary-hover: #BC2D15;
  --btn-bonus-bg: linear-gradient(225deg, #EA563D 0%, #E63719 100%);
  --btn-bonus-hover: linear-gradient(225deg, #E63719 0%, #EA563D 100%);
  --color-secondary: #E9543C;
  --color-accent: #E74024;
  --color-green: #EE8B7B;
  --color-text: #FDFDFE;
  --color-text-muted: rgba(253, 253, 254, 0.55);
  --color-gray: rgba(253, 253, 254, 0.3);
  --container-width: 1320px;
  --border-radius: 11px;
  --transition: .2s;
  --header-height: 72px;
  --header-height-mob: 54px;
}

*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--color-text);
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: var(--color-primary); }
a:not([class]) { text-decoration: underline; color: var(--color-primary); }
a:not([class]):hover { text-decoration: none; color: var(--color-primary-hover); }

h1:not([class]) { font-size: 36px; font-weight: 800; line-height: 1.2; margin: 0.5em 0; }
h2:not([class]) { font-size: 22px; font-weight: 700; line-height: 1.3; margin: 1em 0 0.5em; }
h3:not([class]) { font-size: 18px; font-weight: 600; line-height: 1.3; margin: 0.8em 0 0.4em; }
h4:not([class]) { font-size: 16px; font-weight: 600; line-height: 1.3; margin: 0.8em 0 0.4em; }
p:not([class]) { font-size: 16px; line-height: 1.6; color: var(--color-text-muted); }
ul:not([class]) { padding-left: 20px; list-style: none; }
ul:not([class]) li:not([class]) { font-size: 16px; padding-left: 18px; position: relative; margin-bottom: 6px; color: var(--color-text-muted); }
ul:not([class]) li:not([class])::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border: 1px solid var(--color-primary); border-radius: 50%; }
ol:not([class]) { padding-left: 24px; }
ol:not([class]) li:not([class]) { font-size: 16px; line-height: 1.6; color: var(--color-text-muted); }

@media (max-width: 992px) {
  h1:not([class]) { font-size: 26px; }
  p:not([class]) { font-size: 15px; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--btn-bonus-bg);
  color: #FDFDFE;
}
.btn-primary:hover { background: var(--btn-bonus-hover); color: #FDFDFE; opacity: 0.9; }
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-gray);
}
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-sm { padding: 6px 16px; font-size: 13px; }
.btn-lg { padding: 14px 36px; font-size: 17px; }

/* ── HEADER ── */
#header-hew3b2 {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  background-color: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
  z-index: 9999;
  display: flex;
  align-items: center;
}


.header-wrapper-hew3b2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 0 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

#branding-hew3b2 { display: flex; align-items: center; flex-shrink: 0; }
#branding-hew3b2 img { max-width: 150px; max-height: 50px; width: auto; height: auto; display: block; }

#menu-hew3b2 { flex: 1; display: flex; align-items: center; }

/* ── DESKTOP NAV ── */
@media (min-width: 993px) {
  .navbar-toggler { display: none !important; }

  #navbarNav-hew3b2 { display: flex !important; align-items: center; }

  #navbarNav-hew3b2 .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
  }

  #navbarNav-hew3b2 .nav-item { position: relative; }

  #navbarNav-hew3b2 .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
    border-radius: var(--border-radius);
    transition: background-color var(--transition), color var(--transition);
    text-decoration: none;
  }
  #navbarNav-hew3b2 .nav-item .nav-link:hover { background-color: var(--surface-2); color: var(--color-text); }
  #navbarNav-hew3b2 .nav-item.active .nav-link { color: var(--color-text); background-color: var(--surface-2); }

  #navbarNav-hew3b2 .nav-item.has-dropdown { position: relative; }
  #navbarNav-hew3b2 .nav-item.has-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 180px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 6px;
    list-style: none;
    margin: 0;
    z-index: 100;
  }
  #navbarNav-hew3b2 .nav-item.has-dropdown:hover .dropdown-menu { display: block; }
  #navbarNav-hew3b2 .nav-item.has-dropdown .dropdown-menu .nav-link {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 8px;
    color: var(--color-text-muted);
  }
  #navbarNav-hew3b2 .nav-item.has-dropdown .dropdown-menu .nav-link:hover { background-color: var(--surface-2); color: var(--color-text); }
  #navbarNav-hew3b2 .nav-item.has-dropdown > .nav-link .bi { font-size: 10px; margin-left: 2px; }

  /* injected nav link wrapper */
  #navbarNav-hew3b2 .link-wrapper-hew3b2 { display: contents; }
  #navbarNav-hew3b2 .nav-item.current-menu-item-hew3b2 .nav-link { color: var(--color-text); background-color: var(--surface-2); }

  /* injected "More" dropdown */
  #navbarNav-hew3b2 .nav-item--more-hew3b2 { position: relative; }
  #navbarNav-hew3b2 .nav-more-btn-hew3b2 { background: none; border: none; padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--color-text-muted); cursor: pointer; display: flex; align-items: center; gap: 5px; white-space: nowrap; border-radius: var(--border-radius); transition: background-color var(--transition), color var(--transition); }
  #navbarNav-hew3b2 .nav-more-btn-hew3b2::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; transition: transform var(--transition); }
  #navbarNav-hew3b2 .nav-item--more-hew3b2.open .nav-more-btn-hew3b2::after { transform: rotate(180deg); }
  #navbarNav-hew3b2 .nav-more-btn-hew3b2:hover, #navbarNav-hew3b2 .nav-item--more-hew3b2.open .nav-more-btn-hew3b2 { background-color: var(--surface-2); color: var(--color-text); }
  #navbarNav-hew3b2 .nav-item--more-hew3b2.current-menu-item-hew3b2 .nav-more-btn-hew3b2 { color: var(--color-primary); }
  #navbarNav-hew3b2 .nav-dropdown-hew3b2 { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: var(--surface-color); border: 1px solid var(--border-color); border-radius: var(--border-radius); padding: 6px; min-width: 180px; z-index: 500; list-style: none; margin: 0; }
  #navbarNav-hew3b2 .nav-item--more-hew3b2.open .nav-dropdown-hew3b2 { display: block; }
  #navbarNav-hew3b2 .nav-dropdown__item-hew3b2 { list-style: none; }
  #navbarNav-hew3b2 .nav-dropdown-hew3b2 .nav-link { display: block; padding: 8px 12px; border-radius: 8px; font-size: 13px; color: var(--color-text-muted); white-space: nowrap; }
  #navbarNav-hew3b2 .nav-dropdown-hew3b2 .nav-link:hover { background-color: var(--surface-2); color: var(--color-text); }
  #navbarNav-hew3b2 .nav-dropdown-hew3b2 .current-menu-item-hew3b2 .nav-link { color: var(--color-primary); }
}

/* ── MOBILE NAV ── */
@media (max-width: 992px) {
  #header-hew3b2 { min-height: var(--header-height-mob); }
  .header-wrapper-hew3b2 { gap: 10px; padding: 0 12px; }
  #branding-hew3b2 img { max-width: 110px; max-height: 40px; }

  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--surface-2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
  }
  .navbar-toggler-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-text);
    position: relative;
    transition: background-color 0.3s;
  }
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform 0.3s, top 0.3s;
    left: 0;
  }
  .navbar-toggler-icon::before { top: -6px; }
  .navbar-toggler-icon::after { top: 6px; }
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon { background-color: transparent; }
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before { top: 0; transform: rotate(45deg); }
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after { top: 0; transform: rotate(-45deg); }

  #navbarNav-hew3b2 {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--surface-color);
    z-index: 9998;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    padding: 70px 0 32px;
  }
  #navbarNav-hew3b2.show { display: flex; }

  #navbarNav-hew3b2 .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 24px 16px;
    width: 100%;
    max-width: 360px;
  }

  #navbarNav-hew3b2 .nav-item { width: 100%; text-align: center; }
  #navbarNav-hew3b2 .nav-item .nav-link {
    display: block;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    border-radius: var(--border-radius);
    transition: background-color var(--transition);
    text-decoration: none;
  }
  #navbarNav-hew3b2 .nav-item .nav-link:hover { background-color: var(--surface-2); color: var(--color-primary); }

  #navbarNav-hew3b2 .nav-item.has-dropdown .dropdown-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 4px 0;
    margin: 0;
    background-color: var(--surface-2) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    position: static !important;
    transform: none !important;
  }
  #navbarNav-hew3b2 .nav-item.has-dropdown .dropdown-menu .nav-link { font-size: 15px; padding: 10px 20px; color: var(--color-text-muted); background-color: transparent !important; }

  /* "More" dropdown in mobile overlay */
  #navbarNav-hew3b2 .nav-item--more-hew3b2 { width: 100%; text-align: center; }
  #navbarNav-hew3b2 .nav-more-btn-hew3b2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: background-color var(--transition), color var(--transition);
  }
  #navbarNav-hew3b2 .nav-more-btn-hew3b2::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform var(--transition);
    flex-shrink: 0;
  }
  #navbarNav-hew3b2 .nav-item--more-hew3b2.open .nav-more-btn-hew3b2::after { transform: rotate(180deg); }
  #navbarNav-hew3b2 .nav-more-btn-hew3b2:hover,
  #navbarNav-hew3b2 .nav-item--more-hew3b2.open .nav-more-btn-hew3b2 { background-color: var(--surface-2); color: var(--color-primary); }
  #navbarNav-hew3b2 .nav-dropdown-hew3b2 {
    display: none;
    position: static;
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
    background: var(--surface-2);
    box-shadow: none;
    min-width: unset;
    width: 100%;
    border-radius: var(--border-radius);
  }
  #navbarNav-hew3b2 .nav-item--more-hew3b2.open .nav-dropdown-hew3b2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px;
  }
  #navbarNav-hew3b2 .nav-dropdown__item-hew3b2 { list-style: none; width: 100%; text-align: center; }
  #navbarNav-hew3b2 .nav-dropdown-hew3b2 .nav-link {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    border-radius: var(--border-radius);
  }
  #navbarNav-hew3b2 .nav-dropdown-hew3b2 .nav-link:hover { background-color: var(--surface-color); color: var(--color-primary); }
}

/* ── BUTTONS WRAPPER ── */
.buttons-wrapper-hew3b2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 499px) {
  .buttons-wrapper-hew3b2 {
    flex-direction: row;
  }
}
.buttons-wrapper-hew3b2 .btn { padding: 8px 18px; font-size: 13px; }
@media (max-width: 480px) {
  .buttons-wrapper-hew3b2 .btn { padding: 7px 10px; font-size: 11px; }
}

/* ── WRAPPER & MAIN ── */
#wrapper-hew3b2 { display: flex; flex-direction: column; min-height: 100vh; }

main {
  margin-top: var(--header-height);
  flex: 1;
  max-width: var(--container-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
@media (max-width: 992px) {
  main { margin-top: var(--header-height-mob); }
}

/* ── INTRO ── */
.intro-hew3b2 {
  position: relative;
  overflow: hidden;
  background-color: var(--surface-color);
  min-height: 500px;
  margin: 0 -20px;
}
.intro__inner-hew3b2 {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: stretch;
}
.intro__banner-hew3b2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.intro__char-hew3b2 {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right bottom;
  z-index: 1;
  pointer-events: none;
}
.intro__content-hew3b2 {
  position: relative;
  z-index: 2;
  padding: 48px 48px 48px 52px;
  background: linear-gradient(to right, rgba(24, 6, 3, 0.95) 50%, transparent 85%);
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.intro__text-hew3b2 {
  max-width: 480px;
  display: flex;
  flex-direction: column;
}
.intro__sub {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin: 0 0 6px;
}
.intro__title-hew3b2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 18px;
}
.intro__sum {
  font-size: 64px;
  font-weight: 800;
  background: var(--btn-bonus-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intro__btn-hew3b2 { margin-top: 4px; align-self: flex-start; }

@media (max-width: 768px) {
  .intro-hew3b2 { min-height: 360px; }
  .intro__inner-hew3b2 { min-height: 360px; }
  .intro__char-hew3b2 { height: 80%; opacity: 0.4; }
  .intro__content-hew3b2 { padding: 24px 20px; min-height: 360px; background: rgba(24, 6, 3, 0.88); justify-content: flex-end; }
  .intro__text-hew3b2 { max-width: 100%; align-items: center; text-align: center; }
  .intro__btn-hew3b2 { align-self: center; }
  .intro__title-hew3b2 { font-size: 33px; }
  .intro__sum { font-size: 42px; }
}

/* ── TOC ── */
.modern-card-hew3b2 {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 18px 22px;
  margin-bottom: 28px;
}
.toc-header-hew3b2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}
.toc-header-hew3b2 h3 { margin: 0; font-size: 15px; font-weight: 700; color: var(--color-text); }
#toc-body-hew3b2 ul { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 6px; }
#toc-body-hew3b2 ul li a { font-size: 14px; color: var(--color-primary); text-decoration: none; }
#toc-body-hew3b2 ul li a:hover { text-decoration: underline; }
.toc-collapsed #toc-body-hew3b2 { display: none; }

/* ── SECTIONS ── */
section.wrapper-hew3b2 { position: relative; padding: 36px 0; }
.align-center-hew3b2 { text-align: center; }
.small-text { font-size: 13px; color: var(--color-gray); margin-bottom: 8px; }
hr { border: 0; border-top: 1px solid var(--border-color); margin: 20px 0; }

/* Bonus cards */
.bonus-grid { display: flex; flex-wrap: wrap; gap: 16px; margin: 20px 0; }
.bonus-card { flex: 1 1 220px;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px 18px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.bonus-card:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.bonus-card .bonus-icon { font-size: 36px; margin-bottom: 10px; }
.bonus-card h3 { font-size: 16px; font-weight: 700; color: var(--color-text); margin: 0 0 8px; }
.bonus-card p { font-size: 13px; color: var(--color-text-muted); margin: 0 0 14px; line-height: 1.5; }

[data-aff] { cursor: pointer; }

/* ── PROMO CARDS ── */
.promo-cards-hew3b2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.promo-card-hew3b2 { flex: 1 1 100%; min-width: 0; }
.promo-card-hew3b2 {
  display: flex;
  align-items: center;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px 24px 24px 28px;
  overflow: hidden;
  gap: 12px;
  min-height: 160px;
  transition: border-color var(--transition);
}
@media (min-width: 360px) {
  .promo-card-hew3b2 { flex: 1 1 calc(50% - 5px); min-width: 0; }
}
.promo-card-hew3b2:hover { border-color: var(--color-primary); }
.promo-card__body-hew3b2 { flex: 1; min-width: 0; }
.promo-card__label-hew3b2 {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.promo-card__title-hew3b2 {
  font-size: 26px;
  font-weight: 800;
  background: var(--btn-bonus-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 4px;
  line-height: 1.15;
}
.promo-card__sub-hew3b2 {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 16px;
}

@media (max-width: 900px) {
  .promo-card-hew3b2 { min-height: auto; }
  .promo-card__title-hew3b2 { font-size: 20px; }
}

@media (max-width: 520px) {
  .promo-card-hew3b2 {
    padding: 12px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-card__img {
    height: 100px;
    align-self: center;
    order: -1;
  }

  .promo-card__title-hew3b2 {
    font-size: 18px;
  }

  .promo-card__label-hew3b2 {
    font-size: 10px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .promo-card__sub-hew3b2 {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

/* ── GAMES GRID ── */
.games-grid-hew3b2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.game-card-hew3b2 { flex: 1 1 calc(25% - 8px); min-width: 140px; }
.game-card-hew3b2 {
  background-color: var(--surface-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.game-card-hew3b2:hover { transform: translateY(-3px); }
.game-card__thumb-hew3b2 {
  aspect-ratio: 1 / 1;
  background-color: var(--surface-2);
  overflow: hidden;
}
.game-card__thumb-hew3b2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.game-card-hew3b2:hover .game-card__thumb-hew3b2 img { transform: scale(1.04); }
.game-card__info-hew3b2 { padding: 8px 10px 10px; }
.game-card__name-hew3b2 {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.game-card__provider {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

@media (max-width: 600px) { .game-card-hew3b2 { flex: 1 1 calc(50% - 5px); } }

/* Auto-injected content */
.auto-content-wrapper-hew3b2 { font-family: inherit; line-height: 1.6; color: inherit; }
.auto-content-wrapper-hew3b2 p { margin-bottom: 15px; }
.auto-content-wrapper-hew3b2 h1 { font-size: 36px; font-weight: 800; margin: 30px 0 18px; line-height: 1.2; }
.auto-content-wrapper-hew3b2 h2 { font-size: 26px; font-weight: 700; margin: 28px 0 16px; line-height: 1.3; }
.auto-content-wrapper-hew3b2 h3 { font-size: 21px; font-weight: 700; margin: 22px 0 12px; line-height: 1.35; }
.auto-content-wrapper-hew3b2 h4 { font-size: 18px; font-weight: 600; margin: 18px 0 10px; }
.auto-content-wrapper-hew3b2 h5 { font-size: 15px; font-weight: 600; margin: 14px 0 8px; }
.auto-content-wrapper-hew3b2 ul, .auto-content-wrapper-hew3b2 ol { margin-bottom: 20px; padding-left: 20px; }
.auto-content-wrapper-hew3b2 li { margin-bottom: 8px; }
.auto-content-wrapper-hew3b2 img { max-width: 100%; height: auto; border-radius: 8px; display: block; margin: 12px auto; }
.auto-image-row { text-align: center; }
.table-wrap-hew3b2 { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 22px 0; }
.table-wrap-hew3b2 table, .auto-content-wrapper-hew3b2 table {
  width: 100%; border-collapse: collapse;
  min-width: 400px;
  border: 1px solid var(--border-color);
}
.auto-content-wrapper-hew3b2 thead tr { background: var(--surface-2); }
.auto-content-wrapper-hew3b2 th { font-weight: 700; text-align: left; padding: 13px 16px; border-bottom: 2px solid var(--color-primary); color: var(--color-text); font-size: 14px; }
.auto-content-wrapper-hew3b2 td { padding: 12px 16px; border-bottom: 1px solid var(--border-color); color: var(--color-text-muted); font-size: 14px; }
.auto-content-wrapper-hew3b2 tr:last-child td { border-bottom: none; }
.auto-content-wrapper-hew3b2 tr:nth-child(even) td { background: rgba(253, 253, 254, 0.03); }
.modern-card-hew3b2 .auto-content-wrapper-hew3b2 { margin-top: 0; }

/* CTA button next to images */
.btn-cta-main-hew3b2 {
  display: inline-block;
  text-decoration: none;
  padding: 10px 24px;
  background: var(--btn-bonus-bg);
  color: #FDFDFE;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin: 12px 0 20px;
  transition: opacity .2s, transform .15s;
}
.btn-cta-main-hew3b2:hover { opacity: .85; transform: translateY(-1px); }

/* Split image + text layout */
.split-side-img-hew3b2 { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,.35); }

/* Sub-cards grid (h3+p grouping) */
.sub-cards-grid-hew3b2 { display: flex; flex-wrap: wrap; gap: 14px; margin: 18px 0; }
.sub-card-hew3b2 { flex: 1 1 calc(50% - 7px); min-width: 240px; }
.sub-card-hew3b2 {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(221, 53, 25, 0.06) 100%);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 18px 18px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.sub-card-hew3b2:hover { border-color: rgba(221, 53, 25, 0.5); box-shadow: 0 4px 18px rgba(221, 53, 25, 0.1); }
.sub-card-icon-hew3b2 { font-size: 22px; color: var(--color-primary); margin-bottom: 10px; display: block; }
.sub-card-hew3b2 h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px; color: var(--color-text); line-height: 1.35; }
.sub-card-hew3b2 p { font-size: 14px; color: var(--color-text-muted); margin: 0 0 8px; line-height: 1.6; }
.sub-card-hew3b2 p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .sub-card-hew3b2 { flex: 1 1 100%; } }

/* Info table */
.info-table-hew3b2 {
  width: 100%; border-collapse: collapse; margin: 16px 0; min-width: 400px;
}
.info-table-hew3b2 th, .info-table-hew3b2 td { padding: 12px 14px; border: 1px solid var(--border-color); font-size: 14px; text-align: left; }
.info-table-hew3b2 th { background-color: var(--surface-2); font-weight: 700; color: var(--color-text); width: 40%; }
.info-table-hew3b2 td { background-color: var(--surface-color); color: var(--color-text-muted); }
.info-table-hew3b2 tr:nth-child(even) td { background-color: var(--bg-color); }

/* Payment logos */
.payments-grid-hew3b2 { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 16px 0; }
.payments-grid-hew3b2 img, .payments-grid-hew3b2 svg { height: 32px; width: auto; filter: grayscale(0.2) brightness(0.85); opacity: 0.85; transition: all var(--transition); }
.payments-grid-hew3b2 img:hover, .payments-grid-hew3b2 svg:hover { filter: none; opacity: 1; }

/* Providers */
.container--big-hew3b2 { overflow: hidden; }
.providers-hew3b2 { overflow: hidden; }
.providers-list-hew3b2 {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: scroll-left 28s linear infinite;
  width: max-content;
}
.providers-list-hew3b2:hover { animation-play-state: paused; }
.providers-list__item-hew3b2 { flex-shrink: 0; padding: 8px 14px; }
.providers-list__item-hew3b2 img { height: 36px; width: auto; filter: grayscale(1) brightness(0.6); transition: filter var(--transition); }
.providers-list__item-hew3b2:hover img { filter: none; }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

#seo-content-inject { padding: 16px 0; }

/* ── ACCORDION ── */
.accordion-item {
  background-color: var(--surface-color);
  color: var(--color-text);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 6px;
  overflow: hidden;
}
.accordion-button {
  background-color: var(--surface-color);
  color: var(--color-text);
  font-weight: 600;
  font-size: 14px;
  border: none;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
  transition: background-color var(--transition);
}
.accordion-button:hover { background-color: var(--surface-2); }
.accordion-body {
  padding: 12px 16px 16px;
  color: var(--color-text-muted);
}
.accordion-body p, .accordion-body li { color: var(--color-text-muted); }
.accordion-collapse { display: none; }
.accordion-collapse.show { display: block; }

/* ── FOOTER ── */
#footer-hew3b2 {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  margin-top: 40px;
}
#footer-hew3b2 .footer-main-nav-hew3b2 {
  padding: 22px 20px 10px;
  max-width: var(--container-width);
  margin: 0 auto;
}
#footer-hew3b2 .footer-main-nav-list-hew3b2 {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
#footer-hew3b2 .footer-main-nav-list-hew3b2 li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  display: block;
  transition: color var(--transition), background-color var(--transition);
}
#footer-hew3b2 .footer-main-nav-list-hew3b2 li a:hover { color: var(--color-text); background-color: var(--surface-2); }
#footer-hew3b2 .footer-policy-hew3b2 {
  padding: 12px 20px;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: center;
}
#footer-hew3b2 .footer-policy-list-hew3b2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer-hew3b2 .footer-policy-hew3b2 a,
#footer-hew3b2 .footer-policy-list-hew3b2 li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
#footer-hew3b2 .footer-policy-hew3b2 a:hover,
#footer-hew3b2 .footer-policy-list-hew3b2 li a:hover { color: var(--color-primary); }
#footer-hew3b2 .footer-bottom-hew3b2 {
  border-top: 1px solid var(--border-color);
  padding: 14px 20px;
  text-align: center;
}
#footer-hew3b2 .footer-bottom-hew3b2 p { font-size: 12px; color: var(--color-gray); margin: 0; }

/* ── SCROLL TOP ── */
#scrollToTopBtn-hew3b2 {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  font-size: 16px;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1000;
}

/* ── MOBILE FIXED BUTTON ── */
.mobile-fixed-button-hew3b2 {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9997;
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 8px 14px;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .mobile-fixed-button-hew3b2 { display: flex; }
  main { padding-bottom: 64px; }
  #footer-hew3b2 { padding-bottom: 70px; }
}
.mobile-fixed-button-link-hew3b2 {
  flex: 1;
  padding: 11px 20px;
  font-size: 25px;
  font-weight: 700;
  background: var(--btn-bonus-bg);
  color: #FDFDFE;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  text-align: center;
}
.mobile-scroll-top-hew3b2 {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-radius: 50%;
  color: var(--color-text);
  font-size: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

/* ── CLOSE BUTTON IN MOBILE MENU ── */
.nav-close-btn-hew3b2 {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--surface-2);
  z-index: 10;
}
@media (max-width: 992px) {
  .nav-close-btn-hew3b2 { display: flex; }
  #navbarNav-hew3b2 { background-color: var(--surface-color) !important; }
  /* Hide desktop scroll-to-top on mobile (mobile has its own) */
  #scrollToTopBtn-hew3b2 { display: none !important; }
}

/* ── 30s PROMO MODAL ── */
.promo-overlay-hew3b2 {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.promo-overlay-hew3b2.active { display: flex; }
.promo-popup-hew3b2 {
  position: relative;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--bg-color) 100%);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  padding: 40px 32px 32px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(221, 53, 25, 0.35);
}
.promo-btn-close-hew3b2 {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--surface-2);
  border: none;
  color: var(--color-text);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-btn-close-hew3b2:hover { background: var(--border-color); }
.promo-tagline-hew3b2 { color: var(--color-primary); font-weight: 700; font-size: 14px; margin: 0 0 10px; }
.promo-headline-hew3b2 { color: var(--color-text); font-size: 26px; font-weight: 900; line-height: 1.2; margin: 0 0 18px; }
.promo-headline-hew3b2 span { color: var(--color-primary); font-size: 34px; }
.promo-coins-badge-hew3b2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface-2);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 22px;
}
.promo-coins-icon-hew3b2 { font-size: 18px; }
.promo-coins-text-hew3b2 { color: var(--color-text-muted); font-size: 13px; font-weight: 600; }
.promo-btn-cta-hew3b2 {
  background: var(--btn-bonus-bg);
  color: #FDFDFE;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: opacity .2s;
}
.promo-btn-cta-hew3b2:hover { opacity: 0.9; }

/* ── IMAGES IN ROW WITH CONTENT ── */
.content-image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin: 16px 0;
}
.content-image-row > * { flex: 1 1 calc(50% - 12px); min-width: 280px; }
.content-image-row img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  display: block;
}

/* sZggsj */
