:root {
  --green: #7bf037;
  --green-dark: #176800;
  --yellow: #fce403;
  --orange: #fc6200;
  --bg: #171717;
  --panel: #1f1f1f;
  --panel-dark: #101010;
  --panel-soft: #232323;
  --line: #2d2d2d;
  --text: #ffffff;
  --muted: #a9a9a9;
  --dim: #717171;
  --black: #000000;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "RobotoRegular", "defaultRegular", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
  letter-spacing: 0;
}

.sport-shell {
  display: grid;
  grid-template-columns: 230px minmax(420px, 1fr) 380px;
  grid-template-rows: 54px calc(100vh - 54px);
  min-height: 100vh;
  background: var(--bg);
}

.left-rail {
  grid-row: 1 / -1;
  background: #111111;
  border-right: 1px solid #282828;
  box-shadow: 8px 0 18px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.left-rail__inner {
  height: 100vh;
  overflow-y: auto;
  padding: 22px 14px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--dim) var(--panel-dark);
}

.brand-block {
  display: grid;
  justify-items: center;
  gap: 15px;
  padding-bottom: 24px;
}

.brand-block__logo {
  width: 76px;
  height: auto;
}

.profile-badge {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 2px solid var(--dim);
  border-radius: 50%;
  background: #171717;
  color: var(--dim);
  font-size: 35px;
  font-family: "defaultBold", Arial, sans-serif;
}

.guest-name {
  color: #d7d7d7;
  font-family: "RobotoBold", "defaultBold", Arial, sans-serif;
}

.login-mini {
  min-height: 24px;
  padding: 3px 10px;
  border: 1px solid var(--green);
  border-radius: 4px;
  background: transparent;
  color: var(--green);
  cursor: pointer;
}

.quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 14px;
}

.quick-links span {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--dim);
  font-size: 12px;
  border-bottom: 1px solid #222222;
}

.rail-nav {
  display: grid;
  gap: 10px;
}

.rail-group {
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
}

.rail-link {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  color: #cfcfcf;
  border-bottom: 1px solid #2b2b2b;
}

.rail-link:last-child {
  border-bottom: 0;
}

.rail-link__icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #414141;
  border-radius: 50%;
  color: #858585;
  font-size: 13px;
}

.rail-link.is-active {
  color: var(--green);
  background: rgba(123, 240, 55, 0.12);
  box-shadow: inset 0 0 0 1px rgba(123, 240, 55, 0.55);
}

.rail-link.is-active .rail-link__icon {
  color: var(--green);
  border-color: var(--green);
}

.rail-clock {
  margin-top: 16px;
  padding: 10px;
  color: var(--dim);
  text-align: center;
  border-top: 1px solid #242424;
}

.topbar {
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  background: #050505;
  border-bottom: 1px solid #303030;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.circle-tool {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #313131;
  border-radius: 50%;
  background: var(--panel-dark);
  color: #d1d1d1;
  font-size: 18px;
}

.cross-sell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.cross-sell a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  color: #c4c4c4;
  font-family: "AntonioBold", "defaultBold", Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.cross-sell a:first-child {
  color: #ffffff;
}

.cross-icon {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 2px solid #efefef;
  border-radius: 50%;
  color: var(--green);
  font-size: 14px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn {
  min-width: 100px;
  height: 34px;
  padding: 0 18px;
  border-radius: 20px;
  border: 2px solid var(--orange);
  background: transparent;
  color: var(--orange);
  font-family: "RobotoBlack", "defaultBold", Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.header-btn--primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.main-feed {
  grid-column: 2;
  grid-row: 2;
  overflow-y: auto;
  padding: 10px 18px 36px;
  scrollbar-width: thin;
  scrollbar-color: var(--dim) var(--panel-dark);
}

.betslip {
  grid-column: 3;
  grid-row: 2;
  background: #151515;
  border-left: 1px solid #2a2a2a;
  overflow: hidden;
}

.title-strip {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  background: #050505;
  color: var(--green);
  font-size: 15px;
}

.title-strip h1 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}

.sports-strip {
  position: relative;
  margin-top: 8px;
  padding: 10px 10px 18px;
  background: #111111;
  border: 1px solid #1f1f1f;
  overflow-x: auto;
}

.sports-list {
  display: flex;
  gap: 18px;
  min-width: max-content;
  margin: 0;
  padding: 0 0 10px;
  list-style: none;
}

.sport-tile {
  display: grid;
  justify-items: center;
  gap: 7px;
  width: 72px;
  color: #f2f2f2;
  text-align: center;
  font-size: 11px;
  line-height: 1.1;
}

.sport-tile__icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #050505;
  box-shadow: inset 0 0 0 2px #222222, 0 4px 16px rgba(0, 0, 0, 0.4);
}

.sport-tile__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.sports-strip::after {
  content: "";
  display: block;
  width: 47%;
  height: 6px;
  border-radius: 6px;
  background: var(--green);
}

.promo-stack {
  display: grid;
  gap: 4px;
  margin-top: 126px;
}

.promo-card {
  position: relative;
  min-height: 185px;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(22, 70, 15, 0.96), rgba(83, 134, 52, 0.9)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 12px);
  border: 1px solid #31551f;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 68%, rgba(0, 0, 0, 0.36) 68% 100%),
    radial-gradient(circle at 86% 35%, rgba(252, 98, 0, 0.38), transparent 22%);
}

.promo-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 680px;
  padding: 28px 30px;
}

.promo-kicker {
  color: #ffffff;
  font-family: "AntonioBold", "defaultBold", Arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.promo-title {
  margin: 0;
  color: var(--yellow);
  font-family: "AntonioBold", "defaultBold", Arial, sans-serif;
  font-size: 48px;
  line-height: 0.95;
  text-transform: uppercase;
}

.promo-subtitle {
  color: #ffffff;
  font-family: "AntonioBold", "defaultBold", Arial, sans-serif;
  font-size: 31px;
  text-transform: uppercase;
}

.promo-cta {
  justify-self: start;
  min-width: 150px;
  min-height: 40px;
  padding: 0 22px;
  border: 0;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--black);
  font-family: "RobotoBlack", "defaultBold", Arial, sans-serif;
  text-transform: uppercase;
}

.promo-card--boost {
  background:
    linear-gradient(90deg, rgba(40, 105, 25, 0.98), rgba(20, 70, 12, 0.92)),
    repeating-linear-gradient(0deg, rgba(252, 228, 3, 0.08) 0 5px, transparent 5px 18px);
}

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 4px;
}

.promo-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5f5f5f;
}

.promo-dots .is-active {
  background: var(--green);
}

.tabs {
  display: flex;
  gap: 28px;
  margin: 18px 0 12px;
  padding: 0;
  list-style: none;
  color: #cfcfcf;
  font-family: "RobotoBlack", "defaultBold", Arial, sans-serif;
  text-transform: uppercase;
}

.tabs li {
  padding-bottom: 9px;
}

.tabs .is-active {
  color: var(--green);
  border-bottom: 3px solid var(--green);
}

.widget-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 16px;
}

.widget {
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid #2d2d2d;
}

.widget__title {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  background: #0b0b0b;
  color: #ffffff;
  font-family: "RobotoBlack", "defaultBold", Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.match-card,
.popular-row {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #2b2b2b;
}

.match-card__head {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.score-row {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) repeat(4, 22px);
  align-items: center;
  gap: 6px;
  min-height: 26px;
}

.score-row span:not(:first-child) {
  color: #dcdcdc;
  text-align: center;
}

.match-status {
  color: var(--green);
  font-size: 12px;
}

.odds-row {
  display: flex;
  gap: 8px;
}

.odd-pill {
  display: grid;
  place-items: center;
  min-width: 62px;
  height: 38px;
  border-radius: 20px;
  background: radial-gradient(circle, var(--green) 58%, #1f1f1f 62%);
  color: #101010;
  font-family: "RobotoBlack", "defaultBold", Arial, sans-serif;
}

.popular-row {
  grid-template-columns: 32px 1fr auto;
  align-items: center;
}

.popular-row img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.popular-row__teams {
  display: grid;
  gap: 4px;
}

.popular-row__meta {
  color: var(--muted);
  font-size: 12px;
}

.popular-row__count {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #303030;
  color: var(--green);
  font-family: "RobotoBlack", "defaultBold", Arial, sans-serif;
}

.ticket-panel {
  height: 100%;
  padding: 8px 10px;
  overflow-y: auto;
}

.ticket-panel__title {
  display: grid;
  place-items: center;
  height: 36px;
  background: #050505;
  font-family: "RobotoBlack", "defaultBold", Arial, sans-serif;
}

.ticket-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin: 14px 0 0;
  padding: 0 12px;
  list-style: none;
  color: #ffffff;
  font-family: "RobotoBlack", "defaultBold", Arial, sans-serif;
  text-transform: uppercase;
}

.ticket-tabs li {
  padding: 8px 0 10px;
  text-align: center;
  border-bottom: 1px solid #333333;
}

.ticket-tabs .is-active {
  color: var(--green);
  border-bottom: 3px solid var(--green);
}

.ticket-count {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  color: #111111;
}

.bet-type-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: #747474;
}

.bet-type-tabs li {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 22px;
}

.bet-type-tabs .is-active {
  color: var(--green);
  border-color: var(--green-dark);
  background: rgba(123, 240, 55, 0.12);
}

.ticket-empty {
  position: relative;
  min-height: 170px;
  margin-top: 8px;
  padding: 28px 150px 28px 24px;
  background: #151515;
  border-top: 1px solid #3a3a3a;
  color: #ffffff;
  font-size: 13px;
}

.ticket-empty::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 26px;
  width: 120px;
  height: 38px;
  background: #2b2b2b;
}

.ticket-login {
  display: grid;
  place-items: center;
  min-height: 44px;
  margin-top: 18px;
  border-radius: 4px;
  background: var(--yellow);
  color: #000000;
  font-family: "RobotoBlack", "defaultBold", Arial, sans-serif;
  text-transform: uppercase;
}

.seo-block {
  margin-top: 28px;
  padding: 26px;
  background: #1b1b1b;
  border-top: 1px solid #303030;
  color: #efefef;
}

.longread {
  max-width: 1180px;
}

.seo-block h1,
.seo-block h2,
.seo-block h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "AntonioBold", "defaultBold", Arial, sans-serif;
  text-transform: uppercase;
}

.seo-block h1 {
  font-size: 34px;
  line-height: 1.12;
}

.seo-block h2 {
  font-size: 28px;
  margin-top: 28px;
}

.seo-block h3 {
  font-size: 20px;
}

.seo-block p,
.seo-block li {
  line-height: 1.65;
  color: #e1e1e1;
}

.seo-block a {
  color: var(--green);
  text-decoration: underline;
}

.longread .app-section {
  margin-top: 30px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.seo-grid + .seo-grid {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  background: #121212;
  border: 1px solid #2d2d2d;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badges img {
  height: 42px;
  width: auto;
}

.footer {
  margin-top: 0;
  padding: 26px;
  background: #0f0f0f;
  border-top: 1px solid #303030;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.footer__links a {
  color: #d5d5d5;
  text-decoration: underline;
}

.footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.footer__logos img {
  max-height: 48px;
  width: auto;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
}

.payment-logos img {
  max-height: 30px;
  width: auto;
  object-fit: contain;
}

.footer__address {
  margin: 18px 0 0;
  color: #c9c9c9;
  line-height: 1.55;
}

@media (max-width: 1220px) {
  .sport-shell {
    grid-template-columns: 220px minmax(0, 1fr);
    grid-template-rows: 54px auto auto;
  }

  .topbar {
    grid-column: 2;
  }

  .main-feed {
    grid-column: 2;
  }

  .betslip {
    display: none;
  }

  .promo-stack {
    margin-top: 46px;
  }
}

@media (max-width: 880px) {
  body {
    overflow: auto;
  }

  .sport-shell {
    display: block;
    min-height: 100vh;
  }

  .left-rail {
    position: static;
    border-right: 0;
  }

  .left-rail__inner {
    height: auto;
    padding: 14px;
  }

  .brand-block {
    grid-template-columns: auto 1fr auto;
    justify-items: start;
    align-items: center;
    padding-bottom: 12px;
  }

  .profile-badge,
  .quick-links,
  .rail-clock {
    display: none;
  }

  .rail-nav {
    display: flex;
    overflow-x: auto;
  }

  .rail-group {
    display: flex;
    min-width: max-content;
  }

  .rail-link {
    grid-template-columns: 24px auto;
    min-width: 142px;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 5;
    min-height: 54px;
    padding: 0 10px;
  }

  .circle-tool {
    display: none;
  }

  .cross-sell {
    gap: 8px;
  }

  .cross-sell a {
    font-size: 16px;
  }

  .topbar__actions {
    gap: 6px;
  }

  .header-btn {
    min-width: auto;
    padding: 0 12px;
    font-size: 12px;
  }

  .main-feed {
    height: auto;
    overflow: visible;
    padding: 10px;
  }

  .promo-stack {
    margin-top: 24px;
  }

  .promo-card__copy {
    padding: 22px 18px;
  }

  .promo-title {
    font-size: 34px;
  }

  .promo-subtitle {
    font-size: 22px;
  }

  .widget-grid,
  .seo-grid,
  .app-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-block {
    grid-template-columns: 1fr auto;
  }

  .guest-name {
    display: none;
  }

  .cross-sell a:not(:first-child) {
    display: none;
  }

  .promo-title {
    font-size: 29px;
  }

  .promo-kicker {
    font-size: 19px;
  }

  .promo-subtitle {
    font-size: 18px;
  }

  .tabs {
    gap: 18px;
    font-size: 12px;
  }

  .score-row {
    grid-template-columns: minmax(95px, 1fr) repeat(4, 18px);
  }

  .seo-block,
  .footer {
    padding: 18px 14px;
  }
}
