:root {
  --orange: #ff6600;
  --orange-dark: #ec5d00;
  --green: #36bd3b;
  --ink: #101626;
  --muted: #6c7280;
  --soft: #f4f5f7;
  --line: #e5e7ec;
  --provider: #293341;
  --shell: 1720px;
  --hero-offset: 82px;
  --hero-peek: 174px;
  --footer-height: 220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.mobile-only,
.mobile-header,
.mobile-match {
  display: none;
}

.legal-strip {
  height: 28px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #5b606b;
  font-size: 12px;
  line-height: 1;
}

.legal-copy {
  white-space: nowrap;
}

.legal-marks {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--orange);
}

.mini-mark {
  min-width: 22px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #d9dde6;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.mini-mark.adm {
  width: auto;
  padding: 0 4px;
  border-radius: 3px;
  color: #1672b8;
}

.desktop-mainbar {
  height: 73px;
  background: var(--orange);
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  padding: 0 13px 0 13px;
  color: #fff;
}

.brand {
  width: 117px;
  align-self: start;
  margin-top: 12px;
}

.primary-nav {
  align-self: end;
  display: flex;
  gap: 20px;
  padding-bottom: 12px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.primary-nav a:first-child {
  color: #fff;
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  align-self: start;
  padding-top: 12px;
}

.btn-login,
.btn-register {
  height: 27px;
  min-width: 80px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, .8);
  color: #fff;
  background: rgba(255, 255, 255, .04);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.btn-register {
  background: #25ad36;
  border-color: #25ad36;
}

.icon-button {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: #18202b;
  position: relative;
  cursor: pointer;
}

.wheel-button::before,
.mobile-icon.wheel::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 3px solid #fff;
  background:
    linear-gradient(90deg, transparent 47%, #fff 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, #fff 47% 53%, transparent 53%),
    radial-gradient(circle at center, #ff7a00 0 33%, transparent 34%);
}

.support-button::before {
  content: "";
  position: absolute;
  inset: 6px 5px 4px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50% 50% 45% 45%;
}

.desktop-hero {
  width: 100%;
  overflow: hidden;
  padding-top: 16px;
  background: #fff;
}

.hero-rail {
  display: flex;
  gap: 8px;
  width: calc(100% + var(--hero-offset));
  margin-left: calc(-1 * var(--hero-offset));
  min-width: 0;
}

.hero-tile {
  flex: 1 1 0;
  aspect-ratio: 2400 / 900;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}

.hero-peek {
  flex: 0 0 var(--hero-peek);
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-peek img {
  width: max(100%, 760px);
  max-width: none;
  object-position: left center;
}

.hero-dots {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5d5d5;
}

.hero-dots .active {
  background: var(--orange);
}

.page-shell {
  max-width: var(--shell);
  width: clamp(1080px, 67.2vw, var(--shell));
  margin: 0 auto;
}

.content-section {
  margin-top: 22px;
}

.section-title {
  margin: 0 0 12px;
  color: #151b2c;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.chip-row,
.scroll-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar,
.scroll-strip::-webkit-scrollbar {
  display: none;
}

.trend-chip {
  flex: 0 0 auto;
  min-width: 92px;
  height: 25px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 4px;
  background: #f2f2f3;
  color: #394051;
  font-size: 12px;
  white-space: nowrap;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 4px;
  border: 2px solid #222;
  border-radius: 3px;
  color: var(--orange);
  background: #fff;
  font-weight: 900;
  font-size: 12px;
  font-style: italic;
}

.ball-icon,
.medal-icon,
.crest-icon,
.sport-ball,
.paddle-icon,
.cycle-icon,
.orange-disc,
.blue-dot,
.green-dot,
.cup-icon {
  flex: 0 0 auto;
  display: inline-block;
  position: relative;
}

.ball-icon,
.sport-ball,
.orange-disc {
  width: 16px;
  height: 16px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: #fff;
}

.ball-icon::before,
.sport-ball::before {
  content: "";
  position: absolute;
  inset: 4px -2px auto;
  height: 2px;
  background: var(--orange);
  transform: rotate(-25deg);
}

.medal-icon {
  width: 18px;
  height: 20px;
}

.medal-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--orange);
}

.medal-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 8px;
  height: 10px;
  background: linear-gradient(45deg, #20242b 0 45%, transparent 46%), linear-gradient(-45deg, #20242b 0 45%, transparent 46%);
}

.crest-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px 4px 7px 7px;
  border: 2px solid var(--orange);
}

.odds-strip {
  gap: 12px;
}

.boost-card {
  flex: 0 0 calc((100% - 24px) / 3);
  min-height: 112px;
  padding: 12px 13px 10px;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78) 0 58%, rgba(230, 232, 238, .8) 59%),
    #eef0f4;
  position: relative;
  overflow: hidden;
}

.boost-card::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 20px;
  width: 88px;
  height: 88px;
  background: rgba(206, 210, 219, .45);
  clip-path: polygon(42% 0, 100% 0, 100% 58%, 80% 37%, 42% 76%, 25% 59%, 64% 21%);
}

.boost-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.boost-head span::before {
  content: "\2197";
  margin-right: 4px;
}

.boost-head time {
  color: #8e94a2;
  text-transform: none;
  font-weight: 600;
}

.boost-card h3 {
  margin: 22px 0 13px;
  font-size: 15px;
  line-height: .98;
  position: relative;
  z-index: 1;
}

.boost-card p {
  margin: 0;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.boost-odd {
  position: absolute;
  right: 15px;
  bottom: 12px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  z-index: 1;
}

.boost-odd b {
  min-width: 55px;
  padding: 5px 6px;
  border-radius: 2px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.boost-odd small {
  color: #151515;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.match-strip {
  gap: 12px;
}

.match-card {
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: 0;
  height: 138px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #111;
  color: #fff;
}

.match-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.match-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 7, 12, .82), rgba(5, 8, 13, .22) 70%), linear-gradient(0deg, rgba(0, 0, 0, .45), transparent 45%);
}

.match-info {
  position: absolute;
  left: 12px;
  top: 10px;
  z-index: 1;
}

.match-info span {
  color: rgba(255, 255, 255, .72);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.match-info h3 {
  margin: 11px 0 8px;
  font-size: 17px;
  line-height: 1.05;
}

.match-info p {
  margin: 0;
  color: #349bff;
  font-size: 12px;
}

.match-odds {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 7px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 2px;
}

.match-odds b {
  height: 34px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  color: #111;
  background: rgba(255, 255, 255, .95);
  border-right: 1px solid #ddd;
  font-size: 12px;
}

.match-odds b:last-child {
  border-right: 0;
}

.match-odds span {
  font-weight: 500;
  color: #4c4f58;
}

.sport-tabs {
  display: flex;
  align-items: center;
  gap: 21px;
  border-bottom: 1px solid #d8dbe1;
}

.sport-tabs button {
  height: 32px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #333949;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.sport-tabs button.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.sport-tabs img {
  width: 18px;
  height: 18px;
}

.paddle-icon {
  width: 17px;
  height: 17px;
  border: 2px solid #1b1e25;
  border-radius: 50%;
}

.paddle-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -5px;
  bottom: -2px;
  background: #1b1e25;
  transform: rotate(45deg);
}

.cycle-icon {
  width: 18px;
  height: 10px;
  border-bottom: 2px solid #1b1e25;
}

.tournament-row {
  min-height: 49px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
}

.tournament-row a {
  min-width: 160px;
  height: 27px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #424858;
  font-size: 12px;
}

.cup-icon {
  width: 18px;
  height: 18px;
}

.cup-icon::before {
  content: "";
  position: absolute;
  inset: 1px 5px 5px;
  background: #f6cc22;
  clip-path: polygon(30% 0, 70% 0, 100% 28%, 68% 60%, 68% 86%, 100% 86%, 100% 100%, 0 100%, 0 86%, 32% 86%, 32% 60%, 0 28%);
}

.blue-dot,
.green-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #76a7ff;
}

.green-dot {
  background: #30c64a;
}

.quick-tabs {
  display: flex;
  gap: 16px;
  height: 24px;
  align-items: center;
  color: #5f6573;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.quick-tabs .active {
  color: var(--orange);
}

.small-tabs {
  border-bottom: 0;
  gap: 18px;
}

.small-tabs button {
  height: 27px;
  font-size: 12px;
}

.bet-table {
  border-top: 1px solid #edf0f3;
  background: #f4f5f7;
  font-size: 12px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 260px 1.1fr 1.1fr .9fr .9fr;
  align-items: center;
  gap: 0;
}

.table-head {
  height: 25px;
  color: #8b91a0;
  text-align: center;
}

.table-row {
  min-height: 45px;
  background: #fff;
}

.event-cell {
  padding-left: 24px;
  color: #4e5563;
}

.event-cell strong {
  font-weight: 700;
}

.event-cell small {
  display: block;
  color: #3486e6;
}

.odd-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(52px, 1fr);
  height: 45px;
}

.odd-grid b {
  display: grid;
  place-items: center;
  align-content: center;
  color: #2c3038;
  border-left: 1px solid #edf0f3;
  line-height: 1.2;
}

.lock-dot {
  display: inline-block;
  width: 10px;
  height: 12px;
  border-radius: 6px 6px 2px 2px;
  border: 2px solid #b7bbc4;
  position: relative;
}

.lock-dot::before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: -7px;
  height: 7px;
  border: 2px solid #b7bbc4;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.show-all {
  width: 100%;
  height: 27px;
  border: 0;
  background: #fff;
  color: #333844;
  font-size: 12px;
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #e4e6eb;
  border-radius: 4px;
  overflow: hidden;
}

.category-grid a {
  height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-right: 1px solid #e4e6eb;
  color: #3f4655;
  font-size: 12px;
}

.category-grid a:last-child {
  border-right: 0;
}

.category-grid img {
  width: 23px;
  height: 23px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.section-heading .section-title {
  margin: 0;
}

.section-heading a {
  min-width: 36px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: 4px;
  color: var(--orange);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.game-strip {
  gap: 13px;
}

.game-card {
  flex: 0 0 128px;
  height: 128px;
  border-radius: 7px;
  overflow: hidden;
  background: #e6e8ee;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.providers-section {
  margin-top: 27px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 13px;
}

.provider-grid a {
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--provider);
  overflow: hidden;
}

.provider-grid img {
  max-width: 78%;
  max-height: 74%;
}

.promo-strip {
  gap: 10px;
}

.promo-card {
  flex: 0 0 206px;
  height: 257px;
  overflow: hidden;
  border-radius: 7px;
  background: #111;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-block {
  margin: 32px auto 24px;
  color: #101626;
  font-size: 12px;
  line-height: 1.35;
}

.seo-block h1 {
  margin: 0 0 7px;
  font-size: 23px;
  line-height: 1.15;
}

.seo-block h2 {
  margin: 12px 0 4px;
  font-size: 18px;
}

.seo-block h3 {
  margin: 13px 0 5px;
  font-size: 15px;
}

.seo-block p {
  margin: 0 0 9px;
}

.seo-block a {
  color: var(--orange);
  font-weight: 700;
}

.seo-links {
  margin: 0;
  padding-left: 18px;
  color: var(--orange);
}

.seo-links li {
  margin: 2px 0;
}

.seo-faq {
  margin-top: 18px;
}

.seo-faq details {
  border-top: 1px solid var(--line);
  padding: 10px 0;
}

.seo-faq details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.seo-faq summary {
  cursor: pointer;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.seo-faq summary::marker {
  color: var(--orange);
}

.seo-faq p {
  margin: 7px 0 0;
}

.seo-toggle {
  display: block;
  margin: 28px auto 0;
  border: 0;
  background: transparent;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.footer-opener {
  position: fixed;
  right: 12px;
  bottom: 14px;
  z-index: 80;
  height: 26px;
  padding: 0 17px;
  border: 0;
  background: var(--orange);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  transition: bottom .28s ease;
}

body.footer-is-open .footer-opener {
  bottom: calc(var(--footer-height) + 8px);
}

.top-button {
  position: fixed;
  right: 18px;
  bottom: 91px;
  z-index: 19;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 18px;
  background: var(--orange);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.top-button.visible {
  opacity: 1;
  pointer-events: auto;
}

.top-button::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 13px;
  height: 13px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  min-height: var(--footer-height);
  border-top: 2px solid var(--orange);
  background: #2d3844;
  color: #d6dbe2;
  font-size: 12px;
  transform: translateY(100%);
  transition: transform .28s ease;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, .18);
}

body.footer-is-open .site-footer {
  transform: translateY(0);
}

.footer-inner {
  width: min(960px, calc(100% - 56px));
  min-height: var(--footer-height);
  margin: 0 auto;
  padding: 18px 0 14px;
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 45px;
  align-items: start;
}

.footer-responsibility h2,
.footer-nav h2 {
  margin: 0 0 8px;
  color: #f0f2f5;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-responsibility {
  min-height: 135px;
}

.footer-logos {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-mark {
  color: #eef2f6;
  font-weight: 900;
  opacity: .95;
}

.sail-mark {
  width: 50px;
  height: 30px;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 12px;
}

.sail-mark::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 2px;
  height: 22px;
  border: 3px solid #d6dbe2;
  border-top: 0;
  border-radius: 0 0 50% 50%;
  transform: rotate(-10deg);
}

.sail-mark::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 2px;
  width: 31px;
  height: 26px;
  background: linear-gradient(48deg, transparent 47%, #d6dbe2 48% 52%, transparent 53%),
    linear-gradient(-36deg, transparent 45%, #d6dbe2 46% 51%, transparent 52%);
}

.adm-mark {
  font-size: 26px;
  letter-spacing: .03em;
}

.adm-mark::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
  border: 3px solid #d6dbe2;
  border-radius: 50%;
}

.age-mark {
  width: 39px;
  height: 39px;
  display: inline-grid;
  place-items: center;
  border: 3px solid #d6dbe2;
  border-radius: 50%;
  font-size: 18px;
}

.footer-responsibility p {
  max-width: 270px;
  margin: 20px 0 0;
  text-transform: uppercase;
  color: #d6dbe2;
  font-weight: 800;
  line-height: 1.35;
}

.footer-nav {
  display: grid;
  grid-template-columns: .72fr 1.4fr 1.04fr 1.45fr;
  gap: 34px;
}

.footer-nav section {
  display: flex;
  flex-direction: column;
}

.footer-nav a {
  color: #d6dbe2;
  font-weight: 750;
  line-height: 1.62;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-legal {
  grid-column: 1 / -1;
  max-width: 960px;
  margin: 10px auto 0;
  color: #e2e6eb;
  text-align: center;
  font-weight: 850;
  line-height: 1.22;
}

@media (max-width: 1500px) {
  .page-shell {
    max-width: 1080px;
    width: calc(100% - 40px);
  }

  .hero-rail {
    width: calc(100% + 74px);
    margin-left: -74px;
  }

  .hero-tile {
    flex-basis: 0;
    height: auto;
  }

  .hero-peek {
    flex-basis: 142px;
  }

  .game-card {
    flex-basis: 112px;
    height: 112px;
  }
}

@media (min-width: 768px) {
  .game-cats {
    margin-top: 36px;
  }

  .carousel-section,
  .providers-section {
    margin-top: 46px;
  }

  .seo-block {
    margin-top: 54px;
    line-height: 1.44;
  }
}

@media (max-width: 767px) {
  body {
    padding: 107px 0 66px;
    background: #fff;
  }

  .desktop-header,
  .desktop-only,
  .desktop-match,
  .desktop-mostly {
    display: none !important;
  }

  .mobile-only,
  .mobile-header,
  .mobile-match {
    display: block;
  }

  .mobile-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: 107px;
    background: var(--orange);
    color: #fff;
  }

  .mobile-top {
    height: 53px;
    display: grid;
    grid-template-columns: 36px 36px 45px 1fr 42px;
    align-items: center;
    gap: 3px;
    padding: 0 10px;
  }

  .mobile-brand {
    justify-self: center;
    width: 123px;
  }

  .mobile-icon {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    position: relative;
  }

  .burger::before,
  .burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #fff;
    box-shadow: 0 8px 0 #fff;
  }

  .burger::before {
    top: 10px;
  }

  .burger::after {
    top: 26px;
    box-shadow: none;
  }

  .search::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 4px;
    width: 22px;
    height: 22px;
    border: 3px solid #fff;
    border-radius: 50%;
  }

  .search::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 25px;
    width: 13px;
    height: 3px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 3px;
  }

  .mobile-icon.wheel {
    background: #1f2228;
    border-radius: 50%;
  }

  .user::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
  }

  .user::after {
    content: "";
    position: absolute;
    left: 5px;
    bottom: 5px;
    width: 28px;
    height: 14px;
    border-radius: 15px 15px 4px 4px;
    background: #fff;
  }

  .mobile-actions {
    height: 54px;
    padding: 0 10px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .mobile-login,
  .mobile-register {
    border-radius: 4px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
  }

  .mobile-login {
    border: 1px solid #fff;
    background: transparent;
  }

  .mobile-register {
    border: 1px solid var(--green);
    background: var(--green);
  }

  .mobile-join {
    position: relative;
    height: 180px;
    margin: 19px 10px 11px;
    padding: 22px 16px;
    overflow: hidden;
    border-radius: 11px;
    background:
      radial-gradient(circle at 24% 45%, rgba(255, 255, 255, .12) 0 24%, transparent 25%),
      linear-gradient(135deg, #ff3716 0%, #ff6600 49%, #ff8d00 100%);
    color: #fff;
    text-align: center;
  }

  .mobile-join::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 0 48%, rgba(255, 255, 255, .08) 49% 50%, transparent 51%);
  }

  .mobile-join p,
  .mobile-join h1,
  .mobile-join button {
    position: relative;
    z-index: 1;
  }

  .mobile-join p {
    margin: 0 0 4px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 900;
  }

  .mobile-join h1 {
    margin: 0;
    font-size: 33px;
    line-height: 1.07;
    font-weight: 900;
  }

  .mobile-join button {
    min-width: 145px;
    height: 32px;
    margin-top: 8px;
    border: 0;
    border-radius: 4px;
    background: #25be32;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
  }

  .page-shell {
    max-width: none;
    width: 100%;
    margin: 0;
    overflow: hidden;
  }

  .content-section {
    margin-top: 17px;
    padding: 0 0 0 10px;
  }

  .section-title {
    margin-bottom: 9px;
    font-size: 20px;
    line-height: 1.2;
  }

  .chip-row,
  .scroll-strip {
    padding-right: 10px;
    gap: 9px;
  }

  .trend-chip {
    min-width: auto;
    height: 47px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 18px;
  }

  .live-badge {
    height: 23px;
    font-size: 12px;
  }

  .ball-icon,
  .sport-ball,
  .orange-disc {
    width: 22px;
    height: 22px;
  }

  .odds-strip {
    gap: 9px;
  }

  .boost-card {
    flex: 0 0 420px;
    height: 145px;
    padding: 14px 14px;
    border-radius: 8px;
  }

  .boost-head {
    font-size: 16px;
  }

  .boost-head time {
    font-size: 14px;
  }

  .boost-card h3 {
    margin: 26px 0 20px;
    font-size: 18px;
    line-height: .98;
  }

  .boost-card p {
    font-size: 16px;
  }

  .boost-odd {
    right: 14px;
    bottom: 15px;
  }

  .boost-odd b {
    min-width: 82px;
    padding: 8px 9px;
    font-size: 20px;
    border-radius: 7px 0 0 7px;
  }

  .boost-odd small {
    font-size: 12px;
  }

  .match-card {
    flex: 0 0 420px;
    height: 173px;
    border-radius: 10px;
  }

  .match-info {
    left: 10px;
    top: 11px;
  }

  .match-info span {
    font-size: 12px;
  }

  .match-info h3 {
    margin: 14px 0 10px;
    font-size: 21px;
  }

  .match-info p {
    font-size: 13px;
  }

  .match-odds {
    left: 8px;
    right: 8px;
    bottom: 10px;
  }

  .match-odds b {
    height: 45px;
    font-size: 16px;
  }

  .schedule-section {
    padding-right: 0;
  }

  .sport-tabs {
    gap: 23px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sport-tabs::-webkit-scrollbar {
    display: none;
  }

  .sport-tabs button {
    height: 41px;
    padding-bottom: 9px;
    font-size: 14px;
  }

  .sport-tabs img {
    width: 21px;
    height: 21px;
  }

  .tournament-row {
    margin-left: -10px;
    min-height: 84px;
    padding: 13px 0 13px 10px;
    gap: 16px;
    overflow-x: auto;
  }

  .tournament-row a {
    min-width: 230px;
    height: 56px;
    padding: 0 18px;
    font-size: 17px;
  }

  .cup-icon {
    width: 27px;
    height: 27px;
  }

  .game-cats,
  .carousel-section,
  .providers-section,
  .seo-block {
    padding-right: 10px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid a {
    height: 82px;
  }

  .game-card {
    flex: 0 0 112px;
    height: 112px;
  }

  .provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-card {
    flex-basis: 145px;
    height: 181px;
  }

  .seo-block {
    padding: 0 10px;
  }

  .bottom-nav {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    height: 49px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #fff;
    border-top: 1px solid #c8ccd4;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, .08);
  }

  .bottom-nav a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    color: #1c2230;
    font-size: 12px;
  }

  .bottom-nav span {
    width: 24px;
    height: 24px;
    position: relative;
  }

  .nav-ball {
    border: 2px solid var(--orange);
    border-radius: 50%;
  }

  .nav-live::before {
    content: "LIVE";
    position: absolute;
    inset: 5px 0 auto;
    border: 2px solid #1f2530;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
  }

  .nav-casino::before,
  .nav-gift::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 2px solid var(--orange);
    border-radius: 3px;
  }

  .nav-casino::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1f2530;
  }

  .nav-more::before {
    content: "";
    position: absolute;
    inset: 3px;
    border: 2px solid var(--orange);
    border-radius: 50%;
  }

  .nav-more::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 4px;
    height: 23px;
    background: var(--orange);
    transform: rotate(45deg);
  }

  .nav-gift::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 3px;
    width: 2px;
    height: 18px;
    background: var(--orange);
    box-shadow: -8px 6px 0 -1px var(--orange), 8px 6px 0 -1px var(--orange);
  }

  .bet-slip {
    position: fixed;
    right: 12px;
    bottom: 59px;
    z-index: 61;
    width: 66px;
    height: 66px;
    border: 0;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 6px 17px rgba(0, 0, 0, .32);
  }

  .bet-slip span {
    display: block;
    width: 19px;
    height: 22px;
    margin: 4px auto 1px;
    border: 2px solid #fff;
    border-radius: 2px;
    position: relative;
  }

  .bet-slip span::before {
    content: "";
    position: absolute;
    left: 4px;
    top: -5px;
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--orange);
  }

  .footer-opener,
  .top-button {
    display: none;
  }
}

@media (max-width: 410px) {
  .mobile-join h1 {
    font-size: 29px;
  }

  .boost-card,
  .match-card {
    flex-basis: calc(100vw - 58px);
  }
}
