:root {
  --green: #20c923;
  --green-bright: #25df2c;
  --green-dark: #087b11;
  --bg: #404142;
  --panel: #333435;
  --panel-dark: #222323;
  --panel-deep: #191a1a;
  --text: #f1f3f1;
  --muted: #a9ada9;
  --line: rgba(255,255,255,.1);
  --shadow: 0 18px 42px rgba(0,0,0,.28);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}
body.light-mode {
  --bg: #e8ece8;
  --panel: #fff;
  --panel-dark: #f6f8f6;
  --panel-deep: #e0e4e0;
  --text: #151715;
  --muted: #666c66;
  --line: rgba(0,0,0,.1);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.age-strip {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 16px;
  overflow: hidden;
  background: #242525;
  color: #aeb1ae;
  font-size: 12px;
  white-space: nowrap;
}
.age-strip a { color: #d4d7d4; text-decoration: underline; }

.topbar {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 99;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 clamp(16px, 2vw, 30px);
  background: rgba(35,36,36,.97);
  box-shadow: 0 7px 16px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.brand { width: 184px; flex: 0 0 auto; }
.brand img { width: 100%; height: 42px; object-fit: contain; }
.desktop-nav {
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin-right: auto;
}
.desktop-nav a,
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: #d7d9d7;
  font-size: 14px;
  letter-spacing: .2px;
  cursor: pointer;
  white-space: nowrap;
}
.desktop-nav a::after,
.nav-dropdown::after {
  content: "";
  position: absolute;
  inset: auto 12px 0;
  height: 3px;
  border-radius: 4px 4px 0 0;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.desktop-nav a:hover::after,
.nav-dropdown:hover::after { transform: scaleX(1); }
.desktop-nav a:hover, .nav-dropdown:hover { color: #fff; }
.desktop-nav b {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--green);
  color: #082408;
  font-size: 12px;
}
.live-link > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f24242;
  box-shadow: 0 0 0 4px rgba(242,66,66,.14);
}
.top-actions { display: flex; align-items: center; gap: 7px; }
.icon-button, .menu-button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #dfe2df;
  font-size: 24px;
  cursor: pointer;
}
.icon-button:hover { background: rgba(255,255,255,.07); }
.login-button, .register-button {
  min-width: 84px;
  height: 38px;
  padding: 0 18px;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}
.login-button { border: 0; background: #098f11; }
.login-button:hover { background: var(--green); }
.register-button { border: 1px solid #666; background: transparent; }
.register-button:hover { border-color: var(--green); color: var(--green); }
.menu-button { display: none; font-size: 23px; }
.mobile-menu { display: none; }

main { padding-top: 82px; }
.hero-shell {
  position: relative;
  max-width: 1500px;
  height: 420px;
  margin: 20px auto 0;
  padding: 0 clamp(16px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(240px, .7fr);
  gap: 16px;
}
.hero-stage {
  position: relative;
  min-height: 0;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #151615;
  box-shadow: var(--shadow);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity .55s ease, transform .65s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 43%; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.42), transparent 42%);
}
.hero-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 100%;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.eyebrow {
  color: var(--green-bright);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.7px;
}
.hero-copy h1 {
  margin: 10px 0 14px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(50px, 5.3vw, 84px);
  font-weight: 800;
  font-style: italic;
  line-height: .88;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.hero-copy p { max-width: 420px; margin: 0 0 25px; color: #d9ddd9; line-height: 1.45; }
.hero-copy button {
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
.hero-copy button:hover { background: var(--green-bright); transform: translateY(-1px); }
.hero-previews {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}
.hero-preview {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 13px;
  background: #222;
  cursor: pointer;
  opacity: .72;
  transition: opacity .2s, border-color .2s, transform .2s;
}
.hero-preview:hover, .hero-preview.is-active { opacity: 1; transform: translateX(-3px); }
.hero-preview.is-active { border-color: var(--green); }
.hero-preview img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.85), transparent 70%); }
.hero-preview span { position: absolute; z-index: 1; inset: auto 13px 11px; text-align: left; font-weight: 700; font-size: 13px; }
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(16,17,16,.76);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}
.hero-arrow:hover { background: var(--green); }
.hero-arrow--left { left: 7px; }
.hero-arrow--right { right: 7px; }
.hero-dots { position: absolute; z-index: 5; left: 50%; bottom: 16px; display: flex; gap: 7px; }
.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: width .2s, background .2s;
}
.hero-dots button.is-active { width: 25px; background: var(--green); }

.quick-grid {
  max-width: 1500px;
  margin: 16px auto 0;
  padding: 0 clamp(16px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.quick-card {
  position: relative;
  min-height: 105px;
  padding: 19px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  box-shadow: inset 0 -30px 50px rgba(0,90,6,.12);
  transition: transform .2s, background .2s;
}
.quick-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -48px;
  bottom: -80px;
  border: 18px solid rgba(255,255,255,.13);
  border-radius: 50%;
}
.quick-card:hover { transform: translateY(-3px); background: var(--green-bright); }
.quick-card small { font-size: 12px; font-weight: 900; letter-spacing: 1.4px; opacity: .7; }
.quick-card h2 {
  margin: 5px 0 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1;
}
.quick-icon { position: relative; z-index: 1; font-size: 38px; filter: grayscale(1) brightness(4); }
.quick-icon.signal { font-size: 27px; letter-spacing: -5px; }

.content-section {
  max-width: 1500px;
  margin: 24px auto 0;
  padding: 26px clamp(16px, 2.5vw, 32px);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.section-heading h2 {
  margin: 3px 0 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1;
}
.section-controls, .heading-actions { display: flex; align-items: center; gap: 8px; }
.control-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
  font-size: 25px;
  cursor: pointer;
}
.control-button:hover { border-color: var(--green); color: var(--green); }
.text-button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--green-bright);
  font-weight: 700;
  cursor: pointer;
}

.sports-section { background: linear-gradient(180deg, transparent, rgba(20,21,20,.13)); }
.sports-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 14px;
}
.league-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.league-title {
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.league-title b { padding: 4px 6px; border-radius: 5px; background: #ea3c3c; font-size: 12px; }
.sport-tabs {
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.sport-tabs button {
  min-height: 35px;
  padding: 0 4px;
  border: 0;
  border-radius: 7px;
  background: var(--panel-dark);
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}
.sport-tabs button.is-active { background: var(--green); color: #fff; font-weight: 800; }
.league-list { padding: 0 9px 8px; }
.league-list button {
  width: 100%;
  min-height: 50px;
  padding: 7px 8px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.league-list button:hover { background: rgba(255,255,255,.04); }
.league-list img { width: 31px; height: 31px; border-radius: 50%; object-fit: contain; }
.league-list span { font-size: 12px; font-weight: 600; }
.league-list b { min-width: 23px; padding: 4px; border-radius: 12px; background: var(--panel-dark); text-align: center; font-size: 12px; }
.all-events {
  width: 100%;
  min-height: 45px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid var(--line);
  background: var(--panel-dark);
  color: var(--green-bright);
  font-weight: 700;
  cursor: pointer;
}
.bet-cards {
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(265px, 1fr);
  gap: 13px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.bet-cards::-webkit-scrollbar, .promo-rail::-webkit-scrollbar { display: none; }
.bet-card {
  scroll-snap-align: start;
  min-height: 320px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0, rgba(32,201,35,.13), transparent 30%),
    var(--panel);
  box-shadow: var(--shadow);
}
.bet-topline { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--muted); font-size: 12px; }
.bet-topline span { color: var(--green-bright); font-weight: 900; }
.competition { margin-top: 19px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .6px; }
.teams { margin-top: 12px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; text-align: center; text-transform: uppercase; }
.teams strong { font-family: "Arial Narrow", Arial, sans-serif; font-size: 21px; line-height: 1; }
.teams span { color: var(--green); font-size: 12px; font-weight: 900; }
.bet-card p { min-height: 51px; margin: 18px 0 10px; color: #c8cbc8; font-size: 12px; line-height: 1.45; }
.odd-row { margin-top: auto; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 9px; }
.odd-row span { color: var(--muted); font-size: 12px; }
.odd-row del { color: #858985; font-size: 12px; }
.odd-row strong { color: var(--green-bright); font-size: 25px; }
.win-button {
  min-height: 45px;
  margin-top: 12px;
  border: 0;
  border-radius: 9px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}
.win-button b { font-size: 15px; }
.win-button:hover, .win-button.is-added { background: var(--green-bright); }

.news-band {
  max-width: 1436px;
  min-height: 58px;
  margin: 6px auto 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-deep);
}
.news-logo { position: relative; z-index: 2; padding: 0 17px; display: flex; align-items: center; gap: 8px; background: var(--green-dark); }
.news-logo img { width: 103px; height: 31px; object-fit: contain; }
.news-logo span { padding: 4px; border: 1px solid rgba(255,255,255,.5); font-size: 12px; font-weight: 900; }
.news-ticker { overflow: hidden; display: flex; align-items: center; }
.news-track { display: flex; gap: 44px; width: max-content; animation: ticker 38s linear infinite; }
.news-track a { position: relative; color: #d9ddd9; font-size: 12px; font-weight: 700; white-space: nowrap; }
.news-track a::before { content: "●"; position: absolute; left: -19px; color: var(--green); font-size: 12px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.promotions-section { padding-top: 38px; }
.promo-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 20%);
  gap: 13px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.promo-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  scroll-snap-align: start;
  background: var(--panel);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.promo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.promo-card:hover img { transform: scale(1.05); }
.promo-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(0deg, rgba(0,0,0,.94), transparent); }
.promo-card div { position: absolute; z-index: 1; inset: auto 14px 13px; }
.promo-card h3 { margin: 0; font-family: "Arial Narrow", Arial, sans-serif; font-size: 20px; font-style: italic; }
.promo-card span { color: var(--green-bright); font-size: 12px; font-weight: 900; text-transform: uppercase; }

.casino-section { padding-bottom: 46px; }
.game-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
.game-card {
  position: relative;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  border-radius: 13px;
  background: #191a19;
  box-shadow: var(--shadow);
}
.game-card > img { width: 100%; height: 100%; object-fit: cover; }
.game-card::after { content: ""; position: absolute; inset: 25% 0 0; background: linear-gradient(0deg, rgba(0,0,0,.95), transparent); }
.game-card div {
  position: absolute;
  z-index: 1;
  inset: auto 12px 11px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2px 8px;
}
.game-card span { grid-column: 1; color: var(--green-bright); font-size: 12px; font-weight: 900; }
.game-card h3 { grid-column: 1; margin: 0; font-family: "Arial Narrow", Arial, sans-serif; font-size: 18px; line-height: 1; }
.game-card button {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 7px;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .2s, transform .2s;
}
.game-card:hover button { opacity: 1; transform: translateX(0); }

.responsible-section {
  position: relative;
  min-height: 330px;
  padding: 60px max(7vw, 32px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 50%, rgba(32,201,35,.2), transparent 28%),
    linear-gradient(120deg, #191a1a 0%, #232523 55%, #123815 100%);
}
.responsible-copy { position: relative; z-index: 2; max-width: 660px; }
.responsible-copy h2 { margin: 6px 0 13px; font-family: "Arial Narrow", Arial, sans-serif; font-size: 48px; font-style: italic; }
.responsible-copy p { color: #bdc2bd; line-height: 1.6; }
.responsible-copy strong { display: block; margin: 20px 0; font-size: 14px; }
.responsible-copy a { color: var(--green-bright); font-weight: 800; }
.responsible-art { position: absolute; inset: 0 7vw 0 auto; width: 400px; display: flex; align-items: flex-end; justify-content: center; }
.responsible-art img { position: relative; z-index: 2; height: 285px; width: auto; object-fit: contain; filter: drop-shadow(0 20px 25px rgba(0,0,0,.35)); }
.responsible-art b { position: absolute; z-index: 3; right: 13px; top: 65px; font-family: "Arial Narrow", Arial, sans-serif; font-size: 82px; color: rgba(255,255,255,.93); }
.responsible-orbit { position: absolute; border: 1px solid rgba(36,223,44,.4); border-radius: 50%; }
.orbit-one { width: 330px; height: 330px; top: 10px; }
.orbit-two { width: 230px; height: 230px; top: 60px; }

.casino-longread {
  max-width: 1056px;
  margin: 46px auto 70px;
  padding: 52px 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #343535;
  box-shadow: var(--shadow);
}
.casino-longread__intro {
  max-width: 880px;
  margin-bottom: 42px;
}
.casino-longread h1 {
  margin: 9px 0 20px;
  color: #fff;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -.8px;
}
.casino-longread__lead {
  color: #e1e4e1;
  font-size: 17px;
  line-height: 1.75;
}
.casino-longread section {
  padding: 32px 0 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.casino-longread h2 {
  max-width: 800px;
  margin: 0 0 18px;
  color: #f7f9f7;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  font-style: italic;
  line-height: 1.15;
}
.casino-longread p {
  margin: 0 0 17px;
  color: #c7cbc7;
  font-size: 15px;
  line-height: 1.78;
}
.casino-longread p:last-child { margin-bottom: 0; }

.footer { background: #252626; color: #e6e8e6; }
.payment-bar {
  min-height: 88px;
  padding: 18px max(4vw, 24px);
  display: flex;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.payment-bar > strong { flex: 0 0 auto; font-size: 13px; }
.payment-list { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; }
.payment-list span { min-height: 32px; padding: 0 12px; display: inline-flex; align-items: center; border-radius: 6px; background: #f6f6f6; color: #252625; font-size: 12px; font-weight: 900; }
.footer-main {
  max-width: 1450px;
  margin: 0 auto;
  padding: 42px 28px;
  display: grid;
  grid-template-columns: 1fr 285px;
  gap: 45px;
}
.footer-columns { display: grid; grid-template-columns: repeat(5, 1fr); gap: 25px; }
.footer-title {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  font-size: 12px;
  cursor: default;
}
.footer-title span { display: none; }
.footer-links { margin-top: 15px; display: grid; gap: 10px; }
.footer-links a { color: #999e99; font-size: 12px; line-height: 1.3; }
.footer-links a:hover { color: var(--green-bright); }
.customer-care {
  padding: 23px;
  border-radius: 14px;
  background: #303130;
  align-self: start;
}
.customer-care > span { color: var(--green-bright); font-size: 12px; font-weight: 900; letter-spacing: 1.4px; }
.customer-care h3 { margin: 7px 0 4px; font-family: "Arial Narrow", Arial, sans-serif; font-size: 28px; }
.customer-care p { margin: 0 0 15px; color: #a7aba7; font-size: 12px; }
.customer-care a, .customer-care button {
  width: 100%;
  min-height: 40px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.customer-care button { background: #454745; }
.footer-legal { padding: 28px max(4vw, 24px) 34px; background: #1a1a1a; color: #858a85; font-size: 12px; line-height: 1.55; }
.legal-badges { display: flex; align-items: center; justify-content: center; gap: 16px; text-align: left; }
.legal-badges img { width: auto; max-width: 112px; max-height: 38px; object-fit: contain; }
.legal-badges p { max-width: 380px; }
.legal-copy { max-width: 1160px; margin: 22px auto 0; text-align: center; }
.legal-links { margin-top: 20px; display: flex; justify-content: center; gap: 25px; }
.legal-links a { color: #b7bbb7; text-decoration: underline; }

.mobile-bottom-nav { display: none; }
.bet-slip {
  position: fixed;
  z-index: 105;
  right: 18px;
  bottom: 18px;
  width: 330px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #242524;
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: transform .25s, opacity .25s;
}
.bet-slip.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.slip-head { display: flex; align-items: center; justify-content: space-between; }
.slip-head button { border: 0; background: transparent; font-size: 24px; cursor: pointer; }
.slip-empty { padding: 30px 0; color: #969a96; text-align: center; font-size: 12px; }
.slip-items { display: grid; gap: 8px; max-height: 220px; overflow: auto; }
.slip-item { padding: 10px; display: grid; grid-template-columns: 1fr auto; gap: 4px; border-radius: 8px; background: #323332; font-size: 12px; }
.slip-item b { color: var(--green-bright); }
.slip-total { margin: 13px 0; padding-top: 12px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 12px; }
.slip-total b { color: var(--green-bright); font-size: 18px; }
.slip-cta { width: 100%; min-height: 42px; border: 0; border-radius: 8px; background: var(--green); font-weight: 900; cursor: pointer; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.login-modal {
  position: relative;
  width: min(410px, 100%);
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: #303130;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  transform: translateY(12px);
  transition: transform .2s;
}
.modal-backdrop.is-open .login-modal { transform: translateY(0); }
.login-modal > img { width: 155px; height: 42px; margin-bottom: 18px; object-fit: contain; }
.login-modal h2 { margin: 0; font-family: "Arial Narrow", Arial, sans-serif; font-size: 37px; }
.login-modal p { color: #aeb2ae; font-size: 12px; line-height: 1.45; }
.login-modal label { margin-top: 14px; display: grid; gap: 6px; color: #d8dbd8; font-size: 12px; }
.login-modal input { height: 43px; padding: 0 13px; border: 1px solid #555; border-radius: 8px; outline: none; background: #202120; color: #fff; }
.login-modal input:focus { border-color: var(--green); }
.modal-login { width: 100%; height: 43px; margin-top: 18px; border: 0; border-radius: 8px; background: var(--green); font-weight: 900; cursor: pointer; }
.login-modal > a { margin-top: 13px; display: block; color: var(--green-bright); text-align: center; font-size: 12px; }
.modal-close { position: absolute; right: 13px; top: 10px; border: 0; background: transparent; font-size: 27px; cursor: pointer; }
.toast {
  position: fixed;
  z-index: 160;
  left: 50%;
  bottom: 25px;
  max-width: min(430px, calc(100% - 32px));
  padding: 12px 17px;
  border-radius: 9px;
  background: #101110;
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1180px) {
  .desktop-nav a, .nav-dropdown { padding: 0 7px; font-size: 12px; }
  .brand { width: 155px; }
  .icon-button { display: none; }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .customer-care { max-width: 420px; }
}

@media (max-width: 900px) {
  body { padding-bottom: 64px; }
  .topbar { height: 58px; padding: 0 14px; }
  .brand { width: 142px; margin-right: auto; }
  .brand img { height: 37px; }
  .desktop-nav, .login-button, .register-button { display: none; }
  .menu-button { display: inline-grid; place-items: center; }
  .mobile-menu {
    position: fixed;
    z-index: 95;
    inset: 76px 0 auto;
    padding: 12px 16px 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    background: #252625;
    box-shadow: 0 20px 35px rgba(0,0,0,.35);
    transform: translateY(-130%);
    transition: transform .25s;
  }
  .mobile-menu.is-open { transform: translateY(0); }
  .mobile-menu a { padding: 13px; display: flex; justify-content: space-between; border-radius: 8px; background: #333; font-size: 13px; }
  .mobile-menu span { color: var(--green); }
  main { padding-top: 76px; }
  .hero-shell { margin-top: 12px; grid-template-columns: 1fr; }
  .hero-shell { height: auto; }
  .hero-stage { min-height: 410px; height: 410px; }
  .hero-previews { display: none; }
  .hero-copy { width: 70%; }
  .hero-arrow--left { left: 5px; }
  .hero-arrow--right { right: 5px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-layout { grid-template-columns: 1fr; }
  .league-panel { display: grid; grid-template-columns: 220px 1fr; }
  .league-title, .sport-tabs, .all-events { grid-column: 1; }
  .league-list { grid-column: 2; grid-row: 1 / 4; }
  .promo-rail { grid-auto-columns: 29%; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .responsible-section { padding-right: 40%; }
  .responsible-art { right: 1vw; width: 38%; }
  .responsible-art b { right: 0; }
  .footer-columns { grid-template-columns: repeat(3, 1fr); }
  .mobile-bottom-nav {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    height: calc(62px + env(safe-area-inset-bottom));
    padding: 5px 5px env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #202120;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .mobile-bottom-nav a, .mobile-bottom-nav button {
    position: relative;
    padding: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 0;
    background: transparent;
    color: #a9ada9;
    font-size: 12px;
  }
  .mobile-bottom-nav span { color: #ebedeb; font-size: 20px; }
  .mobile-bottom-nav b { position: absolute; top: 1px; right: calc(50% - 20px); min-width: 18px; height: 18px; display: grid; place-items: center; border-radius: 9px; background: var(--green); color: #fff; font-size: 12px; }
  .bet-slip { bottom: 72px; }
  .toast { bottom: 78px; }
}

@media (max-width: 640px) {
  .age-strip { justify-content: flex-start; font-size: 12px; }
  .hero-shell { padding: 0 10px; }
  .hero-stage { min-height: 370px; height: 370px; border-radius: 13px; }
  .hero-slide > img { object-position: 63% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.45), transparent 45%); }
  .hero-copy { width: 100%; padding: 26px 30px; justify-content: flex-end; }
  .hero-arrow { width: 34px; height: 34px; font-size: 25px; }
  .hero-dots { left: 32px; transform: none; }
  .quick-grid { padding: 0 10px; gap: 9px; }
  .quick-card { min-height: 79px; padding: 14px; border-radius: 12px; }
  .quick-card small { display: none; }
  .quick-card h2 { font-size: 22px; }
  .quick-icon { font-size: 30px; }
  .content-section { margin-top: 10px; padding: 25px 10px; }
  .section-heading h2 { font-size: 29px; }
  .sports-layout { gap: 10px; }
  .league-panel { display: block; }
  .league-title, .sport-tabs, .league-list, .all-events { display: none; }
  .bet-cards { grid-auto-columns: 84%; }
  .bet-card { min-height: 300px; }
  .news-band { margin: 4px 10px; grid-template-columns: 105px 1fr; }
  .news-logo { padding: 0 9px; }
  .news-logo img { width: 75px; }
  .news-logo span { display: none; }
  .promo-rail { grid-auto-columns: 67%; }
  .heading-actions .text-button { display: none; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .game-card { aspect-ratio: 1.15 / 1; }
  .game-card h3 { font-size: 15px; }
  .game-card button { display: none; }
  .responsible-section { min-height: 460px; padding: 45px 22px 220px; align-items: flex-start; }
  .responsible-copy h2 { font-size: 39px; }
  .responsible-art { inset: auto 0 0; width: 100%; height: 230px; }
  .responsible-art img { height: 220px; }
  .responsible-art b { top: 15px; right: 25px; font-size: 62px; }
  .orbit-one { width: 230px; height: 230px; top: 0; }
  .orbit-two { width: 160px; height: 160px; top: 35px; }
  .payment-bar { align-items: flex-start; flex-direction: column; gap: 12px; }
  .payment-list { flex-wrap: nowrap; width: 100%; overflow-x: auto; padding-bottom: 5px; }
  .payment-list span { flex: 0 0 auto; }
  .footer-main { padding: 25px 18px; gap: 24px; }
  .footer-columns { display: block; }
  .footer-column { border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-title { min-height: 48px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
  .footer-title span { display: inline; transition: transform .2s; }
  .footer-column.is-open .footer-title span { transform: rotate(180deg); }
  .footer-links { max-height: 0; margin: 0; overflow: hidden; transition: max-height .25s, margin .25s; }
  .footer-column.is-open .footer-links { max-height: 260px; margin: 0 0 15px; }
  .customer-care { max-width: none; }
  .legal-badges { align-items: flex-start; flex-wrap: wrap; }
  .legal-badges p { width: 100%; text-align: center; }
  .legal-links { flex-wrap: wrap; gap: 12px 20px; }
  .bet-slip { left: 10px; right: 10px; bottom: 72px; width: auto; }
  .casino-longread {
    margin: 26px 10px 42px;
    padding: 30px 20px;
    border-radius: 12px;
  }
  .casino-longread__intro { margin-bottom: 24px; }
  .casino-longread h1 {
    margin-top: 7px;
    font-size: 35px;
  }
  .casino-longread__lead {
    font-size: 15px;
    line-height: 1.65;
  }
  .casino-longread section { padding: 25px 0 17px; }
  .casino-longread h2 { font-size: 25px; }
  .casino-longread p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Reference-aligned first screen */
.mobile-auth-row,
.mobile-cart { display: none; }

@media (min-width: 901px) {
  .topbar {
    height: 70px;
    gap: 28px;
    padding-inline: 35px 22px;
  }
  .brand { width: 158px; }
  .brand img { height: 43px; }
  main { padding-top: 88px; }

  .hero-shell {
    --hero-card-w: min(806px, 40vw);
    --hero-card-h: min(403px, 20vw);
    width: 100%;
    max-width: none;
    height: var(--hero-card-h);
    margin: 22px 0 0;
    padding: 0;
    display: block;
    overflow: hidden;
  }
  .hero-stage {
    width: 100%;
    height: var(--hero-card-h);
    min-height: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .hero-slide {
    position: absolute;
    inset: 0 auto auto calc(50% - min(403px, 20vw));
    width: var(--hero-card-w);
    height: var(--hero-card-h);
    opacity: .82;
    pointer-events: auto;
    transform: none;
    transition: transform .5s ease, opacity .4s ease;
  }
  .hero-slide.is-active {
    z-index: 3;
    left: calc(50% - min(403px, 20vw));
    opacity: 1;
    transform: none;
  }
  .hero-slide.is-prev {
    z-index: 2;
    left: calc(50% - min(403px, 20vw) - var(--hero-card-w) - 14px);
    transform: none;
  }
  .hero-slide.is-next {
    z-index: 2;
    left: calc(50% + min(403px, 20vw) + 14px);
    transform: none;
  }
  .hero-slide picture,
  .hero-slide picture img {
    width: 100%;
    height: 100%;
  }
  .hero-slide picture img {
    object-fit: cover;
    border-radius: 7px;
  }
  .hero-copy {
    inset: auto 0 0;
    width: 100%;
    height: 75px;
    padding: 0 18px 18px;
    align-items: flex-end;
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(0,0,0,.27), transparent);
  }
  .hero-copy button {
    min-height: 34px;
    padding-inline: 20px;
    border-radius: 7px;
    font-size: 12px;
  }
  .hero-arrow,
  .hero-dots { display: none; }

  .quick-grid {
    width: calc(100% - 32px);
    max-width: 1056px;
    margin: 42px auto 0;
    padding: 0;
    gap: 14px;
  }
  .quick-card {
    min-height: 56px;
    height: 56px;
    padding: 10px 17px;
    border-radius: 12px;
  }
  .quick-card small { display: none; }
  .quick-card h2 { margin: 0; font-size: 18px; }
  .quick-icon { font-size: 34px; }

  .content-section {
    width: calc(100% - 32px);
    max-width: 1056px;
    padding-inline: 0;
  }
  .sports-section { margin-top: 30px; padding-top: 0; }
  .sports-section .section-heading { margin-bottom: 7px; }
  .sports-section .section-heading .eyebrow,
  .sports-section .section-controls { display: none; }
  .sports-section .section-heading h2 {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
  }
  .sports-section .section-heading h2::before {
    content: "♨ ";
    color: #d9ddda;
  }
  .sports-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .bet-cards {
    order: 1;
    display: block;
    overflow: visible;
  }
  .bet-card { display: none; }
  .bet-card:first-child {
    position: relative;
    min-height: 250px;
    height: 250px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 410px;
    grid-template-rows: 44px 1fr;
    overflow: hidden;
    border-radius: 8px;
    background:
      radial-gradient(ellipse at 60% 60%, rgba(0,104,91,.34), transparent 46%),
      linear-gradient(115deg, #00131c 0%, #001923 45%, #001018 100%);
  }
  .bet-card:first-child::after {
    content: "";
    position: absolute;
    inset: 44px 0 0 43%;
    opacity: .12;
    background: radial-gradient(circle, #21c723 0 1px, transparent 2px) 0 0 / 12px 12px;
    pointer-events: none;
  }
  .bet-topline {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .bet-topline span {
    padding: 6px 10px;
    border-radius: 14px;
    background: #249a59;
    color: #fff;
    font-size: 12px;
  }
  .bet-topline time { color: #c7cbca; font-size: 12px; }
  .bet-market-left {
    position: relative;
    z-index: 1;
    padding: 62px 14px 20px;
  }
  .competition { margin: 0 0 15px; color: #d5d9d7; font-size: 12px; }
  .team-line {
    margin: 11px 0;
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
  }
  .team-line span { font-size: 22px; }
  .bet-market-right {
    position: relative;
    z-index: 2;
    align-self: center;
    margin-right: 14px;
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid #637277;
    border-radius: 7px;
    background: rgba(0,9,13,.55);
  }
  .bet-market-right p {
    min-height: auto;
    margin: 0 0 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .market-answer { font-size: 12px; font-weight: 800; }
  .bet-market-right .odd-row {
    margin: 26px 0 8px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
  .bet-market-right .odd-row span { color: #7bd9b8; font-size: 18px; }
  .bet-market-right .odd-row strong { font-size: 23px; }
  .bet-market-right .win-button { min-height: 36px; margin: 0; font-size: 12px; }
  .bet-dots {
    order: 2;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }
  .bet-dots span,
  .bet-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a4a7a4;
  }
  .bet-dots span { width: 20px; border-radius: 5px; background: var(--green); }
  .league-panel {
    order: 3;
    min-height: 52px;
    display: block;
    border: 1px solid #606261;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
  }
  .league-panel > *:not(.league-title) { display: none; }
  .league-title { min-height: 52px; border: 0; font-style: italic; }
  .league-title b { display: none; }
}

@media (max-width: 900px) {
  .age-strip { display: none; }
  body { padding-bottom: 62px; }
  .topbar {
    inset: 0 0 auto;
    height: 55px;
    padding: 0 13px;
    justify-content: center;
  }
  .brand {
    position: relative;
    z-index: 2;
    width: 205px;
    margin: 0;
  }
  .brand img { height: 47px; }
  .top-actions {
    position: absolute;
    inset: 0 13px;
    pointer-events: none;
  }
  .top-actions > * { pointer-events: auto; }
  .menu-button {
    position: absolute;
    left: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 27px;
  }
  .mobile-cart {
    position: absolute;
    right: 0;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
  }
  .mobile-cart b {
    position: absolute;
    top: 2px;
    right: -1px;
    min-width: 18px;
    height: 18px;
    padding: 0 3px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #e93450;
    font-size: 12px;
  }
  .mobile-menu { inset: 55px 0 auto; }
  .mobile-auth-row {
    margin-top: 55px;
    padding: 13px 13px 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: var(--bg);
  }
  .mobile-auth-row button {
    height: 43px;
    border: 0;
    border-radius: 10px;
    background: var(--green);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
  }
  .mobile-auth-row button + button { background: #299a59; }
  main { padding-top: 0; }

  .hero-shell {
    width: auto;
    height: auto;
    margin: 12px 13px 0;
    padding: 0;
    display: block;
    overflow: visible;
  }
  .hero-stage {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 7px;
    box-shadow: none;
  }
  .hero-slide,
  .hero-slide.is-prev,
  .hero-slide.is-next,
  .hero-slide.is-active {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: none;
    pointer-events: none;
  }
  .hero-slide.is-active { opacity: 1; pointer-events: auto; }
  .hero-slide picture,
  .hero-slide picture img {
    width: 100%;
    height: 100%;
  }
  .hero-slide picture img {
    object-fit: cover;
    border-radius: 7px;
  }
  .hero-copy,
  .hero-arrow,
  .hero-dots { display: none; }

  .quick-grid {
    width: auto;
    margin: 52px 18px 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .quick-card {
    min-height: 143px;
    height: 143px;
    padding: 18px 19px;
    align-items: flex-start;
    border-radius: 8px;
  }
  .quick-card small { display: none; }
  .quick-card h2 {
    margin: 0;
    max-width: 165px;
    font-size: clamp(34px, 8.4vw, 42px);
    line-height: 1.15;
  }
  .quick-icon {
    position: absolute;
    right: -6px;
    bottom: -8px;
    font-size: 76px;
  }
  .quick-icon.signal { font-size: 55px; }
  .content-section {
    width: auto;
    margin-inline: 18px;
    padding-inline: 0;
  }
  .sports-section { margin-top: 40px; padding-top: 0; }
  .sports-section .section-heading { margin-bottom: 10px; }
  .sports-section .section-heading .eyebrow,
  .sports-section .section-controls { display: none; }
  .sports-section .section-heading h2 {
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-style: italic;
  }
  .sports-section .section-heading h2::before { content: "♨ "; }
  .league-panel { display: none; }
  .bet-cards { display: grid; }
  .bet-dots { display: none; }

  .mobile-bottom-nav {
    height: 62px;
    grid-template-columns: repeat(6, 1fr);
    padding-top: 3px;
    background: rgba(48,49,49,.98);
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    gap: 1px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .mobile-bottom-nav span { font-size: 25px; }
  .mobile-live { position: relative; }
  .mobile-live b {
    position: absolute;
    top: 4px;
    right: 15px;
    width: 7px;
    min-width: 7px;
    height: 7px;
    padding: 0;
    border-radius: 50%;
    background: #f0364e;
  }
  .bet-slip { bottom: 72px; }
}
