:root {
  --pw-yellow: #fab615;
  --pw-green: #3b9b22;
  --pw-page: #2c2f35;
  --pw-panel: #22262b;
  --pw-deep: #171a1f;
  --pw-soft: #3a3e45;
  --pw-muted: #868a91;
  --pw-line: #54585e;
  --pw-text: #f2f2f2;
  --pw-dim: #c8cbd0;
  --pw-shadow: 0 14px 34px rgba(0, 0, 0, .32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  margin: 0 !important;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  background: var(--pw-page) !important;
  color: var(--pw-text) !important;
  font-family: Roboto, Montserrat, Arial, sans-serif !important;
  line-height: 1.45;
}

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

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
}

.pw-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(23, 26, 31, .92) 0, rgba(44, 47, 53, .98) 260px),
    var(--pw-page);
}

.legal-ribbon {
  width: 100%;
  max-width: 100vw;
  min-height: 32px;
  padding: 6px clamp(14px, 3vw, 34px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: #0f1115;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.legal-ribbon span {
  flex: 1 1 320px;
  min-width: 0;
  max-width: 720px;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.legal-ribbon a {
  color: var(--pw-yellow);
  font-weight: 700;
  white-space: nowrap;
}

.fortune-strip {
  width: 100%;
  max-width: 100vw;
  min-height: 45px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  padding: 6px clamp(14px, 4vw, 48px);
  background: var(--pw-yellow);
  color: #171a1f;
  font-weight: 700;
}

.fortune-strip img {
  width: 34px;
  height: 34px;
  animation: wheel-spin 7s linear infinite;
}

.fortune-strip p {
  margin: 0;
  overflow-wrap: anywhere;
}

.fortune-strip button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 26, 31, .16);
  color: #171a1f;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

@keyframes wheel-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(360deg) scale(.94); }
  100% { transform: rotate(720deg) scale(1); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: rgba(23, 26, 31, .98);
  border-bottom: 3px solid var(--pw-yellow);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

.header-bar {
  width: min(100%, 1390px);
  min-width: 0;
  min-height: 66px;
  margin: 0 auto;
  padding: 0 clamp(10px, 2vw, 24px);
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 138px;
  height: auto;
  display: block;
}

.main-nav {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  min-height: 66px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  border-left: 1px solid rgba(255, 255, 255, .05);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #171a1f;
  background: var(--pw-yellow);
  outline: 0;
}

.auth-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-actions a {
  min-width: 94px;
  min-height: 38px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.login-link {
  border: 1px solid var(--pw-line);
  color: #fff;
  background: var(--pw-soft);
}

.join-link {
  color: #fff;
  background: var(--pw-green);
}

.hero {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: var(--pw-deep);
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  aspect-ratio: 1920 / 220;
  background: #050608;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-controls {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 8px clamp(12px, 2vw, 24px) 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero-controls button,
.row-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid var(--pw-line);
  border-radius: 50%;
  color: #fff;
  background: var(--pw-soft);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.hero-controls button:hover,
.row-arrow:hover {
  color: #171a1f;
  border-color: var(--pw-yellow);
  background: var(--pw-yellow);
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border: 1px solid #fff;
  background: transparent;
  padding: 0;
}

.hero-dots button.is-active {
  background: var(--pw-yellow);
  border-color: var(--pw-yellow);
}

.intro-band {
  padding: clamp(24px, 4vw, 42px) clamp(12px, 3vw, 24px);
  background: var(--pw-page);
}

.intro-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.quick-menu {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 2px;
  overflow: hidden;
  border: 1px solid var(--pw-line);
  border-radius: 6px;
  background: var(--pw-panel);
}

.quick-menu span,
.quick-menu a {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.quick-menu span {
  color: var(--pw-yellow);
  font-size: 13px;
  font-weight: 900;
}

.quick-menu a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.quick-menu a:hover {
  background: var(--pw-yellow);
  color: #171a1f;
}

.intro-copy {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 6px;
  background: #24282f;
  box-shadow: var(--pw-shadow);
}

.intro-copy h1,
.intro-copy h2,
.section-title h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.intro-copy h1 {
  color: var(--pw-yellow);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

.intro-copy h2 {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
}

.intro-copy p {
  margin: 14px 0 0;
  color: #d9dbe0;
  font-size: 15px;
}

.wide-promo {
  padding: 0 clamp(12px, 3vw, 24px) 18px;
  background: var(--pw-page);
}

.wide-promo picture,
.wide-promo img {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: block;
}

.wide-promo img {
  border-radius: 6px;
  box-shadow: var(--pw-shadow);
}

.content-section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px) clamp(12px, 3vw, 24px);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-title h2 {
  color: #fff;
  font-size: clamp(21px, 2.4vw, 30px);
}

.section-title a {
  color: var(--pw-yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-title span {
  font-size: 18px;
  vertical-align: -1px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.bonus-card,
.bet-card,
.live-card,
.game-card,
.app-grid a {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  background: var(--pw-panel);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}

.bonus-card {
  overflow: hidden;
}

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

.bonus-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.bonus-actions a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.primary-action {
  background: var(--pw-yellow);
  color: #171a1f;
}

.secondary-action {
  color: #fff;
  background: var(--pw-deep);
}

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

.bet-card {
  min-height: 244px;
  padding: 12px;
  display: grid;
  grid-template-rows: auto auto minmax(64px, 1fr) auto auto;
  gap: 8px;
}

.bet-league {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.bet-league img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.bet-time {
  color: var(--pw-yellow);
  font-size: 12px;
  font-weight: 900;
}

.bet-card h3,
.live-card h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.bet-card h3 span,
.live-card h3 span {
  display: block;
}

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

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

.odds a {
  min-height: 38px;
  display: grid;
  place-items: center;
  gap: 2px;
  border: 1px solid var(--pw-line);
  border-radius: 4px;
  background: #2c2f35;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.odds strong {
  color: var(--pw-yellow);
  font-size: 15px;
}

.odds a:hover {
  color: #171a1f;
  border-color: var(--pw-yellow);
  background: var(--pw-yellow);
}

.odds a:hover strong {
  color: #171a1f;
}

.quote-link {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--pw-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.live-card {
  min-height: 230px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.live-pill {
  width: fit-content;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  background: #111317;
  color: var(--pw-yellow);
  font-size: 12px;
  font-weight: 900;
}

.live-pill img {
  width: 15px;
  height: 15px;
}

.live-card p {
  margin: 0;
  color: var(--pw-dim);
  font-size: 12px;
}

.score {
  display: flex;
  gap: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.score span {
  color: var(--pw-yellow);
}

.row-shell {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 10px;
}

.game-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--pw-yellow) var(--pw-panel);
  padding: 3px 2px 12px;
}

.game-card {
  position: relative;
  flex: 0 0 198px;
  min-height: 326px;
  overflow: hidden;
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 198px auto minmax(44px, auto) 28px auto;
  background: #1f2329;
}

.game-card > img:first-child {
  width: 100%;
  height: 198px;
  display: block;
  object-fit: cover;
}

.game-card > span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 7px;
  border-radius: 4px;
  background: var(--pw-yellow);
  color: #171a1f;
  font-size: 10px;
  font-weight: 900;
}

.game-card h3 {
  min-height: 44px;
  margin: 0;
  padding: 10px 10px 4px;
  color: #fff;
  font-size: 14px;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.provider {
  max-width: 92px;
  max-height: 24px;
  margin: 0 10px 8px;
  object-fit: contain !important;
  justify-self: start;
}

.game-card div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.game-card div a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.game-card div a:first-child {
  background: var(--pw-green);
}

.game-card div a:last-child {
  background: var(--pw-soft);
}

.game-card:hover {
  border-color: var(--pw-yellow);
  transform: translateY(-2px);
  transition: transform .18s ease, border-color .18s ease;
}

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

.app-grid a {
  min-height: 172px;
  padding: 20px;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.app-grid img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.app-grid a:hover {
  border-color: var(--pw-yellow);
  background: #292e36;
}

.site-footer {
  margin-top: 20px;
  background: #111317;
}

.help-band {
  min-height: 102px;
  padding: 18px clamp(18px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background:
    linear-gradient(90deg, rgba(23, 26, 31, .94), rgba(23, 26, 31, .78)),
    #22262b;
}

.help-band h2,
.help-band p {
  margin: 0;
  text-align: right;
}

.help-band h2 {
  font-size: 20px;
  font-weight: 900;
}

.help-band p {
  color: var(--pw-dim);
  font-size: 13px;
}

.help-band a {
  min-height: 44px;
  min-width: 180px;
  padding: 11px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--pw-yellow);
  color: #171a1f;
  font-weight: 900;
}

.footer-links {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 30px clamp(12px, 3vw, 24px);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 160px;
  gap: 28px;
  align-items: start;
}

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

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-columns h3 {
  margin: 0 0 12px;
  color: var(--pw-yellow);
  font-size: 13px;
  font-weight: 900;
}

.footer-columns a {
  display: block;
  padding: 3px 0;
  color: #d7d9de;
  font-size: 12px;
}

.footer-columns a:hover {
  color: var(--pw-yellow);
}

.store-locator {
  display: grid;
  place-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.store-locator img {
  width: 88px;
  height: 88px;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px clamp(12px, 3vw, 24px) 30px;
  text-align: center;
  color: #d7d9de;
  font-size: 12px;
}

.legal-logos {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

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

.footer-legal p {
  width: min(100%, 920px);
  margin: 8px auto;
}

.footer-legal a {
  color: var(--pw-yellow);
}

.payments {
  margin-top: 14px;
  display: inline-flex;
}

.payments img {
  width: 309px;
  max-width: 100%;
}

@media (max-width: 1180px) {
  .header-bar {
    grid-template-columns: 148px minmax(0, 1fr);
  }

  .auth-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    padding-bottom: 10px;
  }

  .bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bet-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-logo,
  .store-locator {
    justify-self: center;
  }
}

@media (max-width: 1320px) and (min-width: 1181px) {
  .header-bar {
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand img {
    width: 140px;
  }

  .main-nav a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 11px;
  }

  .auth-actions {
    gap: 6px;
  }

  .auth-actions a {
    min-width: 88px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 820px) {
  .legal-ribbon {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .header-bar {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 10px;
  }

  .brand {
    justify-content: center;
  }

  .main-nav a {
    min-height: 42px;
  }

  .auth-actions {
    justify-content: center;
  }

  .hero-stage {
    aspect-ratio: 720 / 288;
  }

  .intro-shell {
    grid-template-columns: 1fr;
  }

  .quick-menu {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-menu span,
  .quick-menu a {
    min-height: 44px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .bonus-grid,
  .bet-strip,
  .live-board,
  .app-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .row-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .row-arrow {
    display: none;
  }

  .game-card {
    flex-basis: 176px;
    grid-template-rows: 176px auto minmax(44px, auto) 28px auto;
  }

  .game-card > img:first-child {
    height: 176px;
  }

  .help-band {
    flex-direction: column;
    gap: 14px;
  }

  .help-band h2,
  .help-band p {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .legal-ribbon {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .legal-ribbon span,
  .legal-ribbon a {
    max-width: 100%;
    white-space: normal;
  }

  .fortune-strip {
    grid-template-columns: 32px minmax(0, 1fr) 28px;
    font-size: 13px;
  }

  .fortune-strip img {
    width: 28px;
    height: 28px;
  }

  .auth-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .auth-actions a {
    min-width: 0;
  }

  .quick-menu,
  .bonus-grid,
  .bet-strip,
  .live-board,
  .app-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .intro-copy {
    padding: 16px;
  }
}
