:root {
  --header: #174D3D;
  --bg: #0F1F18;
  --bg-2: #142A21;
  --bg-3: #1A352A;
  --btn: #1B3F33;
  --accent: #FFE419;
  --accent-2: #6BD37C;
  --text: #FFFFFF;
  --muted: #A8C5B8;
  --line: rgba(255,255,255,0.08);
  --radius: 12px;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; }
input { font: inherit; }
* { min-width: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  letter-spacing: .2px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(180deg, #2A6B57, #1B3F33);
  color: #FFE419;
  border-color: #FFE419;
  box-shadow: 0 8px 22px rgba(255,228,25,0.18), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,228,25,0.32), inset 0 1px 0 rgba(255,255,255,0.2);
  background: linear-gradient(180deg, #348062, #244F40);
}
.btn--primary:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(255,228,25,0.2); }
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}
.btn--login {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: #FFFFFF;
}
.btn--login:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn--xl { min-height: 56px; padding: 16px 32px; font-size: 17px; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header);
  border-bottom: 1px solid rgba(0,0,0,0.25);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}
.header__logo { flex: 0 0 auto; display: flex; align-items: center; }
.header__logo img { height: 38px; width: auto; max-width: 140px; object-fit: contain; }
.header__nav {
  flex: 1 1 auto;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.header__nav::-webkit-scrollbar { display: none; }
.header__link {
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  padding: 8px 4px;
  position: relative;
  transition: color .15s ease;
}
.header__link:hover { color: #FFE419; }
.header__link--active { color: var(--accent-2); }
.header__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 3px;
  background: var(--accent-2);
  border-radius: 3px 3px 0 0;
}
.header__cta { display: flex; gap: 10px; flex: 0 0 auto; align-items: center; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
}
.header__burger span {
  width: 26px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
}

@media (max-width: 1100px) {
  .header__nav { gap: 20px; }
  .header__link { font-size: 14px; }
}
@media (max-width: 980px) {
  .header__nav { display: none; }
  .header__nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--header);
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(0,0,0,0.3);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  }
  .header__nav.is-open .header__link {
    width: 100%;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .header__nav.is-open .header__link--active::after { display: none; }
  .header__burger { display: flex; }
  .header__cta .btn--login { display: none; }
}
@media (max-width: 560px) {
  .header__inner { gap: 12px; min-height: 64px; }
  .header__logo img { height: 30px; }
  .header__cta .btn { padding: 10px 14px; min-height: 42px; font-size: 13px; }
  .header__cta .btn--ghost { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top, rgba(23,77,61,0.7), transparent 60%), var(--bg);
  padding-bottom: 60px;
}
.hero__media {
  display: block;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.hero__content {
  text-align: center;
  padding-top: 50px;
}
.hero__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}
.hero__bonus {
  display: inline-block;
  font-size: clamp(28px, 6.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: #FFE419;
  text-shadow: 0 4px 24px rgba(255,228,25,0.3);
  margin: 12px auto 28px;
  padding: 14px 26px;
  border-radius: 16px;
  background: rgba(255,228,25,0.06);
  border: 2px dashed rgba(255,228,25,0.4);
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero__terms {
  font-size: 13px;
  color: var(--muted);
  margin: 14px auto 0;
  max-width: 520px;
}
@media (max-width: 560px) {
  .hero { padding-bottom: 40px; }
  .hero__content { padding-top: 32px; }
  .hero__cta .btn { width: 100%; }
  .hero__bonus { font-size: clamp(28px, 8vw, 44px); padding: 12px 18px; }
}

/* ===== Section heads ===== */
.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.section__title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #FFFFFF;
  overflow-wrap: anywhere;
}
.section__link {
  color: var(--accent-2);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.section__link:hover { color: #FFE419; }
.section__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 560px) {
  .section__cta .btn { width: 100%; }
}

/* ===== Catnav ===== */
.catnav {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 72px;
  z-index: 50;
}
@media (max-width: 980px) { .catnav { top: 64px; } }
.catnav__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
  padding-bottom: 18px;
}
.catnav__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
}
.catnav__search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #FFFFFF;
  min-width: 0;
}
.catnav__search input::placeholder { color: var(--muted); }
.catnav__icon { color: var(--muted); font-size: 18px; }
.catnav__list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.catnav__list::-webkit-scrollbar { display: none; }
.catnav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
  min-width: 86px;
}
.catnav__item:hover { color: #FFFFFF; background: rgba(255,255,255,0.04); }
.catnav__emoji { font-size: 26px; line-height: 1; }
.catnav__item--active { color: var(--accent-2); background: rgba(107,211,124,0.08); }

/* ===== Games ===== */
.games { padding: 60px 0; }
.games__filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 24px;
  padding-bottom: 4px;
}
.games__filters::-webkit-scrollbar { display: none; }
.games__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}
.gameCard {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  min-width: 0;
}
.gameCard:hover {
  transform: translateY(-4px);
  border-color: #FFE419;
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}
.gameCard__media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 1 / 1.15;
  background: var(--bg-3);
}
.gameCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gameCard:hover .gameCard__media img { transform: scale(1.06); }
.gameCard__tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #FFE419;
  color: #0F1F18;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.gameCard__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gameCard__body strong {
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gameCard__body span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1200px) { .games__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
@media (max-width: 900px) { .games__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 560px) { .games__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; } }
@media (max-width: 380px) { .games__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ===== Jackpot ===== */
.jackpot {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(23,77,61,0.7), rgba(255,228,25,0.08));
  border: 1px solid rgba(255,228,25,0.3);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.jackpot__label {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 700;
}
.jackpot__value {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #FFE419;
  text-shadow: 0 0 24px rgba(255,228,25,0.45);
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
@media (max-width: 560px) {
  .jackpot { flex-direction: column; gap: 14px; padding: 22px 18px; }
  .jackpot .btn { width: 100%; }
}

/* ===== Live ===== */
.live {
  padding: 60px 0;
  background: var(--bg-2);
}
.live__filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 24px;
  padding-bottom: 4px;
}
.live__filters::-webkit-scrollbar { display: none; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  transition: all .15s ease;
}
.pill:hover { color: #FFFFFF; border-color: #FFE419; }
.pill--active {
  background: #FFE419;
  color: #0F1F18;
  border-color: #FFE419;
}
.live__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.liveCard {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.liveCard:hover { transform: translateY(-4px); border-color: #FFE419; }
.liveCard__media {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.liveCard__media img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  transition: transform .3s ease;
}
.liveCard:hover .liveCard__media img { transform: scale(1.05); }
.liveCard__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.liveCard__body strong {
  font-size: 16px;
  color: #FFFFFF;
  overflow-wrap: anywhere;
}
.liveCard__body span {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 900px) { .live__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .live__grid { grid-template-columns: 1fr; } }

/* ===== Promo ===== */
.promo { padding: 60px 0; }
.promo__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}
.promoCard {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
  min-width: 0;
}
.promoCard:hover { transform: translateY(-4px); border-color: #FFE419; }
.promoCard__media { overflow: hidden; }
.promoCard__media img { width: 100%; max-height: 220px; object-fit: cover; }
.promoCard__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.promoCard__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFE419;
  background: rgba(255,228,25,0.1);
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.promoCard h3 {
  font-size: 18px;
  color: #FFFFFF;
  overflow-wrap: anywhere;
}
.promoCard p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.promoCard--lead {
  background: linear-gradient(135deg, rgba(23,77,61,0.85), rgba(15,31,24,0.6));
  border-color: rgba(255,228,25,0.35);
}
.promoCard--lead h3 {
  font-size: 22px;
  color: #FFE419;
}
@media (max-width: 1000px) {
  .promo__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promoCard--lead { grid-column: span 2; }
}
@media (max-width: 560px) {
  .promo__grid { grid-template-columns: 1fr; }
  .promoCard--lead { grid-column: span 1; }
  .promoCard .btn { width: 100%; }
}

/* ===== SEO ===== */
.seo {
  padding: 60px 0;
  background: var(--bg-2);
}
.seo__text {
  font-size: 15.5px;
  color: #D6E5DC;
  max-height: 220px;
  overflow: hidden;
  position: relative;
  transition: max-height .4s ease;
}
.seo__text p { margin: 0 0 16px; }
.seo__text--open { max-height: 4000px; }
.seo__text:not(.seo__text--open)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--bg-2));
  pointer-events: none;
}
.seo__toggle {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  background: transparent;
  border: 2px solid #FFE419;
  color: #FFE419;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 999px;
  transition: all .15s ease;
}
.seo__toggle:hover { background: rgba(255,228,25,0.1); }

/* ===== Who We Are ===== */
.who { padding: 60px 0; }
.who__lead {
  font-size: 16.5px;
  color: #D6E5DC;
  max-width: 880px;
  margin: 0 auto 36px;
  text-align: center;
}
.who__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.whoCard {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, border-color .2s ease;
  min-width: 0;
}
.whoCard:hover { transform: translateY(-4px); border-color: #FFE419; }
.whoCard__media {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,228,25,0.1);
  border: 1px solid rgba(255,228,25,0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whoCard__media img { width: 32px; height: 32px; max-height: 32px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.whoCard h3 { font-size: 17px; color: #FFFFFF; }
.whoCard p { font-size: 14px; color: var(--muted); margin: 0; }
.who__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: linear-gradient(135deg, rgba(23,77,61,0.6), rgba(15,31,24,0.4));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.who__stats li {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.who__stats strong {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: #FFE419;
}
.who__stats span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
@media (max-width: 900px) {
  .who__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .who__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}
@media (max-width: 480px) {
  .who__grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq { padding: 60px 0; background: var(--bg-2); }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
.faqItem {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faqItem[open] { border-color: rgba(255,228,25,0.4); }
.faqItem summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faqItem summary::-webkit-details-marker { display: none; }
.faqItem summary::after {
  content: "+";
  font-size: 24px;
  color: #FFE419;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faqItem[open] summary::after { content: "−"; }
.faqItem__body {
  padding: 0 22px 22px;
  color: #D6E5DC;
  font-size: 14.5px;
}
.faqItem__body p { margin: 0 0 12px; }
.faqItem__body p:last-child { margin-bottom: 0; }

/* ===== Footer ===== */
.footer { background: #0A1611; padding-top: 0; border-top: 1px solid var(--line); }
.footer__safe {
  background: linear-gradient(180deg, rgba(23,77,61,0.6), rgba(10,22,17,0.4));
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.footer__safeRow {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__safeTitle { display: flex; flex-direction: column; gap: 4px; }
.footer__safeTitle strong { font-size: 18px; color: #FFFFFF; }
.footer__safeTitle p { margin: 0; font-size: 13px; color: var(--muted); }
.footer__safeList {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.footer__safeList a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.footer__safeList a span { font-size: 18px; }
.footer__safeList a:hover { color: #FFE419; }
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-top: 50px;
  padding-bottom: 40px;
}
.footer__col h4 {
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col a { font-size: 14px; color: var(--muted); }
.footer__col a:hover { color: #FFE419; }
.footer__logo { display: inline-block; }
.footer__logo img { height: 42px; margin-bottom: 16px; max-width: 160px; object-fit: contain; }
.footer__tagline {
  font-size: 14px;
  color: #FFE419;
  font-weight: 700;
  margin: 0 0 18px;
}
.footer__legal {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.footer__pay li {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  padding-bottom: 100px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: #FFE419; }
@media (max-width: 900px) { .footer__main { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) {
  .footer__main { grid-template-columns: 1fr; }
  .footer__safeRow { flex-direction: column; align-items: flex-start; }
  .footer__safeRow .btn { width: 100%; }
  .footer__safeList { justify-content: flex-start; }
}

/* ===== Catfish ===== */
.catfish {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(23,77,61,0.98), rgba(10,22,17,0.98));
  border-top: 2px solid #FFE419;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
  transform: translateY(0);
  transition: transform .3s ease;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
}
.catfish.is-hidden { transform: translateY(110%); }
.catfish__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 32px);
}
.catfish__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.catfish__text strong {
  font-size: 15px;
  color: #FFE419;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catfish__text span {
  font-size: 12px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catfish .btn { flex-shrink: 0; padding: 10px 18px; min-height: 42px; font-size: 13px; }
.catfish__close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catfish__close:hover { background: rgba(255,255,255,0.15); }
@media (max-width: 480px) {
  .catfish__inner { gap: 10px; }
  .catfish .btn { padding: 10px 14px; font-size: 12px; }
}

/* ===== Exit popup ===== */
.exit {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit[hidden] { display: none; }
.exit__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
}
.exit__dialog {
  position: relative;
  background: linear-gradient(180deg, var(--bg-3), var(--bg));
  border: 2px solid #FFE419;
  border-radius: 18px;
  padding: 36px 28px 28px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.exit__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.1);
  border: 0;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit__close:hover { background: rgba(255,255,255,0.2); }
.exit__media {
  margin: 0 auto 16px;
  max-width: 220px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.exit__dialog h3 {
  font-size: 24px;
  color: #FFE419;
  margin-bottom: 12px;
}
.exit__dialog p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 15px;
}
.exit__dialog .btn { width: 100%; }
.bet365edu-hub__section {
display: block;
padding: 3.75rem 0;
background: linear-gradient(180deg, #0F1F18 0%, #122620 100%);
color: #E5F0EA;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
border-top: 1px solid rgba(255,255,255,0.06);
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bet365edu-hub__container {
width: 100%;
max-width: 80rem;
margin: 0 auto;
padding: 0 1.25rem;
box-sizing: border-box;
}
.bet365edu-hub__intro {
margin-bottom: 2.25rem;
padding: 1.75rem 1.5rem;
background: rgba(23, 77, 61, 0.35);
border: 1px solid rgba(255, 228, 25, 0.18);
border-radius: 0.875rem;
}
.bet365edu-hub__h2 {
font-size: clamp(1.4rem, 3.6vw, 2.125rem);
font-weight: 800;
color: #FFFFFF;
line-height: 1.2;
margin: 0 0 1rem 0;
overflow-wrap: anywhere;
}
.bet365edu-hub__h2::after {
content: "";
display: block;
width: 3.5rem;
height: 0.1875rem;
background: #FFE419;
border-radius: 0.25rem;
margin-top: 0.75rem;
}
.bet365edu-hub__lead {
font-size: 1rem;
line-height: 1.7;
color: #D6E5DC;
margin: 0 0 0.75rem 0;
}
.bet365edu-hub__lead:last-child {
margin-bottom: 0;
}
.bet365edu-hub__article {
margin: 0 0 2rem 0;
padding: 1.5rem 1.25rem;
background: rgba(20, 42, 33, 0.6);
border: 1px solid rgba(255,255,255,0.06);
border-left: 3px solid #6BD37C;
border-radius: 0.75rem;
}
.bet365edu-hub__h3 {
font-size: clamp(1.15rem, 2.6vw, 1.5rem);
font-weight: 800;
color: #FFE419;
line-height: 1.25;
margin: 0 0 1rem 0;
overflow-wrap: anywhere;
}
.bet365edu-hub__h4 {
font-size: 1.0625rem;
font-weight: 700;
color: #FFFFFF;
line-height: 1.3;
margin: 1.25rem 0 0.625rem 0;
}
.bet365edu-hub__p {
font-size: 0.9875rem;
line-height: 1.7;
color: #D6E5DC;
margin: 0 0 0.875rem 0;
}
.bet365edu-hub__p:last-child {
margin-bottom: 0;
}
.bet365edu-hub__p strong {
color: #FFFFFF;
font-weight: 700;
}
.bet365edu-hub__p em {
color: #FFE419;
font-style: italic;
}
.bet365edu-hub__list,
.bet365edu-hub__glossary,
.bet365edu-hub__numbered {
margin: 0 0 1rem 0;
padding: 0 0 0 1.25rem;
list-style: none;
}
.bet365edu-hub__list li,
.bet365edu-hub__glossary li,
.bet365edu-hub__numbered li {
position: relative;
font-size: 0.9875rem;
line-height: 1.65;
color: #D6E5DC;
margin: 0 0 0.75rem 0;
padding-left: 0.5rem;
}
.bet365edu-hub__list li::before {
content: "";
position: absolute;
left: -0.875rem;
top: 0.625rem;
width: 0.4375rem;
height: 0.4375rem;
background: #FFE419;
border-radius: 50%;
}
.bet365edu-hub__glossary {
display: grid;
grid-template-columns: 1fr;
gap: 0.5rem;
padding-left: 0;
}
.bet365edu-hub__glossary li {
background: rgba(15, 31, 24, 0.55);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 0.5rem;
padding: 0.75rem 0.875rem;
margin: 0;
}
.bet365edu-hub__glossary li::before {
display: none;
}
.bet365edu-hub__glossary li strong {
color: #FFE419;
font-weight: 800;
margin-right: 0.25rem;
}
.bet365edu-hub__numbered {
counter-reset: bet365edu-counter;
padding-left: 0;
}
.bet365edu-hub__numbered li {
counter-increment: bet365edu-counter;
padding-left: 2.25rem;
margin-bottom: 0.875rem;
}
.bet365edu-hub__numbered li::before {
content: counter(bet365edu-counter);
position: absolute;
left: 0;
top: 0;
width: 1.625rem;
height: 1.625rem;
border-radius: 50%;
background: #FFE419;
color: #0F1F18;
font-weight: 900;
font-size: 0.8125rem;
display: flex;
align-items: center;
justify-content: center;
}
.bet365edu-hub__list strong,
.bet365edu-hub__numbered strong {
color: #FFFFFF;
font-weight: 700;
}
.bet365edu-hub__tableWrap {
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin: 0 0 1rem 0;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 0.625rem;
}
.bet365edu-hub__table {
width: 100%;
min-width: 32rem;
border-collapse: collapse;
font-size: 0.9rem;
background: rgba(15, 31, 24, 0.6);
}
.bet365edu-hub__table thead {
background: rgba(23, 77, 61, 0.85);
}
.bet365edu-hub__table th {
text-align: left;
padding: 0.75rem 0.875rem;
font-weight: 800;
color: #FFE419;
font-size: 0.8125rem;
text-transform: uppercase;
letter-spacing: 0.06em;
border-bottom: 1px solid rgba(255,228,25,0.3);
}
.bet365edu-hub__table td {
padding: 0.75rem 0.875rem;
color: #D6E5DC;
line-height: 1.55;
border-bottom: 1px solid rgba(255,255,255,0.05);
vertical-align: top;
}
.bet365edu-hub__table tbody tr:last-child td {
border-bottom: 0;
}
.bet365edu-hub__table td strong {
color: #FFFFFF;
}
.bet365edu-hub__aside {
margin-top: 2rem;
padding: 1.75rem 1.5rem;
background: linear-gradient(135deg, rgba(23,77,61,0.7), rgba(15,31,24,0.7));
border: 1px solid rgba(255,228,25,0.35);
border-radius: 0.875rem;
}
.bet365edu-hub__asideTitle {
font-size: 1.1875rem;
font-weight: 800;
color: #FFE419;
line-height: 1.3;
margin: 0 0 0.875rem 0;
}
.bet365edu-hub__note {
font-size: 0.8125rem;
color: #A8C5B8;
line-height: 1.55;
margin: 1.125rem 0 1rem 0;
padding: 0.75rem 0.875rem;
background: rgba(0,0,0,0.2);
border-left: 3px solid #FFE419;
border-radius: 0.375rem;
}
.bet365edu-hub__cta {
margin: 1rem 0 0 0;
text-align: center;
}
.bet365edu-hub__ctaLink {
display: inline-block;
padding: 0.875rem 1.75rem;
background: linear-gradient(180deg, #2A6B57, #1B3F33);
color: #FFE419;
border: 2px solid #FFE419;
border-radius: 999px;
font-weight: 800;
font-size: 0.9375rem;
text-decoration: none;
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bet365edu-hub__ctaLink:hover {
transform: translateY(-2px);
box-shadow: 0 0.625rem 1.5rem rgba(255,228,25,0.25);
}
@media (min-width: 48rem) {
.bet365edu-hub__section {
padding: 4.5rem 0;
}
.bet365edu-hub__intro {
padding: 2.25rem 2rem;
}
.bet365edu-hub__article {
padding: 2rem 1.875rem;
margin-bottom: 2.25rem;
border-left-width: 4px;
}
.bet365edu-hub__lead {
font-size: 1.0625rem;
line-height: 1.75;
}
.bet365edu-hub__p {
font-size: 1rem;
line-height: 1.75;
}
.bet365edu-hub__list li,
.bet365edu-hub__glossary li,
.bet365edu-hub__numbered li {
font-size: 1rem;
}
.bet365edu-hub__glossary {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem;
}
.bet365edu-hub__table {
font-size: 0.9375rem;
}
.bet365edu-hub__aside {
padding: 2.25rem 2rem;
}
.bet365edu-hub__asideTitle {
font-size: 1.375rem;
}
}
@media (min-width: 64rem) {
.bet365edu-hub__section {
padding: 5.25rem 0;
}
.bet365edu-hub__intro {
padding: 2.5rem 2.5rem;
}
.bet365edu-hub__article {
padding: 2.25rem 2.25rem;
}
.bet365edu-hub__h2 {
font-size: 2.25rem;
}
.bet365edu-hub__h3 {
font-size: 1.625rem;
}
.bet365edu-hub__h4 {
font-size: 1.125rem;
}
.bet365edu-hub__glossary {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bet365edu-hub__aside {
padding: 2.5rem 2.5rem;
}
}