/* et-betx.com — style.css — prefix: etx */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; } body { max-width: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--etx-bg); color: var(--etx-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 {
  --etx-bg:           #0d1117;
  --etx-bg-card:      #161d2b;
  --etx-bg-raised:    #1e2b3c;
  --etx-bg-sidebar:   #111827;
  --etx-yellow:       #ffd700;
  --etx-yellow-dark:  #e6c200;
  --etx-yellow-muted: rgba(255,215,0,.12);
  --etx-text:         #ffffff;
  --etx-text-muted:   #ffffff;
  --etx-text-dim:     #cccccc;
  --etx-border:       rgba(255,255,255,.08);
  --etx-border-y:     rgba(255,215,0,.3);
  --etx-radius:       10px;
  --etx-radius-sm:    6px;
  --etx-radius-lg:    14px;
  --etx-shadow:       0 2px 12px rgba(0,0,0,.4);
  --etx-shadow-lg:    0 8px 32px rgba(0,0,0,.5);
  --etx-sidebar-w:    200px;
  --etx-container:    1280px;
}

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

/* === BUTTONS === */
.etx-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 22px; border-radius: 6px; font-weight: 700; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase; transition: background .15s, box-shadow .15s, transform .1s; white-space: nowrap; max-width: 100%; }
.etx-btn--primary { background: var(--etx-yellow); color: #000; box-shadow: 0 4px 14px rgba(255,215,0,.4); }
.etx-btn--primary:hover { background: var(--etx-yellow-dark); transform: translateY(-1px); }
.etx-btn--outline { background: transparent; border: 2px solid var(--etx-yellow); color: var(--etx-yellow); }
.etx-btn--outline:hover { background: var(--etx-yellow); color: #000; }
.etx-btn--ghost { background: rgba(255,255,255,.07); color: var(--etx-text); border: 1px solid var(--etx-border); }
.etx-btn--ghost:hover { background: rgba(255,255,255,.12); }
.etx-btn--lg { padding: 13px 30px; font-size: 15px; }
.etx-btn--sm { padding: 6px 14px; font-size: 12px; }

/* ============================================================ LAYOUT ============================================================ */
.etx-layout { display: flex; min-height: 100vh; }
.etx-main { flex: 1; min-width: 0; }
@media (min-width: 1024px) { .etx-main { margin-left: var(--etx-sidebar-w); } }

/* ============================================================ HEADER ============================================================ */
.etx-header { position: sticky; top: 0; z-index: 400; background: var(--etx-bg-sidebar); border-bottom: 1px solid var(--etx-border); height: 66px; display: flex; align-items: center; padding: 0 20px; gap: 12px; }
.etx-header__logo { flex-shrink: 0; }
.etx-header__logo img { height: 54px; width: auto; object-fit: contain; display: block; }
.etx-header__spacer { flex: 1; }
.etx-header__actions { display: flex; align-items: center; gap: 8px; }
.etx-header__burger { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 6px; flex-shrink: 0; }
.etx-header__burger span { display: block; width: 20px; height: 2px; background: var(--etx-text); border-radius: 2px; }
@media (max-width: 1023px) { .etx-header__burger { display: flex; } }

/* ============================================================ SIDEBAR ============================================================ */
.etx-sidebar {
  width: var(--etx-sidebar-w);
  background: var(--etx-bg-sidebar);
  position: fixed;
  top: 54px; left: 0;
  height: calc(100vh - 54px);
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--etx-border) transparent;
  border-right: 1px solid var(--etx-border);
  display: flex;
  flex-direction: column;
}
.etx-sidebar::-webkit-scrollbar { width: 4px; }
.etx-sidebar::-webkit-scrollbar-thumb { background: var(--etx-border); border-radius: 2px; }
.etx-sidebar__cta { padding: 10px 12px; border-bottom: 1px solid var(--etx-border); flex-shrink: 0; }
.etx-sidebar__cta .etx-btn { width: 100%; justify-content: center; }
.etx-sidebar__nav { padding: 6px 0; flex: 1; }
.etx-sidebar__section { padding: 8px 12px 3px; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--etx-text-dim); }
.etx-sidebar__link { display: flex; align-items: center; gap: 8px; padding: 8px 12px; font-size: 12.5px; font-weight: 500; color: var(--etx-text-muted); border-left: 2px solid transparent; transition: background .12s, color .12s, border-color .12s; }
.etx-sidebar__link:hover, .etx-sidebar__link.is-active { background: var(--etx-yellow-muted); color: var(--etx-yellow); border-left-color: var(--etx-yellow); font-weight: 600; }
.etx-sidebar__icon { font-size: 14px; flex-shrink: 0; width: 18px; text-align: center; }
.etx-sidebar__divider { height: 1px; background: var(--etx-border); margin: 4px 12px; }

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

/* ============================================================ HERO ============================================================ */
.etx-hero { position: relative; overflow: hidden; min-height: 320px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0d1117 0%, #1a2232 50%, #0f1923 100%); background-image: url("/img/hero-bg.png"); background-size: cover; background-position: center; }
.etx-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; opacity: .5; }
.etx-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,17,23,.55) 0%, rgba(13,17,23,.75) 50%, rgba(13,17,23,.92) 100%); z-index: 1; }
.etx-hero__content { position: relative; z-index: 2; padding: 40px 36px; max-width: 580px; text-align: center; margin-inline: auto; }
.etx-hero__eyebrow { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,215,0,.15); border: 1px solid rgba(255,215,0,.35); color: var(--etx-yellow); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
.etx-hero__promo { font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.etx-hero__promo .etx-hero__amount { font-size: clamp(40px, 7vw, 70px); color: var(--etx-yellow); display: block; }
.etx-hero__sub { color: rgba(255,255,255,.75); font-size: 14px; margin-bottom: 22px; line-height: 1.5; }
.etx-hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 639px) { .etx-hero { min-height: 260px; } .etx-hero__content { padding: 28px 16px; } .etx-hero__ctas .etx-btn { width: 100%; max-width: 320px; } }

/* ============================================================ CATEGORY TABS ============================================================ */
.etx-cats { background: var(--etx-bg-sidebar); border-bottom: 1px solid var(--etx-border); overflow-x: auto; scrollbar-width: none; display: flex; justify-content: center; }
.etx-cats::-webkit-scrollbar { display: none; }
.etx-cats__inner { display: flex; align-items: stretch; min-width: max-content; padding: 0 16px; }
.etx-cats a { display: flex; align-items: center; gap: 6px; padding: 11px 16px; font-size: 12.5px; font-weight: 600; color: var(--etx-text-muted); white-space: nowrap; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.etx-cats a:hover, .etx-cats a.is-active { color: var(--etx-yellow); border-color: var(--etx-yellow); }

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

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

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

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

/* Images */
article img, section.etx-content img { display: block; max-width: 720px; width: 100%; height: auto; max-height: 400px; object-fit: contain; margin: 16px auto; border-radius: var(--etx-radius); }
header img { max-height: 38px; width: auto; object-fit: contain; }
.etx-author__photo img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; }

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

/* Quote */
.etx-quote { border-left: 3px solid var(--etx-yellow); background: var(--etx-yellow-muted); border-radius: 0 var(--etx-radius) var(--etx-radius) 0; padding: 14px 18px; margin: 16px 0; font-style: italic; font-size: 13.5px; color: var(--etx-text); line-height: 1.7; }
.etx-quote cite { display: block; font-style: normal; font-size: 11.5px; font-weight: 700; color: var(--etx-yellow); margin-top: 7px; }

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

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

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

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

.etx-offers__card--top { border-color: var(--etx-border-y); box-shadow: 0 0 0 1px rgba(255,215,0,.2), var(--etx-shadow-lg); }
.etx-offers__card--top .etx-offers__head { background: linear-gradient(135deg, #1e2b1a 0%, #2a3d1e 100%); }
.etx-offers__ribbon { display: block; background: var(--etx-yellow); color: #000; font-size: 10.5px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; text-align: center; padding: 5px 14px; pointer-events: none; position: relative; z-index: 3; }
.etx-offers__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; justify-content: center; }
@media (max-width: 799px) { .etx-offers__card--top { order: -1; } }

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

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

/* ============================================================ AUTHOR ============================================================ */
.etx-author { background: var(--etx-bg-card); border: 1px solid var(--etx-border); border-radius: var(--etx-radius-lg); padding: 20px; display: flex; align-items: flex-start; gap: 16px; box-shadow: var(--etx-shadow); }
.etx-author__photo { flex-shrink: 0; width: 80px; height: 80px; }
.etx-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(--etx-yellow); display: block; }
.etx-author__name { font-size: 15px; font-weight: 800; color: var(--etx-text); margin-bottom: 2px; }
.etx-author__role { font-size: 12px; color: var(--etx-yellow); font-weight: 600; margin-bottom: 7px; }
.etx-author__bio { font-size: 12.5px; color: var(--etx-text-muted); line-height: 1.65; margin-bottom: 8px; }
.etx-author__link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #0077b5; }
.etx-author__link:hover { text-decoration: underline; }
.etx-author__badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--etx-yellow-muted); border: 1px solid var(--etx-border-y); color: var(--etx-yellow); padding: 3px 9px; border-radius: 4px; margin-top: 5px; }
@media (max-width: 560px) { .etx-author { flex-direction: column; align-items: center; text-align: center; } }

/* ============================================================ FAQ ============================================================ */
.etx-faq { padding-block: 24px; }
.etx-faq__item { border: 1px solid var(--etx-border); border-radius: var(--etx-radius); margin-bottom: 7px; overflow: hidden; background: var(--etx-bg-card); }
.etx-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(--etx-text); background: var(--etx-bg-card); user-select: none; list-style: none; }
.etx-faq__q::-webkit-details-marker { display: none; }
.etx-faq__q::after { content: '+'; font-size: 18px; color: var(--etx-yellow); flex-shrink: 0; line-height: 1; transition: transform .2s; }
details[open] > .etx-faq__q::after { transform: rotate(45deg); }
.etx-faq__a { padding: 10px 15px 12px; font-size: 13px; color: var(--etx-text-muted); line-height: 1.7; border-top: 1px solid var(--etx-border); }

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

/* ============================================================ FAB ============================================================ */
.etx-fab { display: none; position: fixed; left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 95; padding: 13px 30px; background: var(--etx-yellow); color: #000; font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; border-radius: 6px; box-shadow: 0 8px 24px rgba(255,215,0,.45); transition: background .15s; align-items: center; justify-content: center; min-width: 200px; max-width: calc(100% - 28px); white-space: nowrap; text-align: center; }
.etx-fab:hover { background: var(--etx-yellow-dark); }
@media (max-width: 1023px) { .etx-fab { display: inline-flex; } }

/* ============================================================ FOOTER ============================================================ */
.etx-footer { background: var(--etx-bg-sidebar); border-top: 1px solid var(--etx-border); padding-block-start: 36px; font-size: 13px; color: var(--etx-text-muted); }
.etx-footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; padding-bottom: 28px; border-bottom: 1px solid var(--etx-border); }
.etx-footer__brand { grid-column: 1 / -1; }
.etx-footer__brand img { height: 90px; width: auto; margin-bottom: 10px; display: block; }
.etx-footer__brand p { font-size: 12px; color: var(--etx-text-muted); max-width: 360px; line-height: 1.6; margin-bottom: 10px; }
.etx-footer__social { display: flex; gap: 10px; flex-wrap: wrap; }
.etx-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: var(--etx-bg-card); border: 1px solid var(--etx-border); border-radius: 6px; color: var(--etx-text-muted); font-size: 16px; transition: background .15s, color .15s, border-color .15s; }
.etx-footer__social a:hover { background: var(--etx-yellow-muted); border-color: var(--etx-border-y); color: var(--etx-yellow); }
.etx-footer__col h4 { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--etx-text); margin-bottom: 10px; }
.etx-footer__col ul li { margin-bottom: 6px; }
.etx-footer__col a { font-size: 12.5px; color: var(--etx-text-muted); transition: color .15s; }
.etx-footer__col a:hover { color: var(--etx-yellow); }
@media (min-width: 600px) { .etx-footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) { .etx-footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 22px; } .etx-footer__brand { grid-column: auto; } }

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

.etx-footer__rg { padding-block: 14px; border-bottom: 1px solid var(--etx-border); }
.etx-footer__rg-inner { display: flex; align-items: flex-start; gap: 12px; }
.etx-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; }
.etx-footer__rg p { font-size: 11px; color: var(--etx-text-muted); line-height: 1.6; }
.etx-footer__rg a { color: var(--etx-yellow); text-decoration: underline; }

.etx-footer__license { padding-block: 12px; border-bottom: 1px solid var(--etx-border); font-size: 11px; color: var(--etx-text-dim); line-height: 1.6; }

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

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

/* ============================================================ MOBILE ============================================================ */
@media (max-width: 759px) {
  .etx-container { padding-inline: 14px; }
  .etx-hero { min-height: 240px; }
  .etx-hero__content { padding: 22px 14px; }
  .etx-hero__promo { font-size: clamp(26px, 9vw, 36px); }
  .etx-hero__promo .etx-hero__amount { font-size: clamp(32px, 11vw, 48px); }
  .etx-offers__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .etx-slots__grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .etx-author { flex-direction: column; align-items: center; text-align: center; padding: 16px; }
  .etx-faq__q { font-size: 12.5px; padding: 11px 13px; }
  .etx-footer__top { grid-template-columns: 1fr 1fr; }
  .etx-footer__brand { grid-column: 1 / -1; }
  .etx-section__head { flex-direction: column; align-items: flex-start; gap: 5px; }
  .etx-fab { bottom: 10px; font-size: 12.5px; padding: 12px 22px; }
}
@media (max-width: 380px) {
  .etx-slots__grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .etx-footer__top { grid-template-columns: 1fr; }
}

/* === LISTINGS HORIZONTAL (betx-casino-online.com) === */
.etx-offers__grid {
  display: grid !important;
  grid-template-columns: 1fr 1.06fr 1fr !important;
  gap: 14px !important;
  max-width: 100% !important;
  align-items: start !important;
}
@media (max-width: 799px) {
  .etx-offers__grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr)) !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    display: grid !important;
    padding-bottom: 8px !important;
  }
  .etx-offers__card--top { order: 0 !important; }
  .etx-offers { overflow-x: auto; }
}

/* === HORIZONTAL LISTING CARDS === */
.etx-hlist { display: flex; flex-direction: column; gap: 14px; }

.etx-hcard {
  position: relative;
  background: var(--etx-bg-card);
  border: 1px solid var(--etx-border);
  border-radius: var(--etx-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.etx-hcard:hover { border-color: var(--etx-border-y); box-shadow: 0 8px 32px rgba(255,215,0,.15); }
.etx-hcard--top { border-color: var(--etx-border-y); box-shadow: 0 4px 20px rgba(255,215,0,.12); }

.etx-hcard__overlay { position: absolute; inset: 0; z-index: 1; font-size: 0; }
.etx-hcard * { pointer-events: none; }
.etx-hcard .etx-hcard__overlay,
.etx-hcard .etx-hcard__cta,
.etx-hcard .etx-hcard__link { pointer-events: auto; cursor: pointer; }
.etx-hcard__cta { position: relative; z-index: 3; }
.etx-hcard__link { position: relative; z-index: 3; }

/* top row: logo + highlight */
.etx-hcard__top { display: flex; align-items: center; gap: 16px; padding: 16px 18px 12px; }
.etx-hcard__logo-wrap { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 5px; min-width: 90px; }
.etx-hcard__logo-wrap img { width: 80px; height: auto; object-fit: contain; display: block; }
.etx-hcard__badge { display: inline-flex; align-items: center; gap: 3px; background: var(--etx-yellow-muted); border: 1px solid var(--etx-border-y); color: var(--etx-yellow); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 3px 8px; border-radius: 4px; white-space: nowrap; }
.etx-hcard__stars { display: flex; align-items: center; gap: 2px; font-size: 12px; color: var(--etx-yellow); }
.etx-hcard__stars span { font-size: 11px; color: var(--etx-text-muted); margin-left: 2px; font-style: normal; }

.etx-hcard__highlight { flex: 1; background: var(--etx-bg-raised); border: 1px solid var(--etx-border); border-radius: var(--etx-radius); padding: 12px 16px; }
.etx-hcard__highlight--gold { background: rgba(255,215,0,.06); border-color: var(--etx-border-y); }
.etx-hcard__label { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--etx-yellow); margin-bottom: 4px; }
.etx-hcard__offer { font-size: 16px; font-weight: 900; color: var(--etx-text); line-height: 1.3; }

/* usp grid 2 cols */
.etx-hcard__usp { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; padding: 0 18px 14px; }
.etx-hcard__usp li { display: flex; align-items: flex-start; gap: 6px; font-size: 12.5px; color: var(--etx-text-muted); }
.etx-hcard__usp li::before { content: '✓'; color: var(--etx-yellow); font-weight: 900; flex-shrink: 0; }

/* CTA row */
.etx-hcard__cta-row { display: flex; align-items: center; gap: 14px; padding: 0 18px 10px; }
.etx-hcard__cta { flex: 1; display: block; text-align: center; background: var(--etx-yellow); color: #000; font-weight: 900; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; padding: 13px 20px; border-radius: 50px; box-shadow: 0 4px 14px rgba(255,215,0,.35); transition: background .15s; }
.etx-hcard__cta:hover { background: var(--etx-yellow-dark); }
.etx-hcard__link { font-size: 12px; color: var(--etx-yellow); font-weight: 600; text-decoration: underline; white-space: nowrap; flex-shrink: 0; }

.etx-hcard__small { padding: 0 18px 12px; font-size: 10.5px; color: var(--etx-text-dim); }

/* mobile: single column, usp 1 col */
@media (max-width: 600px) {
  .etx-hcard__usp { grid-template-columns: 1fr; }
  .etx-hcard__top { flex-wrap: wrap; }
  .etx-hcard__cta-row { flex-direction: column; }
  .etx-hcard__cta { width: 100%; }
}

/* === CTA compact override === */
.etx-hcard__cta-row { justify-content: flex-start !important; }
.etx-hcard__cta { flex: 0 0 auto !important; width: auto !important; min-width: 180px; max-width: 260px; padding: 12px 28px !important; font-size: 12.5px !important; }
@media (max-width: 600px) { .etx-hcard__cta { max-width: 100%; } }

/* === Logo size in hcard === */
.etx-hcard__logo-wrap img { width: 110px !important; }

/* === HCARD MOBILE LAYOUT === */
@media (max-width: 640px) {
  .etx-hcard__top { gap: 12px; padding: 14px 14px 10px; align-items: flex-start; }
  .etx-hcard__logo-wrap { min-width: 80px; }
  .etx-hcard__logo-wrap img { width: 80px !important; }
  .etx-hcard__highlight { padding: 10px 12px; }
  .etx-hcard__label { font-size: 9px; margin-bottom: 3px; }
  .etx-hcard__offer { font-size: 14px; }
  .etx-hcard__usp { grid-template-columns: 1fr !important; gap: 5px; padding: 0 14px 12px; }
  .etx-hcard__usp li { font-size: 12px; }
  .etx-hcard__cta-row { flex-direction: column; align-items: stretch; padding: 0 14px 8px; gap: 8px; }
  .etx-hcard__cta { max-width: 100% !important; width: 100% !important; text-align: center; }
  .etx-hcard__link { text-align: center; }
  .etx-hcard__small { padding: 0 14px 10px; }
}
