/* betx-za.com — style.css — prefix: bx */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--bx-bg); color: var(--bx-text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: 0; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,p,li,blockquote,td,th { overflow-wrap: anywhere; word-break: break-word; }

/* === ROOT === */
:root {
  --bx-bg:          #0b0f1a;
  --bx-bg-card:     #141928;
  --bx-bg-raised:   #1c2338;
  --bx-bg-header:   #0d1221;
  --bx-blue:        #1a56db;
  --bx-blue-dark:   #1447b8;
  --bx-blue-light:  #3b82f6;
  --bx-gold:        #f5a800;
  --bx-gold-muted:  rgba(245,168,0,.12);
  --bx-text:        #f1f5f9;
  --bx-text-muted:  #94a3b8;
  --bx-text-dim:    #475569;
  --bx-border:      rgba(255,255,255,.07);
  --bx-border-blue: rgba(26,86,219,.4);
  --bx-radius:      8px;
  --bx-radius-sm:   5px;
  --bx-radius-lg:   12px;
  --bx-shadow:      0 2px 12px rgba(0,0,0,.5);
  --bx-shadow-lg:   0 8px 32px rgba(0,0,0,.6);
  --bx-container:   1280px;
}

/* === CONTAINER === */
.bx-container { max-width: var(--bx-container); margin-inline: auto; padding-inline: 16px; }
@media (min-width: 760px)  { .bx-container { padding-inline: 20px; } }
@media (min-width: 1200px) { .bx-container { padding-inline: 28px; } }

/* === BUTTONS === */
.bx-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 20px; border-radius: var(--bx-radius-sm); font-weight: 700; font-size: 13px; letter-spacing: .03em; transition: background .15s, box-shadow .15s; white-space: nowrap; max-width: 100%; cursor: pointer; }
.bx-btn--primary { background: var(--bx-blue); color: #fff; box-shadow: 0 4px 14px rgba(26,86,219,.4); }
.bx-btn--primary:hover { background: var(--bx-blue-dark); }
.bx-btn--gold { background: var(--bx-gold); color: #000; font-weight: 900; box-shadow: 0 4px 14px rgba(245,168,0,.35); }
.bx-btn--gold:hover { background: #e09800; }
.bx-btn--ghost { background: rgba(255,255,255,.08); color: var(--bx-text); border: 1px solid var(--bx-border); }
.bx-btn--ghost:hover { background: rgba(255,255,255,.14); }
.bx-btn--outline { background: transparent; border: 1px solid var(--bx-blue); color: var(--bx-blue); }
.bx-btn--outline:hover { background: var(--bx-blue); color: #fff; }
.bx-btn--lg { padding: 12px 28px; font-size: 14.5px; }
.bx-btn--sm { padding: 6px 14px; font-size: 12px; }

/* ============================================================ HEADER ============================================================ */
.bx-header { position: sticky; top: 0; z-index: 400; background: var(--bx-bg-header); border-bottom: 1px solid var(--bx-border); }
.bx-header__inner { display: flex; align-items: center; gap: 12px; padding: 10px 0; min-width: 0; flex-wrap: nowrap; }
.bx-header__logo { flex-shrink: 0; display: flex; align-items: center; min-width: 0; }
.bx-header__logo img { height: 36px; width: auto; max-width: 160px; object-fit: contain; }
.bx-header__nav { display: none; flex: 1; align-items: center; gap: 2px; min-width: 0; overflow: hidden; }
.bx-header__nav a { display: flex; align-items: center; gap: 5px; padding: 6px 10px; font-size: 12.5px; font-weight: 600; color: var(--bx-text-muted); border-radius: var(--bx-radius-sm); white-space: nowrap; transition: color .15s, background .15s; }
.bx-header__nav a:hover, .bx-header__nav a.is-active { color: var(--bx-text); background: rgba(255,255,255,.06); }
.bx-header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.bx-header__actions .bx-btn { padding: 8px 12px; font-size: 12px; letter-spacing: .02em; }
.bx-header__burger { display: flex; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: var(--bx-radius-sm); flex-shrink: 0; }
.bx-header__burger span { display: block; width: 20px; height: 2px; background: var(--bx-text); border-radius: 2px; }
@media (min-width: 1024px) { .bx-header__nav { display: flex; } .bx-header__burger { display: none; } }
@media (min-width: 760px) { .bx-header__logo img { height: 40px; max-width: none; } .bx-header__inner { gap: 18px; padding: 12px 0; } .bx-header__actions { gap: 10px; } .bx-header__actions .bx-btn { padding: 9px 18px; font-size: 13px; } }
@media (max-width: 479px) { .bx-header__actions .bx-btn--outline { display: none; } }

/* SUBNAV / CATEGORY TABS */
.bx-subnav { background: var(--bx-bg-card); border-bottom: 1px solid var(--bx-border); overflow-x: auto; scrollbar-width: none; }
.bx-subnav::-webkit-scrollbar { display: none; }
.bx-subnav__inner { display: flex; align-items: center; min-width: max-content; gap: 2px; padding: 0 16px; }
.bx-subnav a { display: flex; align-items: center; gap: 5px; padding: 10px 14px; font-size: 12.5px; font-weight: 600; color: var(--bx-text-muted); white-space: nowrap; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.bx-subnav a:hover, .bx-subnav a.is-active { color: var(--bx-blue-light); border-color: var(--bx-blue-light); }
@media (max-width: 639px) { .bx-subnav a { padding: 8px 10px; font-size: 11.5px; } }

/* MOBILE OVERLAY */
.bx-overlay { display: none; position: fixed; top: 0; left: 0; bottom: 0; width: 100%; max-width: 280px; z-index: 9999; flex-direction: column; background: var(--bx-bg-header); border-right: 1px solid var(--bx-border); box-shadow: 4px 0 24px rgba(0,0,0,.6); }
.bx-overlay.is-open { display: flex; }
.bx-overlay__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--bx-border); flex-shrink: 0; }
.bx-overlay__head img { height: 32px; width: auto; object-fit: contain; }
.bx-overlay__close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bx-bg-card); color: var(--bx-text); font-size: 16px; }
.bx-overlay__body { overflow-y: auto; flex: 1; padding: 8px 0; }
.bx-overlay__section { border-bottom: 1px solid var(--bx-border); padding: 6px 0; }
.bx-overlay__label { padding: 8px 16px 3px; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--bx-text-dim); }
.bx-overlay__section a { display: flex; align-items: center; gap: 9px; padding: 9px 16px; font-size: 13px; color: var(--bx-text-muted); transition: background .12s, color .12s; }
.bx-overlay__section a:hover { background: rgba(255,255,255,.05); color: var(--bx-text); }

/* ============================================================ HERO ============================================================ */
.bx-hero { position: relative; overflow: hidden; min-height: 340px; display: flex; align-items: center; background: linear-gradient(135deg, #060a14 0%, #0d1528 50%, #0a1220 100%); }
.bx-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; opacity: .45; }
.bx-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,10,20,.92) 0%, rgba(6,10,20,.65) 55%, rgba(6,10,20,.2) 100%); z-index: 1; }
.bx-hero__content { position: relative; z-index: 2; padding: 48px 0; max-width: 560px; }
.bx-hero__eyebrow { display: inline-flex; align-items: center; gap: 5px; background: rgba(26,86,219,.2); border: 1px solid rgba(26,86,219,.45); color: var(--bx-blue-light); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; }
.bx-hero h1 { font-size: clamp(28px, 4.5vw, 52px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 10px; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.bx-hero h1 em { color: var(--bx-gold); font-style: normal; }
.bx-hero__sub { font-size: 15px; color: rgba(255,255,255,.72); margin-bottom: 26px; line-height: 1.6; max-width: 440px; }
.bx-hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 639px) { .bx-hero { min-height: 280px; } .bx-hero__content { padding: 32px 0; } .bx-hero h1 { font-size: clamp(24px, 8vw, 36px); } .bx-hero__ctas .bx-btn { width: 100%; max-width: 340px; justify-content: center; } }

/* ============================================================ SECTIONS ============================================================ */
.bx-section { padding-block: 32px; }
.bx-section--raised { background: var(--bx-bg-card); }
.bx-section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.bx-section__title { font-size: clamp(16px, 2vw, 20px); font-weight: 800; color: var(--bx-text); }
.bx-section__more { font-size: 12.5px; color: var(--bx-blue-light); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.bx-section__more:hover { text-decoration: underline; }

/* BREADCRUMBS */
.bx-breadcrumbs { padding: 10px 0; font-size: 12px; color: var(--bx-text-muted); }
.bx-breadcrumbs ol { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.bx-breadcrumbs a { color: var(--bx-blue-light); }
.bx-breadcrumbs a:hover { text-decoration: underline; }
.bx-breadcrumbs li + li::before { content: '›'; margin-right: 4px; }

/* CONTENT */
.bx-content h2 { color: var(--bx-blue-light); margin-bottom: 10px; font-size: clamp(16px, 2vw, 20px); font-weight: 800; }
.bx-content p { margin-bottom: 12px; color: var(--bx-text-muted); font-size: 13.5px; line-height: 1.7; }
.bx-content ul { margin: 10px 0 14px; display: flex; flex-direction: column; gap: 6px; }
.bx-content ul li { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: var(--bx-text); }
.bx-content ul li::before { content: '✓'; color: var(--bx-blue-light); font-weight: 700; flex-shrink: 0; }

/* IMAGES */
article img, section.bx-content img { display: block; max-width: 720px; width: 100%; height: auto; max-height: 400px; object-fit: contain; margin: 16px auto; border-radius: var(--bx-radius); }
header img { max-height: 40px; width: auto; object-fit: contain; }

/* TABLE */
.bx-table-wrap { overflow-x: auto; margin: 14px 0; border-radius: var(--bx-radius); border: 1px solid var(--bx-border); }
.bx-table-wrap table { width: 100%; min-width: 460px; border-collapse: collapse; font-size: 13px; background: var(--bx-bg-card); }
.bx-table-wrap th { background: var(--bx-blue); color: #fff; padding: 9px 14px; font-weight: 700; text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; }
.bx-table-wrap td { padding: 9px 14px; border-bottom: 1px solid var(--bx-border); color: var(--bx-text-muted); }
.bx-table-wrap tr:last-child td { border-bottom: 0; }
.bx-table-wrap tr:nth-child(even) td { background: rgba(255,255,255,.02); }

/* QUOTE */
.bx-quote { border-left: 3px solid var(--bx-blue); background: rgba(26,86,219,.08); border-radius: 0 var(--bx-radius) var(--bx-radius) 0; padding: 14px 18px; margin: 16px 0; font-style: italic; font-size: 13.5px; color: var(--bx-text); line-height: 1.7; }
.bx-quote cite { display: block; font-style: normal; font-size: 11.5px; font-weight: 700; color: var(--bx-blue-light); margin-top: 7px; }

/* ============================================================ OFFERS LISTING ============================================================ */
.bx-offers { padding-block: 28px; }
.bx-offers__grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 1040px; margin-inline: auto; }
@media (min-width: 800px) { .bx-offers__grid { grid-template-columns: 1fr 1.06fr 1fr; align-items: start; } }

.bx-offers__card { position: relative; background: var(--bx-bg-card); border: 1px solid var(--bx-border); border-radius: var(--bx-radius-lg); overflow: hidden; cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.bx-offers__card:hover { border-color: var(--bx-border-blue); box-shadow: var(--bx-shadow-lg); }
.bx-offers__card * { pointer-events: none; }
.bx-offers__overlay-link { position: absolute; inset: 0; z-index: 1; font-size: 0; color: transparent; pointer-events: auto; cursor: pointer; }
.bx-offers__review-link { position: relative; z-index: 3; pointer-events: auto; cursor: pointer; }
.bx-offers__cta { position: relative; z-index: 3; pointer-events: auto; cursor: pointer; display: block; }

.bx-offers__card--top { border-color: var(--bx-border-blue); box-shadow: 0 0 0 1px rgba(26,86,219,.2), var(--bx-shadow-lg); }
.bx-offers__ribbon { display: block; background: var(--bx-blue); color: #fff; font-size: 10.5px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; text-align: center; padding: 5px 14px; position: relative; z-index: 3; }

.bx-offers__head { background: linear-gradient(135deg, #111827 0%, #1c2645 100%); padding: 16px; display: flex; align-items: center; justify-content: center; text-align: center; border-bottom: 1px solid var(--bx-border); }
.bx-offers__logo img { height: 34px; width: auto; max-width: 110px; object-fit: contain; margin: 0 auto 5px; }
.bx-offers__stars { display: flex; align-items: center; justify-content: center; gap: 2px; }
.bx-offers__stars em { font-size: 12px; color: var(--bx-gold); font-style: normal; }
.bx-offers__rating { font-size: 11px; font-weight: 700; color: var(--bx-text-muted); margin-left: 3px; }

.bx-offers__body { padding: 14px 16px; text-align: center; }
.bx-offers__tag { display: inline-flex; align-items: center; gap: 3px; background: rgba(26,86,219,.15); border: 1px solid var(--bx-border-blue); color: var(--bx-blue-light); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; margin-bottom: 8px; }
.bx-offers__tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-bottom: 8px; }
.bx-offers__bonus { font-size: 17px; font-weight: 900; color: var(--bx-text); margin-bottom: 9px; line-height: 1.3; }
.bx-offers__usp { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; align-items: center; }
.bx-offers__usp li { display: flex; align-items: flex-start; gap: 6px; font-size: 12px; color: var(--bx-text-muted); text-align: left; }
.bx-offers__usp li::before { content: '✓'; color: var(--bx-blue-light); font-weight: 700; flex-shrink: 0; }
.bx-offers__now { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--bx-text); background: rgba(255,255,255,.05); border: 1px solid var(--bx-border); border-radius: 6px; padding: 7px 10px; margin-bottom: 9px; }
.bx-offers__timer-wrap { background: rgba(0,0,0,.3); border: 1px solid var(--bx-border); border-radius: 6px; padding: 7px 10px; text-align: center; margin-bottom: 9px; }
.bx-offers__timer-label { font-size: 9px; color: var(--bx-text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.bx-offers__timer { font-size: 20px; font-weight: 900; color: var(--bx-blue-light); font-variant-numeric: tabular-nums; }
.bx-offers__cta-row { padding: 0 14px 11px; display: flex; flex-direction: column; gap: 7px; }
.bx-offers__cta { text-align: center; background: var(--bx-blue); color: #fff; font-weight: 900; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; padding: 12px 16px; border-radius: var(--bx-radius-sm); box-shadow: 0 4px 14px rgba(26,86,219,.35); transition: background .15s; }
.bx-offers__cta:hover { background: var(--bx-blue-dark); }
.bx-offers__review-link { display: block; text-align: center; font-size: 12px; color: var(--bx-blue-light); font-weight: 600; text-decoration: underline; padding: 2px 0; }
.bx-offers__urgency { padding: 0 14px 10px; font-size: 10px; color: var(--bx-text-dim); text-align: center; }

@media (max-width: 799px) { .bx-offers__card--top { order: -1; } }

/* ============================================================ SLOTS LISTING ============================================================ */
.bx-slots { padding-block: 28px; }
.bx-slots__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 500px)  { .bx-slots__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (min-width: 800px)  { .bx-slots__grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
@media (min-width: 1100px) { .bx-slots__grid { grid-template-columns: repeat(5, 1fr); gap: 12px; } }

.bx-slots__grid > div { position: relative; aspect-ratio: 3/4; border-radius: var(--bx-radius); overflow: hidden; border: 1px solid var(--bx-border); background: var(--bx-bg-card); transition: box-shadow .2s, border-color .2s; }
.bx-slots__grid > div:hover { box-shadow: 0 6px 20px rgba(26,86,219,.25); border-color: var(--bx-border-blue); }
.bx-slots__tile { position: absolute; inset: 0; display: block; width: 100%; height: 100%; border: 0; background: transparent; aspect-ratio: auto; border-radius: 0; }
.bx-slots__tile img { width: 100%; height: 100%; object-fit: contain; padding: 3px; background: var(--bx-bg-card); }
.bx-slots__top-row, .bx-slots__meta-row, .bx-slots__play-icon { pointer-events: none; }
.bx-slots__top-row { position: absolute; top: 5px; left: 5px; right: 5px; display: flex; align-items: flex-start; justify-content: space-between; z-index: 3; }
.bx-slots__hot { background: var(--bx-blue); color: #fff; font-size: 8.5px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; padding: 2px 5px; border-radius: 3px; }
.bx-slots__rtp { background: rgba(0,0,0,.7); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 3px; }
.bx-slots__meta-row { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; background: linear-gradient(transparent, rgba(0,0,0,.9)); padding: 16px 7px 7px; }
.bx-slots__name { font-size: 10.5px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 1px; }
.bx-slots__sub { font-size: 8.5px; color: var(--bx-gold); font-weight: 700; }
.bx-slots__play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 4; opacity: 0; background: rgba(26,86,219,.4); transition: opacity .2s; }
.bx-slots__play-icon span { width: 40px; height: 40px; border-radius: 50%; background: var(--bx-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 900; }
.bx-slots__grid > div:hover .bx-slots__play-icon { opacity: 1; }

/* ============================================================ PROMOS GRID ============================================================ */
.bx-promos__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px)  { .bx-promos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .bx-promos__grid { grid-template-columns: repeat(4, 1fr); } }
.bx-promo-card { position: relative; border-radius: var(--bx-radius-lg); overflow: hidden; cursor: pointer; background: var(--bx-bg-card); border: 1px solid var(--bx-border); transition: border-color .2s, box-shadow .2s; }
.bx-promo-card:hover { border-color: var(--bx-border-blue); box-shadow: var(--bx-shadow); }
.bx-promo-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.bx-promo-card__body { padding: 12px 14px; }
.bx-promo-card__title { font-size: 14px; font-weight: 800; color: var(--bx-text); margin-bottom: 4px; }
.bx-promo-card__desc { font-size: 12px; color: var(--bx-text-muted); line-height: 1.5; margin-bottom: 10px; }

/* ============================================================ AUTHOR ============================================================ */
.bx-author { background: var(--bx-bg-card); border: 1px solid var(--bx-border); border-radius: var(--bx-radius-lg); padding: 20px; display: flex; align-items: flex-start; gap: 16px; box-shadow: var(--bx-shadow); }
.bx-author__photo { flex-shrink: 0; width: 80px; height: 80px; }
.bx-author__photo img { width: 80px; height: 80px; min-width: 80px; min-height: 80px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--bx-blue); display: block; }
.bx-author__name { font-size: 15px; font-weight: 800; color: var(--bx-text); margin-bottom: 2px; }
.bx-author__role { font-size: 12px; color: var(--bx-blue-light); font-weight: 600; margin-bottom: 7px; }
.bx-author__bio { font-size: 12.5px; color: var(--bx-text-muted); line-height: 1.65; margin-bottom: 8px; }
.bx-author__link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #0077b5; }
.bx-author__link:hover { text-decoration: underline; }
.bx-author__badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: rgba(26,86,219,.12); border: 1px solid var(--bx-border-blue); color: var(--bx-blue-light); padding: 3px 9px; border-radius: 4px; margin-top: 5px; }
@media (max-width: 560px) { .bx-author { flex-direction: column; align-items: center; text-align: center; } }

/* ============================================================ REVIEWS ============================================================ */
.bx-reviews { padding-block: 28px; }
.bx-reviews__source { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.bx-reviews__source-logo { font-size: 13px; font-weight: 800; color: var(--bx-text-muted); }
.bx-reviews__grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px)  { .bx-reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .bx-reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.bx-review-card { background: var(--bx-bg-card); border: 1px solid var(--bx-border); border-radius: var(--bx-radius-lg); padding: 16px; }
.bx-review-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.bx-review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bx-bg-raised); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: var(--bx-blue-light); flex-shrink: 0; overflow: hidden; }
.bx-review-card__avatar img { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; }
.bx-review-card__name { font-size: 13px; font-weight: 700; color: var(--bx-text); }
.bx-review-card__date { font-size: 11px; color: var(--bx-text-dim); }
.bx-review-card__stars { display: flex; gap: 2px; margin-bottom: 8px; }
.bx-review-card__stars em { font-style: normal; color: var(--bx-gold); font-size: 13px; }
.bx-review-card__text { font-size: 12.5px; color: var(--bx-text-muted); line-height: 1.6; }
.bx-review-card__platform { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 700; color: var(--bx-text-dim); margin-top: 8px; }

/* ============================================================ FAQ ============================================================ */
.bx-faq { padding-block: 24px; }
.bx-faq__item { border: 1px solid var(--bx-border); border-radius: var(--bx-radius); margin-bottom: 7px; overflow: hidden; background: var(--bx-bg-card); }
.bx-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 15px; cursor: pointer; font-weight: 700; font-size: 13.5px; color: var(--bx-text); list-style: none; }
.bx-faq__q::-webkit-details-marker { display: none; }
.bx-faq__q::after { content: '+'; font-size: 18px; color: var(--bx-blue-light); flex-shrink: 0; transition: transform .2s; }
details[open] > .bx-faq__q::after { transform: rotate(45deg); }
.bx-faq__a { padding: 10px 15px 12px; font-size: 13px; color: var(--bx-text-muted); line-height: 1.7; border-top: 1px solid var(--bx-border); }

/* ============================================================ RELATED ============================================================ */
.bx-related { padding-block: 16px; }
.bx-related__title { font-size: 10px; font-weight: 700; color: var(--bx-text-dim); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.bx-related__list { display: flex; flex-wrap: wrap; gap: 6px; }
.bx-related__list a { display: inline-flex; align-items: center; gap: 4px; background: var(--bx-bg-card); border: 1px solid var(--bx-border); border-radius: 4px; padding: 5px 10px; font-size: 11.5px; color: var(--bx-blue-light); font-weight: 600; transition: background .15s, border-color .15s; pointer-events: auto; }
.bx-related__list a:hover { background: rgba(26,86,219,.1); border-color: var(--bx-border-blue); }

/* ============================================================ FAB ============================================================ */
.bx-fab { display: none; position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 95; padding: 16px 36px; background: var(--bx-blue); color: #fff; font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; border-radius: 32px; box-shadow: 0 8px 24px rgba(26,86,219,.5); transition: background .15s, transform .15s; align-items: center; justify-content: center; min-width: 240px; max-width: calc(100% - 28px); white-space: nowrap; text-align: center; }
.bx-fab:hover { background: var(--bx-blue-dark); transform: translateX(-50%) translateY(-2px); }
.bx-fab::after { content: "▶"; font-size: 11px; margin-left: 6px; }
@media (max-width: 979px) { .bx-fab { display: inline-flex; } }
@media (max-width: 480px) { .bx-fab { padding: 14px 28px; font-size: 13px; min-width: 200px; } }
body.is-cookies-shown .bx-fab { bottom: 110px; }

/* ============================================================ FOOTER ============================================================ */
.bx-footer { background: #060810; border-top: 1px solid var(--bx-border); padding-block-start: 36px; font-size: 13px; color: var(--bx-text-muted); }
.bx-footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; padding-bottom: 24px; border-bottom: 1px solid var(--bx-border); }
.bx-footer__brand { grid-column: 1 / -1; }
.bx-footer__brand img { height: 36px; width: auto; margin-bottom: 10px; display: block; }
.bx-footer__brand p { font-size: 11.5px; color: var(--bx-text-dim); max-width: 480px; line-height: 1.65; margin-bottom: 10px; }
.bx-footer__social { display: flex; gap: 8px; flex-wrap: wrap; }
.bx-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--bx-bg-card); border: 1px solid var(--bx-border); border-radius: 6px; color: var(--bx-text-muted); font-size: 15px; transition: background .15s, color .15s; }
.bx-footer__social a:hover { background: rgba(26,86,219,.15); color: var(--bx-blue-light); border-color: var(--bx-border-blue); }
.bx-footer__col h4 { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--bx-text); margin-bottom: 10px; }
.bx-footer__col ul li { margin-bottom: 6px; }
.bx-footer__col a { font-size: 12.5px; color: var(--bx-text-dim); transition: color .15s; }
.bx-footer__col a:hover { color: var(--bx-blue-light); }
@media (min-width: 600px) { .bx-footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) { .bx-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 22px; } .bx-footer__brand { grid-column: auto; } }
@media (max-width: 599px) { .bx-footer { padding-block-start: 28px; font-size: 12px; } .bx-footer__col h4 { font-size: 10px; margin-bottom: 6px; } .bx-footer__col ul li { margin-bottom: 4px; } .bx-footer__col a { font-size: 12px; } .bx-footer__brand img { max-height: 30px; margin-bottom: 8px; } .bx-footer__brand p { font-size: 11px; } }

.bx-footer__license { padding-block: 16px; border-bottom: 1px solid var(--bx-border); font-size: 11px; color: var(--bx-text-dim); line-height: 1.65; }
.bx-footer__license strong { color: var(--bx-text-muted); }

.bx-footer__trust { padding-block: 14px; border-bottom: 1px solid var(--bx-border); }
.bx-footer__trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.bx-footer__trust-item { display: inline-flex; align-items: center; gap: 5px; background: var(--bx-bg-card); border: 1px solid var(--bx-border); border-radius: 5px; padding: 5px 10px; font-size: 11px; font-weight: 600; color: var(--bx-text-muted); }

.bx-footer__rg { padding-block: 14px; border-bottom: 1px solid var(--bx-border); }
.bx-footer__rg-inner { display: flex; align-items: flex-start; gap: 12px; }
.bx-footer__rg-badge { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: #e63024; border: 2px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; color: #fff; }
.bx-footer__rg p { font-size: 11px; color: var(--bx-text-dim); line-height: 1.6; }
.bx-footer__rg a { color: var(--bx-blue-light); text-decoration: underline; }

.bx-footer__bottom { padding-block: 12px 16px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.bx-footer__copy { font-size: 11px; color: var(--bx-text-dim); }
.bx-footer__legal { display: flex; flex-wrap: wrap; gap: 10px; }
.bx-footer__legal a { font-size: 11px; color: var(--bx-text-dim); transition: color .15s; }
.bx-footer__legal a:hover { color: var(--bx-blue-light); }

/* ============================================================ SITEMAP ============================================================ */
.bx-sitemap-grid { display: grid; grid-template-columns: 1fr; gap: 7px; margin-bottom: 20px; }
@media (min-width: 500px)  { .bx-sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 800px)  { .bx-sitemap-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .bx-sitemap-grid { grid-template-columns: repeat(4, 1fr); } }
.bx-sitemap-card { background: var(--bx-bg-card); border: 1px solid var(--bx-border); border-radius: var(--bx-radius); padding: 11px 14px; transition: border-color .15s; }
.bx-sitemap-card:hover { border-color: var(--bx-border-blue); }
.bx-sitemap-card a { font-weight: 700; font-size: 12.5px; color: var(--bx-blue-light); display: block; margin-bottom: 3px; pointer-events: auto; }
.bx-sitemap-card a:hover { text-decoration: underline; }
.bx-sitemap-card p { font-size: 11px; color: var(--bx-text-muted); }
.bx-sitemap-section { font-size: 9.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--bx-blue-light); padding: 8px 0 5px; border-bottom: 2px solid var(--bx-border-blue); margin-bottom: 10px; }

/* ============================================================ MOBILE ============================================================ */
@media (max-width: 759px) {
  .bx-container { padding-inline: 14px; }
  .bx-hero { min-height: 260px; }
  .bx-hero__content { padding: 28px 0; }
  .bx-offers__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .bx-slots__grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .bx-author { flex-direction: column; align-items: center; text-align: center; padding: 16px; }
  .bx-section__head { flex-direction: column; align-items: flex-start; gap: 5px; }
  .bx-reviews__grid { grid-template-columns: 1fr; }
  .bx-promos__grid { grid-template-columns: 1fr; }
  .bx-faq__q { font-size: 13px; padding: 11px 13px; }
  .bx-footer__top { grid-template-columns: 1fr 1fr; }
  .bx-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 380px) {
  .bx-slots__grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .bx-footer__top { grid-template-columns: 1fr 1fr; }
}

/* Hero promo text (not h1) */
.bx-hero__promo { font-size: clamp(28px, 4.5vw, 52px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 10px; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.bx-hero__promo em { color: var(--bx-gold); font-style: normal; }
@media (max-width: 639px) { .bx-hero__promo { font-size: clamp(24px, 8vw, 36px); } }

/* ============================================================ NEW HEADER LAYOUT ============================================================ */

/* TOP UTILITY BAR */
.bx-topbar { background: #111827; border-bottom: 1px solid rgba(255,255,255,.05); }
.bx-topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; gap: 12px; min-width: 0; }
.bx-topbar__nav { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; overflow: hidden; min-width: 0; }
.bx-topbar__nav a { font-size: 11px; color: #94a3b8; padding: 3px 9px; white-space: nowrap; border-right: 1px solid rgba(255,255,255,.07); transition: color .12s; }
.bx-topbar__nav a:first-child { padding-left: 0; }
.bx-topbar__nav a:hover { color: #f1f5f9; }
.bx-topbar__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.bx-topbar__time { font-size: 11px; color: #94a3b8; white-space: nowrap; }
@media (max-width: 1023px) { .bx-topbar { display: none; } }

/* MAIN HEADER ROW */
.bx-header__main { background: #fff; border-bottom: 1px solid #e5e7eb; }
.bx-header__main .bx-header__inner { display: flex; align-items: center; padding: 12px 0; gap: 12px; min-width: 0; }
.bx-header__spacer { flex: 1; }
.bx-btn--login { background: transparent; color: #1a56db; font-weight: 700; font-size: 15px; padding: 8px 20px; border: none; letter-spacing: 0; text-transform: none; }
.bx-btn--login:hover { color: #1447b8; }
.bx-btn--join { background: #fff; color: #111; font-weight: 700; font-size: 14px; padding: 10px 32px; border: 2px solid #111; border-radius: 4px; text-transform: none; letter-spacing: 0; }
.bx-btn--join:hover { background: #111; color: #fff; }

/* BLUE MAIN NAV */
.bx-mainnav { background: #1a56db; }
.bx-mainnav__inner { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; min-width: max-content; }
.bx-mainnav::-webkit-scrollbar { display: none; }
.bx-mainnav a { display: flex; align-items: center; padding: 12px 18px; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.85); white-space: nowrap; text-transform: uppercase; letter-spacing: .04em; border-bottom: 3px solid transparent; transition: background .15s, border-color .15s, color .15s; }
.bx-mainnav a:hover { background: rgba(0,0,0,.15); color: #fff; }
.bx-mainnav a.is-active { background: rgba(0,0,0,.2); color: #fff; border-bottom-color: var(--bx-gold); }
@media (max-width: 1023px) { .bx-mainnav a { padding: 10px 14px; font-size: 11.5px; } }

/* Override old header bg since main row is now white */
.bx-header { background: transparent; border-bottom: none; position: sticky; top: 0; z-index: 400; }
.bx-header__logo img { height: 44px; }
@media (min-width: 760px) { .bx-header__logo img { height: 52px; max-width: none; } }

/* Burger on mobile */
@media (max-width: 1023px) { .bx-header__burger { display: flex; } }
@media (min-width: 1024px) { .bx-header__burger { display: none; } }
.bx-header__burger span { background: #111; }

/* === HEADER OVERRIDES — blue main row === */
.bx-header__main { background: #1a56db !important; border-bottom: none !important; }
.bx-header__main .bx-header__inner { padding: 10px 0; }
.bx-header__logo img { height: 52px !important; filter: none; }

.bx-btn--login { background: transparent !important; color: #fff !important; font-weight: 700 !important; font-size: 15px !important; padding: 8px 20px !important; border: none !important; text-transform: none !important; letter-spacing: 0 !important; }
.bx-btn--login:hover { color: rgba(255,255,255,.75) !important; }
.bx-btn--join { background: #fff !important; color: #1a56db !important; font-weight: 700 !important; font-size: 14px !important; padding: 10px 28px !important; border: 2px solid #fff !important; border-radius: 4px !important; text-transform: none !important; letter-spacing: 0 !important; }
.bx-btn--join:hover { background: rgba(255,255,255,.9) !important; }

.bx-header__burger span { background: #fff !important; }
