/* app-betx.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:           #0c0d11;
  --bx-bg-card:      #181920;
  --bx-bg-header:    #111216;
  --bx-bg-sidebar:   #14151a;
  --bx-bg-footer:    #0a0b0e;
  --bx-orange:       #f5a00a;
  --bx-orange-dark:  #d48a08;
  --bx-orange-muted: rgba(245,160,10,.12);
  --bx-red:          #e03028;
  --bx-green:        #28c76f;
  --bx-text:         #ffffff;
  --bx-text-muted:   rgba(255,255,255,.58);
  --bx-text-dim:     rgba(255,255,255,.3);
  --bx-border:       rgba(255,255,255,.07);
  --bx-border-orange:rgba(245,160,10,.38);
  --bx-radius:       6px;
  --bx-radius-sm:    4px;
  --bx-radius-lg:    10px;
  --bx-shadow:       0 4px 18px rgba(0,0,0,.55);
  --bx-container:    1300px;
  --bx-sidebar-w:    190px;
}

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

/* === TYPOGRAPHY === */
h1 { font-size: clamp(22px, 4vw, 42px); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(16px, 2.5vw, 24px); font-weight: 800; line-height: 1.2; }

/* === BUTTONS === */
.bx-btn { display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 9px 20px; border-radius: var(--bx-radius); font-weight: 700; font-size: 13px; letter-spacing: .03em; transition: background .15s, box-shadow .15s; white-space: nowrap; max-width: 100%; }
.bx-btn--register { background: var(--bx-orange); color: #000; box-shadow: 0 3px 10px rgba(245,160,10,.35); }
.bx-btn--register:hover { background: var(--bx-orange-dark); }
.bx-btn--login { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; }
.bx-btn--login:hover { background: rgba(255,255,255,.16); }
.bx-btn--lg { padding: 13px 30px; font-size: 15px; }
.bx-btn--outline { background: transparent; border: 1.5px solid var(--bx-orange); color: var(--bx-orange); }
.bx-btn--outline:hover { background: var(--bx-orange); color: #000; }

/* ============================================================ HEADER ============================================================ */
.bx-header { background: var(--bx-bg-header); position: fixed; top: 0; left: 0; right: 0; z-index: 200; border-bottom: 1px solid var(--bx-border); box-shadow: 0 2px 12px rgba(0,0,0,.4); }
/* Offset body content below fixed header */
body { padding-top: 54px; }
.bx-header__inner { display: flex; align-items: center; gap: 0; height: 50px; padding: 0 20px; }
@media (min-width: 1200px) { .bx-header__inner { padding: 0 36px; } }

.bx-header__logo { flex-shrink: 0; display: flex; align-items: center; margin-right: 16px; }
.bx-header__logo img { height: 26px; width: auto; object-fit: contain; }

.bx-header__nav { flex: 1; display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; height: 100%; min-width: 0; }
.bx-header__nav::-webkit-scrollbar { display: none; }
.bx-header__nav a { display: flex; align-items: center; padding: 0 14px; font-size: 12px; font-weight: 700; color: var(--bx-text-muted); letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; height: 100%; }
.bx-header__nav a:hover { color: #fff; }
.bx-header__nav a.is-active { color: var(--bx-orange); border-color: var(--bx-orange); }
.bx-header__nav a.is-live { color: var(--bx-red); }

.bx-header__actions { display: flex; align-items: center; gap: 7px; flex-shrink: 0; margin-left: 12px; }
.bx-header__actions .bx-btn { padding: 7px 13px; font-size: 12px; }
.bx-header__burger { flex-shrink: 0; width: 32px; height: 32px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px; border-radius: 5px; transition: background .15s; }
.bx-header__burger:hover { background: rgba(255,255,255,.08); }
.bx-header__burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; }
@media (min-width: 1024px) { .bx-header__burger { display: none; } }
@media (max-width: 479px) { .bx-header__actions .bx-btn--login { display: none; } }

/* ============================================================ MOBILE DRAWER ============================================================ */
.bx-overlay { display: none; position: fixed; top: 0; left: 0; bottom: 0; width: 100%; max-width: 300px; z-index: 500; flex-direction: column; background: var(--bx-bg-sidebar); border-right: 1px solid var(--bx-border); box-shadow: 4px 0 24px rgba(0,0,0,.7); }
.bx-overlay.is-open { display: flex; }
.bx-overlay__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--bx-border); flex-shrink: 0; }
.bx-overlay__head img { height: 24px; width: auto; }
.bx-overlay__close { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 16px; flex-shrink: 0; }
.bx-overlay__ctas { padding: 12px 16px; display: flex; gap: 7px; border-bottom: 1px solid var(--bx-border); flex-shrink: 0; }
.bx-overlay__ctas .bx-btn { flex: 1; justify-content: center; }
.bx-overlay__body { overflow-y: auto; flex: 1; padding: 8px 0 60px; }
.bx-overlay__label { padding: 10px 16px 4px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bx-text-dim); }
.bx-overlay__section a { display: flex; align-items: center; gap: 8px; padding: 9px 16px; font-size: 13.5px; color: rgba(255,255,255,.78); font-weight: 500; border-left: 2px solid transparent; transition: background .12s, border-color .12s; }
.bx-overlay__section a:hover { background: rgba(255,255,255,.04); border-left-color: var(--bx-orange); color: #fff; }

/* ============================================================ PAGE LAYOUT ============================================================ */
.bx-page-wrapper { display: block; min-height: 100vh; background: var(--bx-bg); }
.bx-page-content { min-width: 0; overflow: hidden; }
@media (min-width: 1024px) { .bx-page-content { margin-left: var(--bx-sidebar-w); } .bx-footer { margin-left: var(--bx-sidebar-w); } }

/* ============================================================ SIDEBAR ============================================================ */
.bx-sidebar { width: var(--bx-sidebar-w); background: var(--bx-bg-sidebar); position: fixed; top: 50px; left: 0; height: calc(100vh - 50px); z-index: 190; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.08) transparent; border-right: 1px solid var(--bx-border); display: flex; flex-direction: column; }
.bx-sidebar::-webkit-scrollbar { width: 3px; }
.bx-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 2px; }
.bx-sidebar__section-title { padding: 12px 14px 5px; font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bx-text-dim); }
.bx-sidebar__link { display: flex; align-items: center; gap: 9px; padding: 8px 14px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.68); border-left: 2px solid transparent; transition: background .12s, color .12s, border-color .12s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bx-sidebar__link:hover, .bx-sidebar__link.is-active { background: rgba(245,160,10,.08); color: #fff; border-left-color: var(--bx-orange); }
.bx-sidebar__icon { font-size: 14px; flex-shrink: 0; width: 18px; text-align: center; }
.bx-sidebar__divider { height: 1px; background: var(--bx-border); margin: 6px 14px; }
@media (max-width: 1023px) { .bx-sidebar { display: none; } }

/* ============================================================ HERO BANNER ============================================================ */
.bx-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #0f1018 0%, #1a1b25 50%, #0a0c14 100%); border-bottom: 1px solid var(--bx-border); }
.bx-hero__inner { display: flex; align-items: center; justify-content: space-between; padding: 28px 20px; gap: 20px; min-height: 200px; }
@media (min-width: 1200px) { .bx-hero__inner { padding: 28px 36px; } }
.bx-hero__text { max-width: 480px; }
.bx-hero__tag { display: inline-flex; align-items: center; gap: 5px; background: var(--bx-red); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; margin-bottom: 10px; }
.bx-hero__text h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 900; color: var(--bx-orange); line-height: 1; margin-bottom: 6px; }
.bx-hero__text h2 { font-size: clamp(14px, 2vw, 18px); font-weight: 700; color: #fff; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.bx-hero__text p { color: var(--bx-text-muted); font-size: 14px; margin-bottom: 18px; }
.bx-hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.bx-hero__img { flex-shrink: 0; max-width: 300px; }
.bx-hero__img img { max-height: 180px; width: auto; }
@media (max-width: 639px) { .bx-hero__inner { flex-direction: column; padding: 24px 20px; min-height: auto; } .bx-hero__img { display: none; } .bx-hero__ctas .bx-btn { width: 100%; } }

/* ============================================================ SECTION WRAPPERS ============================================================ */
.bx-section { padding-block: 28px; background: var(--bx-bg); }
.bx-section--card { background: var(--bx-bg-card); }
.bx-section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 10px; flex-wrap: wrap; }
.bx-section__title { font-size: clamp(14px, 2vw, 18px); font-weight: 800; color: #fff; display: flex; align-items: center; gap: 7px; }
.bx-section__title::before { content: ''; width: 3px; height: 16px; background: var(--bx-orange); border-radius: 2px; flex-shrink: 0; }
.bx-section__more { font-size: 12px; color: var(--bx-orange); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.bx-section__more:hover { text-decoration: underline; }
.bx-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--bx-orange); color: #000; font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 3px; }

/* Breadcrumbs */
.bx-breadcrumbs { padding: 10px 0 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-orange); }
.bx-breadcrumbs a:hover { text-decoration: underline; }
.bx-breadcrumbs li + li::before { content: '›'; margin-right: 4px; }

/* Lead */
.bx-lead { font-size: 14px; color: var(--bx-text-muted); line-height: 1.7; max-width: 820px; padding-block: 12px; }

/* Content */
.bx-content { padding-block: 26px; }
.bx-content h2 { color: var(--bx-orange); margin-bottom: 10px; }
.bx-content p { margin-bottom: 10px; color: var(--bx-text-muted); font-size: 13.5px; }
.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-orange); 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: 28px; width: auto; object-fit: contain; }
.bx-author__photo img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }

/* 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: 480px; border-collapse: collapse; font-size: 13px; background: var(--bx-bg-card); }
.bx-table-wrap th { background: rgba(245,160,10,.15); color: var(--bx-orange); padding: 9px 12px; font-weight: 700; text-align: left; font-size: 11.5px; border-bottom: 1px solid var(--bx-border); }
.bx-table-wrap td { padding: 8px 12px; border-bottom: 1px solid var(--bx-border); color: var(--bx-text-muted); }
.bx-table-wrap tr:last-child td { border-bottom: 0; }

/* Quote */
.bx-quote { border-left: 3px solid var(--bx-orange); background: rgba(245,160,10,.07); border-radius: 0 var(--bx-radius) var(--bx-radius) 0; padding: 14px 18px; margin: 16px 0; font-style: italic; font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.7; }
.bx-quote cite { display: block; font-style: normal; font-size: 12px; font-weight: 700; color: var(--bx-orange); margin-top: 6px; }

/* ============================================================ PROVIDERS STRIP ============================================================ */
.bx-providers { padding: 20px 0; background: var(--bx-bg-card); border-top: 1px solid var(--bx-border); border-bottom: 1px solid var(--bx-border); }
.bx-providers__track { display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 0 20px; }
.bx-providers__track::-webkit-scrollbar { display: none; }
.bx-provider-tile { flex-shrink: 0; background: rgba(255,255,255,.06); border: 1px solid var(--bx-border); border-radius: var(--bx-radius); padding: 8px 18px; font-size: 13px; font-weight: 800; color: rgba(255,255,255,.75); letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; transition: background .12s, color .12s; }
.bx-provider-tile:hover { background: rgba(245,160,10,.15); color: var(--bx-orange); border-color: var(--bx-border-orange); }
@media (min-width: 1200px) { .bx-providers__track { padding: 0 36px; } }

/* ============================================================ /* OFFERS LISTING */ ============================================================ */
.bx-offers { padding-block: 28px; }
.bx-offers__grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 10px; }
@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; box-shadow: var(--bx-shadow); transition: box-shadow .2s, border-color .2s; }
.bx-offers__card:hover { border-color: var(--bx-border-orange); box-shadow: 0 6px 24px rgba(245,160,10,.15); }
.bx-offers__overlay-link { position: absolute; inset: 0; z-index: 1; font-size: 0; color: transparent; }
.bx-offers__card > *:not(.bx-offers__overlay-link) { position: relative; z-index: 2; }
.bx-offers__card * { pointer-events: none; }
.bx-offers__card .bx-offers__overlay-link, .bx-offers__card .bx-offers__review-link { pointer-events: auto; cursor: pointer; }
.bx-offers__overlay-link { z-index: 1; }
.bx-offers__review-link { position: relative; z-index: 3; }

.bx-offers__head { background: linear-gradient(135deg, #1a1b25 0%, #22232e 100%); border-bottom: 1px solid var(--bx-border); padding: 14px 16px; display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.bx-offers__logo img { height: 26px; width: auto; max-width: 80px; object-fit: contain; }
.bx-offers__brand { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.bx-offers__stars { display: flex; align-items: center; justify-content: center; gap: 2px; margin-top: 2px; }
.bx-offers__stars em { font-size: 11px; color: var(--bx-orange); 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 0; }
.bx-offers__tag { display: inline-flex; align-items: center; gap: 3px; background: var(--bx-orange-muted); border: 1px solid var(--bx-border-orange); color: var(--bx-orange); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; margin-bottom: 8px; }
.bx-offers__bonus { font-size: 17px; font-weight: 900; color: #fff; margin-bottom: 9px; line-height: 1.3; }
.bx-offers__usp { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.bx-offers__usp li { display: flex; align-items: flex-start; gap: 6px; font-size: 12.5px; color: var(--bx-text-muted); }
.bx-offers__usp li::before { content: '✓'; color: var(--bx-green); font-weight: 700; flex-shrink: 0; }
.bx-offers__social { display: flex; align-items: center; gap: 6px; background: rgba(245,160,10,.1); border: 1px solid var(--bx-border-orange); border-radius: 5px; padding: 6px 10px; font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.bx-offers__timer-wrap { background: rgba(0,0,0,.3); border: 1px solid var(--bx-border); border-radius: 5px; padding: 7px 10px; text-align: center; margin-bottom: 9px; }
.bx-offers__timer-label { font-size: 9.5px; 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-orange); font-variant-numeric: tabular-nums; }
.bx-offers__cta-row { padding: 0 16px 12px; display: flex; flex-direction: column; gap: 6px; }
.bx-offers__cta { display: block; text-align: center; background: var(--bx-orange); color: #000; font-weight: 900; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; padding: 11px 16px; border-radius: var(--bx-radius); box-shadow: 0 3px 12px rgba(245,160,10,.3); }
.bx-offers__review-link { display: block; text-align: center; font-size: 12px; color: var(--bx-orange); font-weight: 600; text-decoration: underline; padding: 2px 0; }
.bx-offers__urgency { padding: 0 16px 11px; font-size: 10.5px; color: var(--bx-text-dim); text-align: center; }
.bx-offers__aggregate { text-align: center; font-size: 12px; color: var(--bx-text-muted); margin-top: 6px; }

.bx-offers__card--top { border-color: var(--bx-border-orange); box-shadow: 0 6px 28px rgba(245,160,10,.18); }
.bx-offers__card--top .bx-offers__head { background: linear-gradient(135deg, #1e1b10 0%, #2a2214 100%); border-bottom-color: var(--bx-border-orange); }
.bx-offers__ribbon { display: block; background: var(--bx-orange); color: #000; font-size: 10.5px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; text-align: center; padding: 5px 12px; pointer-events: none; position: relative; z-index: 3; }
.bx-offers__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.bx-offers__card--top .bx-offers__cta { background: var(--bx-orange); }
@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(6, 1fr); gap: 10px; } }

.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 4px 20px rgba(245,160,10,.2); border-color: var(--bx-border-orange); }
.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: cover; }
.bx-slots__top-row, .bx-slots__meta-row, .bx-slots__play-icon { pointer-events: none; }
.bx-slots__top-row { position: absolute; top: 6px; left: 6px; right: 6px; display: flex; align-items: flex-start; justify-content: space-between; z-index: 3; }
.bx-slots__hot { background: var(--bx-red); 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,.92)); 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: 2px; }
.bx-slots__jackpot { font-size: 9px; font-weight: 800; color: var(--bx-orange); }
.bx-slots__play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 4; opacity: 0; background: rgba(245,160,10,.4); transition: opacity .2s; }
.bx-slots__play-icon span { width: 40px; height: 40px; border-radius: 50%; background: var(--bx-orange); color: #000; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; }
.bx-slots__grid > div:hover .bx-slots__play-icon { opacity: 1; }
.bx-slots__more { text-align: center; margin-top: 18px; }

/* ============================================================ 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; max-width: 100%; }
.bx-author__photo { flex-shrink: 0; width: 84px; height: 84px; }
.bx-author__photo img { width: 84px; height: 84px; min-width: 84px; min-height: 84px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--bx-orange); display: block; }
.bx-author__name { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.bx-author__role { font-size: 12px; color: var(--bx-orange); font-weight: 600; margin-bottom: 7px; }
.bx-author__bio { font-size: 13px; color: var(--bx-text-muted); line-height: 1.6; margin-bottom: 8px; }
.bx-author__linkedin { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #0077b5; }
.bx-author__linkedin:hover { text-decoration: underline; }
.bx-author__badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--bx-orange-muted); border: 1px solid var(--bx-border-orange); color: var(--bx-orange); padding: 3px 9px; border-radius: 3px; margin-top: 5px; }
@media (max-width: 560px) { .bx-author { flex-direction: column; align-items: center; text-align: center; } }

/* ============================================================ FAQ ============================================================ */
.bx-faq { padding-block: 28px; }
.bx-faq__list { max-width: 100%; }
.bx-faq__item { border: 1px solid var(--bx-border); border-radius: var(--bx-radius); margin-bottom: 7px; overflow: hidden; }
.bx-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; cursor: pointer; font-weight: 700; font-size: 13.5px; color: #fff; background: var(--bx-bg-card); user-select: none; list-style: none; }
.bx-faq__q::-webkit-details-marker { display: none; }
.bx-faq__q::after { content: '+'; font-size: 18px; color: var(--bx-orange); flex-shrink: 0; line-height: 1; transition: transform .2s; }
details[open] > .bx-faq__q::after { transform: rotate(45deg); }
.bx-faq__a { padding: 10px 14px 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: 20px; }
.bx-related__title { font-size: 11px; 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: 50px; padding: 5px 11px; font-size: 12px; color: var(--bx-orange); font-weight: 600; transition: background .15s, border-color .15s; pointer-events: auto; }
.bx-related__list a:hover { background: var(--bx-orange-muted); border-color: var(--bx-border-orange); }

/* ============================================================ FAB ============================================================ */
.bx-fab { display: none; position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 95; padding: 14px 34px; background: var(--bx-orange); color: #000; font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; border-radius: var(--bx-radius); box-shadow: 0 8px 24px rgba(245,160,10,.45); transition: background .15s; align-items: center; justify-content: center; min-width: 220px; max-width: calc(100% - 28px); white-space: nowrap; text-align: center; }
.bx-fab::after { content: ' ▶'; font-size: 10px; }
.bx-fab:hover { background: var(--bx-orange-dark); }
@media (max-width: 979px) { .bx-fab { display: inline-flex; } }
@media (max-width: 480px) { .bx-fab { padding: 13px 26px; font-size: 13px; min-width: 190px; } }

/* ============================================================ FOOTER ============================================================ */
.bx-footer { background: var(--bx-bg-footer); color: var(--bx-text-muted); padding-block-start: 40px; font-size: 13px; border-top: 1px solid var(--bx-border); }
.bx-footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; padding-bottom: 28px; border-bottom: 1px solid var(--bx-border); }
.bx-footer__brand { grid-column: 1 / -1; }
.bx-footer__brand img { height: 24px; width: auto; margin-bottom: 10px; display: block; }
.bx-footer__brand p { font-size: 11.5px; color: rgba(255,255,255,.38); max-width: 340px; line-height: 1.6; margin-bottom: 10px; }
.bx-footer__socials { display: flex; gap: 8px; flex-wrap: wrap; }
.bx-footer__social { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid var(--bx-border); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.bx-footer__social:hover { background: var(--bx-orange); border-color: var(--bx-orange); }
.bx-footer__social svg { width: 14px; height: 14px; fill: #fff; }
.bx-footer__col h4 { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 9px; }
.bx-footer__col ul li { margin-bottom: 5px; }
.bx-footer__col a { font-size: 12px; color: rgba(255,255,255,.42); transition: color .15s; }
.bx-footer__col a:hover { color: var(--bx-orange); }
@media (min-width: 600px) { .bx-footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) { .bx-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 20px; } .bx-footer__brand { grid-column: auto; } }

.bx-footer__pay { padding-block: 18px; border-bottom: 1px solid var(--bx-border); }
.bx-footer__pay h4 { font-size: 9.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 10px; }
.bx-footer__pay-list { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.bx-footer__pay-item { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.07); border: 1px solid var(--bx-border); border-radius: 5px; padding: 5px 10px; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.75); }

.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: 7px; }
.bx-footer__trust-item { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,.05); border: 1px solid var(--bx-border); border-radius: 4px; padding: 4px 8px; font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.55); }

.bx-footer__rg { padding-block: 14px; border-bottom: 1px solid var(--bx-border); }
.bx-footer__rg-inner { display: flex; align-items: flex-start; gap: 11px; }
.bx-footer__rg-badge { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--bx-red); border: 2px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; color: #fff; }
.bx-footer__rg p { font-size: 11px; color: rgba(255,255,255,.38); line-height: 1.6; }
.bx-footer__rg a { color: rgba(255,255,255,.6); 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: rgba(255,255,255,.28); }
.bx-footer__legal { display: flex; flex-wrap: wrap; gap: 10px; }
.bx-footer__legal a { font-size: 11px; color: rgba(255,255,255,.32); transition: color .15s; }
.bx-footer__legal a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 599px) {
  .bx-footer { padding-block-start: 24px; }
  .bx-footer__col h4 { font-size: 9.5px; }
  .bx-footer__col a { font-size: 11.5px; }
}

/* ============================================================ SITEMAP ============================================================ */
.bx-sitemap-grid { display: grid; grid-template-columns: 1fr; gap: 8px; 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 13px; transition: box-shadow .15s, border-color .15s; }
.bx-sitemap-card:hover { border-color: var(--bx-border-orange); }
.bx-sitemap-card a { font-weight: 700; font-size: 12.5px; color: var(--bx-orange); 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-orange); padding: 8px 0 5px; border-bottom: 1px solid var(--bx-border-orange); margin-bottom: 10px; }

/* ============================================================ MOBILE PADDING GUARD ============================================================ */
@media (max-width: 759px) {
  .bx-container { padding-inline: 20px; }
  .bx-author { padding: 16px; }
}
