:root {
  --pwo-yellow: #fab615;
  --pwo-yellow-soft: #ffe480;
  --pwo-ink: #11151b;
  --pwo-panel: #171a1f;
  --pwo-panel-2: #20252e;
  --pwo-line: #363b44;
  --pwo-muted: #b9c0ca;
  --pwo-white: #fff;
  --pwo-success: #1cb978;
  --pwo-danger: #cf000f;
  --radius: 8px;
  --page-pad: clamp(14px, 2.1vw, 28px);
  --max: 1366px;
  --font: Montserrat, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.remake-site {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--pwo-ink);
  color: var(--pwo-white);
  font-family: var(--font);
  line-height: 1.35;
}

.remake-site a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  width: 100%;
  overflow-x: hidden;
  overflow: hidden;
  background: #101317;
}

.top-legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 8px var(--page-pad);
  background: #080a0d;
  color: #f3f4f6;
  font-size: 12px;
  border-bottom: 1px solid #242832;
}

.top-legal__text {
  margin: 0;
}

.top-legal__media {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-legal__media img {
  max-height: 30px;
  width: auto;
}

.fortune-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 10px var(--page-pad);
  background: #f0b000;
  color: #171a1f;
  font-weight: 700;
  border-bottom: 1px solid #d39700;
}

.fortune-strip img {
  width: 52px;
  height: 52px;
  animation: spin 6s linear infinite;
}

.fortune-strip p {
  margin: 0;
  font-size: 16px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.fortune-strip strong {
  font-weight: 800;
}

.fortune-strip__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #171a1f;
  color: var(--pwo-yellow);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 21, 27, .96);
  border-bottom: 1px solid #2b3039;
  backdrop-filter: blur(12px);
}

.main-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--page-pad);
}

.main-header__bar > * {
  min-width: 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 186px;
  min-height: 44px;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.main-nav a {
  flex: 0 0 auto;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: #e5e8ee;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a:first-child,
.main-nav a:hover {
  background: var(--pwo-yellow);
  color: #171a1f;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wheel-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wheel-link img {
  width: 42px;
  height: 42px;
  animation: spin 6s linear infinite;
}

.btn {
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #171a1f;
  background: var(--pwo-yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.btn--ghost {
  color: #f1f4f8;
  background: transparent;
  border-color: #4b515c;
}

.btn:hover {
  filter: brightness(1.06);
}

.page-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--page-pad) 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(310px, .8fr);
  gap: 14px;
  align-items: stretch;
}

.hero-feature,
.hero-card,
.club-banner,
.promo-card,
.bet-card,
.game-card,
.app-card,
.seo-block,
.seo-faq,
.footer-help,
.store-locator {
  border: 1px solid #303640;
  border-radius: var(--radius);
  background: var(--pwo-panel);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}

.hero-feature {
  position: relative;
  min-height: 285px;
  overflow: hidden;
}

.hero-feature img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
}

.hero-feature__label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 560px;
  padding: 10px 12px;
  border-left: 4px solid var(--pwo-yellow);
  background: rgba(17, 21, 27, .9);
  color: var(--pwo-white);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.08;
}

.hero-stack {
  display: grid;
  gap: 10px;
}

.hero-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 84px;
  overflow: hidden;
}

.hero-card img {
  width: 112px;
  height: 100%;
  object-fit: cover;
}

.hero-card span {
  display: flex;
  align-items: center;
  padding: 12px;
  color: #f5f6fa;
  font-size: 13px;
  font-weight: 700;
}

.content-band {
  margin-top: 18px;
}

.seo-block {
  padding: 20px;
  color: #d6dce5;
  background: #161a20;
}

.seo-block h1,
.seo-block h2 {
  color: var(--pwo-white);
  line-height: 1.15;
}

.seo-block h1 {
  margin: 0 0 14px;
  font-size: 34px;
}

.seo-block h2 {
  margin: 22px 0 8px;
  font-size: 22px;
}

.seo-block p {
  margin: 0 0 12px;
  font-size: 14px;
}

.seo-block a {
  color: var(--pwo-yellow-soft);
  font-weight: 600;
}

.seo-block__columns {
  column-count: 2;
  column-gap: 28px;
}

.seo-rating {
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(250, 182, 21, .38);
  border-radius: var(--radius);
  background: rgba(250, 182, 21, .08);
}

.seo-rating p:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.seo-rating span {
  color: #f0c95d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-rating strong {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.seo-rating__notes {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: #e8edf5;
  font-size: 13px;
  line-height: 1.45;
}

.seo-faq {
  padding: 20px;
  color: #d6dce5;
  background: #151a21;
}

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

.seo-faq details {
  border: 1px solid #303640;
  border-radius: var(--radius);
  background: #10141a;
}

.seo-faq summary {
  cursor: pointer;
  padding: 14px 16px;
  color: #fff;
  font-weight: 800;
}

.seo-faq p {
  margin: 0;
  padding: 0 16px 16px;
  color: #d6dce5;
  font-size: 14px;
  line-height: 1.5;
}

.club-banner {
  overflow: hidden;
  background: #0b0e13;
}

.club-banner img {
  width: 100%;
  min-height: 86px;
  object-fit: cover;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 28px 0 12px;
}

.section-head h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.show-all {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #3b414b;
  border-radius: var(--radius);
  color: var(--pwo-yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.promo-card {
  position: relative;
  min-width: 210px;
  overflow: hidden;
  background: #0c0f14;
}

.promo-card img {
  width: 100%;
  aspect-ratio: 720 / 288;
  object-fit: cover;
}

.promo-card__actions,
.game-card__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: #171a1f;
}

.promo-card__actions a,
.game-card__actions a {
  flex: 1;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #171a1f;
  background: var(--pwo-yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-card__actions a + a,
.game-card__actions a + a {
  color: var(--pwo-yellow);
  background: transparent;
  border: 1px solid #4a515e;
}

.bet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 12px;
}

.bet-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #f6f7fa;
  color: #15191f;
}

.bet-card--live {
  background: #171a1f;
  color: #f6f7fa;
}

.bet-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #646b76;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bet-card--live .bet-card__top {
  color: #f3c644;
}

.bet-card__teams {
  display: grid;
  gap: 4px;
  min-height: 48px;
  font-size: 15px;
  font-weight: 800;
}

.bet-card__score {
  color: var(--pwo-yellow);
  font-size: 12px;
  font-weight: 800;
}

.odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.odd {
  display: grid;
  gap: 3px;
  justify-items: center;
  padding: 8px 6px;
  border-radius: 6px;
  background: #e7ebf0;
  color: #171a1f;
  font-weight: 800;
}

.bet-card--live .odd {
  background: #2a3039;
  color: #fff;
}

.odd small {
  color: #69717d;
  font-size: 11px;
}

.bet-card--live .odd small {
  color: #c3cad4;
}

.game-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(145px, 1fr));
  gap: 12px;
}

.game-card {
  min-width: 145px;
  overflow: hidden;
  background: #101319;
}

.game-card__art {
  position: relative;
  background: #0d1015;
}

.game-card__art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.game-card__provider {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(17, 21, 27, .84);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.game-card__body {
  min-height: 70px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 10px;
}

.game-card__title {
  min-height: 34px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}

.app-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 12px;
  background: #171a1f;
}

.app-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.app-card span {
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  background: #0a0d11;
  border-top: 1px solid #2b3039;
}

.footer-help {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 18px var(--page-pad);
  border-width: 0 0 1px;
  border-radius: 0;
  background-color: #161a20;
  background-image: none;
  background-position: center;
  background-size: cover;
}

.footer-help p {
  margin: 0;
  text-align: right;
}

.footer-help strong {
  display: block;
  font-size: 18px;
}

.footer-help a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--pwo-yellow);
  color: #171a1f;
  font-weight: 800;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px var(--page-pad);
}

.footer-links {
  display: grid;
  grid-template-columns: 180px repeat(4, minmax(150px, 1fr)) 190px;
  gap: 20px;
}

.footer-logo img {
  width: 132px;
  height: auto;
}

.footer-column h3 {
  margin: 0 0 12px;
  color: var(--pwo-yellow);
  font-size: 13px;
  font-weight: 800;
}

.footer-column ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: #c7ccd5;
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--pwo-yellow);
}

.store-locator {
  align-self: start;
  padding: 14px;
  background: #15191f;
  text-align: center;
}

.store-locator img {
  width: 72px;
  margin: 0 auto 9px;
}

.store-locator span {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.footer-legal {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding-top: 24px;
  color: #d7dce4;
  font-size: 12px;
  text-align: center;
}

.legal-logos,
.payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-logos img {
  max-height: 44px;
  width: auto;
}

.payments img {
  max-width: min(309px, 90vw);
}

@media (max-width: 1180px) {
  .main-header__bar,
  .hero-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .main-nav {
    order: 3;
  }

  .header-actions {
    justify-self: start;
  }

  .hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bet-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .game-rail {
    grid-template-columns: repeat(4, minmax(145px, 1fr));
  }
}

@media (max-width: 760px) {
  .top-legal,
  .fortune-strip,
  .main-header,
  .main-header__bar,
  .page-main,
  .site-footer,
  .footer-inner,
  .content-band,
  .hero-grid {
    width: 100vw;
    max-width: 100vw;
  }

  .top-legal,
  .fortune-strip {
    grid-template-columns: 1fr;
  }

  .top-legal__media,
  .fortune-strip__close {
    justify-self: start;
  }

  .fortune-strip {
    gap: 8px;
  }

  .fortune-strip p,
  .top-legal__text {
    max-width: calc(100vw - 28px);
  }

  .brand-logo {
    width: 160px;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .btn {
    min-height: 36px;
    padding: 0 13px;
  }

  .hero-feature,
  .hero-feature img {
    min-height: 220px;
  }

  .hero-feature__label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 20px;
  }

  .seo-block h1 {
    font-size: 26px;
  }

  .seo-block h2,
  .section-head h2 {
    font-size: 21px;
  }

  .hero-stack,
  .promo-grid,
  .bet-grid,
  .game-rail,
  .app-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .hero-card,
  .promo-card,
  .bet-card,
  .game-card,
  .app-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }

  .seo-block__columns {
    column-count: 1;
  }

  .seo-rating p:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .seo-faq__grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-help {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-help p {
    text-align: left;
  }
}
