:root {
  --page: #f6fbff;
  --white: #ffffff;
  --soft: #eaf8ff;
  --soft-2: #f1fbff;
  --line: #d5e8f6;
  --line-strong: #b8d9ed;
  --text: #0d2744;
  --muted: #5d7289;
  --blue: #0b74d1;
  --blue-2: #0758a8;
  --cyan: #00bfd8;
  --teal: #0aa7b5;
  --navy: #062c54;
  --shadow: 0 22px 50px rgba(20, 102, 166, 0.16);
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--page) 54%, #ffffff 100%);
  color: var(--text);
  font-family: Arial, "Microsoft YaHei", "Noto Sans SC", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(11, 116, 209, 0.16);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 52px;
  height: 52px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1 1 auto;
}

.main-menu a {
  padding: 12px 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-menu a:hover,
.main-menu a:focus-visible,
.main-menu a.is-active {
  background: var(--soft);
  color: var(--blue);
  outline: none;
}

.nav-tools,
.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  min-width: 56px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(11, 116, 209, 0.1);
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  border-color: var(--cyan);
  outline: none;
}

.btn {
  min-height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: linear-gradient(180deg, #21d7f3, var(--blue));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(11, 116, 209, 0.25);
}

.btn-cyan {
  background: linear-gradient(180deg, #ecffff, #bdf6ff);
  color: var(--blue-2);
  border-color: rgba(0, 191, 216, 0.45);
  box-shadow: 0 14px 28px rgba(0, 191, 216, 0.18);
}

.btn-ghost {
  background: var(--white);
  color: var(--blue-2);
  border-color: var(--line-strong);
}

.btn-large {
  min-height: 50px;
  padding-inline: 24px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--blue);
}

.hero {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.hero-banner {
  width: 100%;
  height: auto;
  aspect-ratio: 2979 / 528;
  display: block;
  object-fit: contain;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.42) 70%, rgba(255, 255, 255, 0.12) 100%),
    linear-gradient(0deg, rgba(246, 251, 255, 0.9) 0%, rgba(246, 251, 255, 0) 35%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - var(--header-h));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(240px, 1fr);
  align-items: center;
  gap: 34px;
  padding: 66px 0 88px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  color: var(--text);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
  max-width: 610px;
}

.hero-stats > span {
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(11, 116, 209, 0.1);
}

.hero-stats > span > strong {
  display: block;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.vip-card {
  justify-self: end;
  width: min(310px, 100%);
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(0, 191, 216, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.vip-card span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.vip-card strong {
  display: block;
  margin: 10px 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1;
}

.vip-card p {
  margin: 0;
  color: var(--muted);
}

section {
  padding: 78px 0;
  scroll-margin-top: 118px;
}

.join-banner {
  padding: 54px 0;
  background: var(--white);
}

.join-banner-inner {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0 auto;
  text-align: center;
}

.join-banner h2,
.join-banner-text {
  max-width: 900px;
  margin: 0;
  color: var(--cyan);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.bonus-banners {
  padding: 38px 0 52px;
  background: var(--white);
}

.bonus-banners-grid {
  width: min(1360px, calc(100% - 24px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.bonus-banner-image {
  width: 100%;
  aspect-ratio: 332 / 116;
  display: block;
  object-fit: contain;
}

.promo-strip,
.steps,
.games,
.seo-block,
.faq {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head h2 {
  margin-bottom: 0;
  color: var(--cyan);
}

.games .section-head {
  display: block;
  text-align: center;
}

.section-head.centered {
  max-width: 680px;
  display: block;
  margin-inline: auto;
  text-align: center;
}

.section-head.centered p:not(.eyebrow) {
  color: var(--muted);
}

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

.promo-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(0, 191, 216, 0.16), rgba(255, 255, 255, 0) 48%),
    var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(11, 116, 209, 0.1);
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 116, 209, 0.09), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.promo-card > * {
  position: relative;
  z-index: 1;
}

.promo-main {
  background:
    linear-gradient(135deg, rgba(10, 167, 181, 0.2), rgba(255, 255, 255, 0.88) 55%),
    var(--white);
  border-color: rgba(0, 191, 216, 0.38);
}

.promo-card span,
.why-grid span {
  width: max-content;
  max-width: 100%;
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(0, 191, 216, 0.3);
  border-radius: 4px;
  background: var(--soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.promo-card p {
  color: var(--muted);
}

.promo-card a {
  width: max-content;
  margin-top: auto;
  color: var(--blue-2);
  font-weight: 900;
  border-bottom: 2px solid var(--cyan);
}

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

.step-card,
.why-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(11, 116, 209, 0.08);
}

.step-card {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.step-icon {
  width: 116px;
  height: 116px;
  display: block;
  margin-bottom: 16px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(8, 88, 168, 0.22));
}

.icon-game {
  width: 128px;
}

.step-label {
  margin-bottom: 6px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.step-card h3 {
  margin-bottom: 0;
}

.step-card h3 a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(0, 191, 216, 0.55);
  text-underline-offset: 4px;
}

.step-card p,
.why-grid p,
.game-card p,
.content-column p,
.site-footer p {
  color: var(--muted);
}

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

.game-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(11, 116, 209, 0.09);
}

.game-card:nth-child(5) {
  grid-column: auto;
}

.game-image {
  width: 100%;
  aspect-ratio: 245 / 133;
  display: block;
  object-fit: contain;
}

.game-image-link {
  display: block;
  border-radius: 8px;
  outline-offset: 3px;
}

.game-image-link:focus-visible,
.game-card h3 a:focus-visible {
  outline: 2px solid var(--cyan);
}

.game-card h3 {
  margin-bottom: 10px;
}

.game-card h3 a {
  color: var(--navy);
}

.game-card h3 a:hover {
  color: var(--blue);
}

.game-card p a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-underline-offset: 3px;
}

.game-card p strong {
  display: inline-block;
  margin-top: 12px;
  color: var(--navy);
}

.sports-page {
  background: var(--white);
}

.sports-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(118deg, #073c88 0%, #0a77c8 44%, #16c7db 100%);
}

.sports-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(0, 20, 54, 0.46) 0%, rgba(0, 64, 130, 0.2) 44%, rgba(255, 255, 255, 0.08) 100%),
    repeating-linear-gradient(15deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px);
}

.sports-hero-bg::before,
.sports-hero-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.sports-hero-bg::before {
  left: 45%;
  top: -18%;
  width: 62%;
  height: 136%;
  border-left: 2px solid rgba(255, 255, 255, 0.32);
  border-right: 26px solid rgba(255, 255, 255, 0.1);
  transform: skewX(-22deg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 42%, transparent 100%);
}

.sports-hero-bg::after {
  right: -6%;
  bottom: -38%;
  width: 52%;
  height: 78%;
  border: 18px solid rgba(255, 255, 255, 0.18);
  border-radius: 50% 0 0 50%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 40px),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.13);
}

.sports-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--white);
}

.sports-hero-copy h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(62px, 9vw, 116px);
  text-shadow: 0 10px 28px rgba(1, 30, 62, 0.3);
}

.sports-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.18;
  text-shadow: 0 10px 24px rgba(1, 30, 62, 0.28);
}

.sports-hero-card {
  position: absolute;
  right: max(78px, calc((100vw - 1180px) / 2));
  top: 50%;
  z-index: 1;
  width: min(420px, 34vw);
  transform: translateY(-50%) rotate(-2deg);
  filter: drop-shadow(0 20px 28px rgba(6, 44, 84, 0.24));
}

.sports-showcase {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 0;
  text-align: center;
}

.sports-showcase h2 {
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: clamp(28px, 3vw, 38px);
}

.sports-provider-grid {
  width: min(972px, 100%);
  display: grid;
  grid-template-columns: repeat(6, 152px);
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
}

.sports-provider-card {
  width: 152px;
  height: 152px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.sports-provider-image {
  width: 152px;
  height: 152px;
  display: block;
  object-fit: contain;
}

.sports-provider-maxbet,
.sports-provider-sbobet,
.sports-provider-bti {
  --sports-card-a: #bff8ff;
  --sports-card-b: #25c2ed;
  --sports-card-c: #0b78d6;
}

.sports-provider-cmd,
.sports-provider-wicket {
  --sports-card-a: #79ecff;
  --sports-card-b: #13aedf;
  --sports-card-c: #0758a8;
}

.sports-provider-esport {
  --sports-card-a: #91f4ff;
  --sports-card-b: #0bb8d6;
  --sports-card-c: #204ab2;
}

.sports-guide {
  padding: 58px 0 78px;
}

.sports-guide-inner {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  background: var(--white);
}

.sports-guide-inner > h2 {
  margin-bottom: 18px;
  color: var(--cyan);
  text-align: center;
  font-size: clamp(25px, 2.8vw, 34px);
}

.sports-guide-inner p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.sports-market-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

.sports-market-list li::marker {
  color: var(--blue);
}

.sports-market-list strong {
  color: var(--text);
}

.ekor-page {
  background: var(--white);
}

.ekor-hero-section {
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

.ekor-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ekor-table-section {
  position: relative;
  display: grid;
  place-items: center;
  padding: 48px 16px 34px;
  overflow: hidden;
  background: var(--white);
}

.ekor-payout-image {
  position: relative;
  z-index: 1;
  width: min(528px, calc(100vw - 32px));
  height: auto;
  display: block;
  object-fit: contain;
}

.ekor-title-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 18px;
  text-align: center;
}

.ekor-title-section h1 {
  margin: 0 auto;
  color: var(--cyan);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.35;
}

.ekor-guide {
  padding: 34px 0 78px;
}

.ekor-guide-inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.ekor-guide-inner h2 {
  margin-bottom: 18px;
  color: var(--cyan);
  text-align: center;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.35;
}

.ekor-guide-inner p {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
}

.live-page {
  background: var(--white);
}

.live-hero {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  background: var(--white);
}

.live-hero-image {
  width: 100%;
  aspect-ratio: 2979 / 528;
  display: block;
  object-fit: contain;
}

.live-showcase {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 0;
  text-align: center;
}

.live-showcase h1,
.live-showcase h2 {
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: clamp(28px, 3vw, 38px);
  text-align: center;
}

.live-provider-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px 28px;
  margin: 0 auto;
}

.live-provider-card {
  grid-column: span 2;
  min-width: 0;
}

.live-provider-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.live-provider-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.live-provider-image {
  width: 100%;
  aspect-ratio: 2280 / 673;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(5, 44, 84, 0.18));
}

.live-top-games {
  padding-top: 82px;
}

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

.live-game-card {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: end;
  justify-items: center;
  overflow: hidden;
  padding: 18px 12px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.52) 0 11%, transparent 29%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(4, 24, 52, 0.48)),
    linear-gradient(135deg, var(--live-card-a, #22dcf4), var(--live-card-b, #0b74d1) 48%, var(--live-card-c, #052c54));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(5, 44, 84, 0.18);
}

.live-game-card::before,
.live-game-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.live-game-card::before {
  inset: 16px 20px auto;
  height: 84px;
  border: 10px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.14);
}

.live-game-card::after {
  right: -38px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.live-game-card span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 26px;
  border: 4px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(5, 44, 84, 0.24);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 4px 10px rgba(1, 28, 60, 0.34);
}

.live-game-card strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-shadow: 0 5px 14px rgba(1, 28, 60, 0.42);
}

.live-game-baccarat,
.live-game-speed,
.live-game-dice {
  --live-card-a: #ffbe42;
  --live-card-b: #df4428;
  --live-card-c: #5a1128;
}

.live-game-dragon,
.live-game-wheel {
  --live-card-a: #21d7f3;
  --live-card-b: #0b74d1;
  --live-card-c: #062c54;
}

.live-game-roulette,
.live-game-blackjack,
.live-game-poker {
  --live-card-a: #ff8c4c;
  --live-card-b: #c91842;
  --live-card-c: #3f1138;
}

.live-game-fan,
.live-game-bull {
  --live-card-a: #9af5ff;
  --live-card-b: #0aa7b5;
  --live-card-c: #052c54;
}

.live-guide {
  padding: 78px 0;
}

.live-guide-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 58px 58px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(11, 116, 209, 0.08);
}

.live-guide-inner > h2 {
  max-width: 950px;
  margin: 0 auto 36px;
  color: var(--cyan);
  text-align: center;
}

.live-guide-inner h3 {
  margin: 34px 0 12px;
  color: var(--text);
}

.live-guide-inner p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.live-guide-inner a {
  color: var(--blue-2);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-underline-offset: 3px;
}

.slots-page {
  background: var(--white);
}

.slots-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
}

.slots-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.slots-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 38, 82, 0.94) 0%, rgba(4, 113, 168, 0.82) 36%, rgba(0, 191, 216, 0.22) 66%, rgba(1, 20, 44, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 44, 84, 0.06), rgba(5, 44, 84, 0.26));
}

.slots-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--white);
}

.slots-hero-copy h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(62px, 9vw, 118px);
  text-shadow: 0 10px 26px rgba(1, 30, 62, 0.3);
}

.slots-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.18;
  text-shadow: 0 10px 24px rgba(1, 30, 62, 0.28);
}

.slots-hero-logo {
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: -16px;
  z-index: 1;
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(6, 44, 84, 0.25));
}

.slot-showcase {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 0;
  text-align: center;
}

.hot-slot-showcase {
  padding-top: 70px;
}

.slot-showcase h2 {
  margin-bottom: 30px;
  color: var(--cyan);
  font-size: clamp(28px, 3vw, 36px);
  text-transform: uppercase;
}

.slot-card-grid {
  display: grid;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

.provider-grid {
  max-width: 982px;
  grid-template-columns: repeat(6, 147px);
}

.hot-grid {
  max-width: 1009px;
  grid-template-columns: repeat(7, 127px);
}

.slot-game-card {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.provider-grid .slot-game-card,
.hot-grid .slot-game-card {
  gap: 0;
}

.slot-provider-image {
  width: 147px;
  height: 147px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(11, 116, 209, 0.16);
}

.slot-hot-image {
  width: 127px;
  height: 122px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(11, 116, 209, 0.16);
}

.slot-card-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.95) 0 10%, rgba(255, 255, 255, 0) 27%),
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, 0.45) 0 8%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(155deg, var(--tile-accent, #22dcf4), var(--tile-mid, #10a7df) 52%, var(--tile-deep, #0758a8));
  box-shadow:
    inset 0 -16px 24px rgba(2, 49, 99, 0.14),
    0 12px 22px rgba(11, 116, 209, 0.16);
}

.slot-card-art::before,
.slot-card-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.slot-card-art::before {
  width: 84%;
  height: 84%;
  border: 10px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.12);
}

.slot-card-art::after {
  right: -16%;
  bottom: -18%;
  width: 62%;
  height: 62%;
  background: rgba(255, 255, 255, 0.18);
}

.slot-card-art span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04)),
    rgba(4, 70, 134, 0.18);
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 10px rgba(1, 28, 60, 0.35);
}

.slot-game-card strong {
  max-width: 100%;
  min-height: 34px;
  display: grid;
  place-items: start center;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  overflow-wrap: anywhere;
}

.art-oracle,
.art-space,
.art-magic,
.art-shark,
.art-win {
  --tile-accent: #77efff;
  --tile-mid: #21c1f1;
  --tile-deep: #0978cf;
}

.art-warrior,
.art-lion,
.art-tiger,
.art-buffalo {
  --tile-accent: #44d6ff;
  --tile-mid: #109de3;
  --tile-deep: #074f9f;
}

.art-gold,
.art-caishen,
.art-fafa,
.art-empire {
  --tile-accent: #ffe071;
  --tile-mid: #18bfe8;
  --tile-deep: #0765b7;
}

.art-king,
.art-queen,
.art-princess,
.art-rabbit {
  --tile-accent: #8befff;
  --tile-mid: #31bce7;
  --tile-deep: #0b83c6;
}

.art-ocean,
.art-storm,
.art-olympus,
.art-bass {
  --tile-accent: #baf7ff;
  --tile-mid: #00b7d7;
  --tile-deep: #064a9b;
}

.art-table,
.art-candy,
.art-mahjong,
.art-bounty,
.art-dragon,
.art-neko,
.art-roma,
.art-book,
.art-sugar,
.art-aztec,
.art-ox {
  --tile-accent: #52e9ff;
  --tile-mid: #1db5ef;
  --tile-deep: #0867bd;
}

.slots-guide {
  padding: 78px 0;
}

.slots-guide-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 58px 58px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(11, 116, 209, 0.08);
}

.slots-guide-inner > h2 {
  max-width: 950px;
  margin: 0 auto 36px;
  color: var(--cyan);
  text-align: center;
}

.slots-guide-inner h3 {
  margin: 34px 0 12px;
  color: var(--text);
}

.slots-guide-inner p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.casino-guide {
  padding: 0 0 78px;
}

.casino-guide-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 58px 58px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  background: var(--white);
}

.casino-guide-inner > h2 {
  max-width: 1020px;
  margin: 0 auto 48px;
  color: var(--cyan);
  text-align: center;
}

.casino-guide-content h3 {
  margin: 34px 0 12px;
  color: var(--text);
}

.casino-guide-content h3:first-child {
  margin-top: 0;
}

.casino-guide-content p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.casino-guide-content a {
  color: var(--blue-2);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-underline-offset: 3px;
}

.why-winbox {
  background: var(--white);
}

.why-winbox-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.why-winbox-head {
  margin-bottom: 34px;
  text-align: center;
}

.why-winbox-head h2 {
  color: var(--cyan);
}

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

.why-winbox-item {
  display: grid;
  grid-template-rows: 270px auto 1fr;
  justify-items: center;
  text-align: center;
}

.why-winbox-image {
  width: min(100%, 279px);
  height: 260px;
  display: block;
  object-fit: contain;
}

.why-winbox-item h3 {
  min-height: 56px;
  display: grid;
  place-items: start center;
  margin-bottom: 18px;
}

.why-winbox-item p {
  max-width: 340px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.game-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.game-card li {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.game-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 191, 216, 0.55);
}

.partner-band {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 28px;
  padding: 64px max(16px, calc((100vw - 1180px) / 2));
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #eefbff, #ffffff 46%, #f7fcff);
}

.partner-band p {
  max-width: 680px;
  color: var(--muted);
}

.bonus-panel {
  min-height: 190px;
  display: grid;
  align-content: center;
  padding: 24px;
  border: 1px solid rgba(0, 191, 216, 0.36);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(0, 191, 216, 0.16), rgba(255, 255, 255, 0.94)), var(--white);
  box-shadow: 0 16px 34px rgba(0, 191, 216, 0.14);
}

.bonus-panel span {
  color: var(--blue);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.bonus-panel strong {
  color: var(--navy);
  font-size: 22px;
}

.bonus-panel small {
  color: var(--muted);
}

.seo-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
}

.content-column {
  max-width: 760px;
}

.why-grid {
  display: grid;
  gap: 16px;
}

.why-grid article {
  min-height: 170px;
}

.faq-list {
  max-width: 960px;
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(11, 116, 209, 0.07);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(0, 191, 216, 0.5);
}

.faq-item summary {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 24px;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  margin-top: 0;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--blue-2);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 191, 216, 0.65);
  text-underline-offset: 3px;
}

.faq-answer ul,
.faq-answer ol {
  display: grid;
  gap: 6px;
  padding-left: 22px;
}

.faq-answer li::marker {
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  padding: 58px max(16px, calc((100vw - 1180px) / 2)) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: #197399;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(420px, 1.3fr) auto;
  align-items: start;
  gap: 28px;
}

.footer-certification h3 {
  max-width: 380px;
  text-align: center;
}

.footer-certification-list {
  max-width: 380px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px 18px;
}

.footer-cert-logo {
  width: 100%;
  height: 48px;
  display: block;
  object-fit: contain;
  filter: none;
}

.footer-payment-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 14px 18px;
}

.footer-payment-logo {
  width: 100%;
  height: 38px;
  display: block;
  object-fit: contain;
}

.site-footer h3 {
  color: var(--white);
  font-size: 16px;
}

.badge-row,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-row span,
.contact-row a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--white);
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  :root {
    --header-h: 64px;
  }

  .nav-shell {
    min-height: 64px;
    gap: 12px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-menu {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .main-menu.is-open {
    display: grid;
  }

  .main-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-actions {
    display: none;
  }

  .nav-tools {
    margin-left: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 42px;
  }

  .vip-card {
    justify-self: start;
  }

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

  .promo-main {
    grid-column: 1 / -1;
  }

  .seo-block,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .provider-grid,
  .hot-grid {
    max-width: 648px;
    grid-template-columns: repeat(4, 127px);
  }

  .provider-grid {
    grid-template-columns: repeat(4, 147px);
  }

  .live-provider-grid {
    width: min(640px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-provider-card,
  .live-provider-card:nth-child(4),
  .live-provider-card:nth-child(5) {
    grid-column: auto;
  }

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

  .sports-hero {
    min-height: 360px;
  }

  .sports-hero-card {
    right: 28px;
    width: min(340px, 38vw);
  }

  .sports-provider-grid {
    width: min(480px, 100%);
    grid-template-columns: repeat(3, 152px);
  }

  .slots-hero {
    min-height: 360px;
  }

  .slots-hero-logo {
    width: 82px;
    height: 82px;
  }

  .why-winbox-grid {
    gap: 28px;
  }

  .bonus-banners-grid {
    width: min(720px, calc(100% - 24px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .why-winbox-item {
    grid-template-rows: 230px auto 1fr;
  }

  .why-winbox-image {
    height: 220px;
  }

  .partner-band {
    grid-template-columns: 1fr;
  }

  .game-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .nav-shell {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 16px;
  }

  .lang-toggle {
    min-width: 50px;
    padding-inline: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.94) 34%, #ffffff 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.2));
  }

  .hero-inner {
    min-height: 730px;
    width: calc(100% - 24px);
    padding: 250px 0 42px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .mobile-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-stats,
  .promo-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .promo-strip,
  .steps,
  .games,
  .seo-block,
  .faq {
    width: calc(100% - 24px);
  }

  .slot-showcase {
    width: calc(100% - 24px);
    padding-top: 48px;
  }

  .live-hero,
  .live-showcase {
    width: calc(100% - 24px);
  }

  .live-showcase {
    padding-top: 48px;
  }

  .live-provider-grid,
  .live-game-grid {
    width: min(430px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .sports-showcase,
  .sports-guide-inner {
    width: calc(100% - 24px);
  }

  .sports-showcase {
    padding-top: 48px;
  }

  .sports-hero {
    min-height: auto;
    display: block;
    padding: 42px 0 34px;
  }

  .sports-hero-copy {
    width: calc(100% - 24px);
    text-align: center;
  }

  .sports-hero-copy h1 {
    margin-bottom: 8px;
    font-size: clamp(44px, 16vw, 62px);
  }

  .sports-hero-copy p {
    font-size: clamp(22px, 7vw, 30px);
  }

  .sports-hero-card {
    position: relative;
    right: auto;
    top: auto;
    width: min(300px, 82vw);
    display: block;
    margin: 28px auto 0;
    transform: none;
  }

  .sports-provider-grid {
    width: min(316px, 100%);
    grid-template-columns: repeat(2, 152px);
    gap: 12px;
  }

  .sports-provider-card {
    width: 152px;
    height: 152px;
  }

  .sports-guide {
    padding: 48px 0 56px;
  }

  .ekor-table-section {
    padding: 44px 12px 24px;
  }

  .ekor-title-section {
    width: calc(100% - 24px);
    padding-top: 20px;
  }

  .ekor-guide {
    padding: 18px 0 56px;
  }

  .ekor-guide-inner {
    width: calc(100% - 24px);
    padding: 0 12px;
    border-radius: 0;
  }

  .live-game-card {
    min-height: 190px;
  }

  .provider-grid,
  .hot-grid {
    max-width: 430px;
    gap: 16px;
  }

  .provider-grid {
    max-width: 310px;
    grid-template-columns: repeat(2, 147px);
  }

  .hot-grid {
    max-width: 413px;
    grid-template-columns: repeat(3, 127px);
  }

  .slots-hero {
    min-height: 330px;
  }

  .slots-hero-image {
    object-position: 70% center;
  }

  .slots-hero-copy {
    width: calc(100% - 24px);
  }

  .slots-hero-copy h1 {
    font-size: 56px;
  }

  .slots-hero-copy p {
    font-size: 28px;
  }

  .slots-hero-logo {
    right: 12px;
    width: 70px;
    height: 70px;
  }

  .slots-guide {
    padding: 56px 0;
  }

  .live-guide {
    padding: 56px 0;
  }

  .slots-guide-inner {
    width: calc(100% - 24px);
    padding: 32px 20px 36px;
  }

  .live-guide-inner {
    width: calc(100% - 24px);
    padding: 32px 20px 36px;
  }

  .why-winbox-inner {
    width: calc(100% - 24px);
  }

  .casino-guide {
    padding: 0 0 56px;
  }

  .casino-guide-inner {
    width: calc(100% - 24px);
    padding: 32px 20px 36px;
  }

  .casino-guide-inner > h2 {
    margin-bottom: 36px;
  }

  section {
    padding: 56px 0;
  }

  .section-head {
    display: block;
  }

  .game-card {
    grid-template-columns: 1fr;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .why-winbox-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .bonus-banners {
    padding: 30px 0 44px;
  }

  .bonus-banners-grid {
    width: min(332px, calc(100% - 24px));
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-winbox-item {
    grid-template-rows: 220px auto auto;
  }

  .why-winbox-item h3 {
    min-height: 0;
  }

  .partner-band {
    padding: 54px 12px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-payment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    gap: 10px;
    padding: 10px 12px 12px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
  }
}

@media (max-width: 440px) {
  .main-menu {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 760px;
  }

  .provider-grid,
  .hot-grid {
    grid-template-columns: repeat(2, 127px);
  }

  .provider-grid {
    grid-template-columns: repeat(2, 147px);
  }

  .live-provider-grid,
  .live-game-grid {
    grid-template-columns: 1fr;
  }

  .sports-provider-grid {
    grid-template-columns: repeat(2, 152px);
  }

  .sports-hero-card {
    width: min(260px, 82vw);
    opacity: 1;
  }

  h1 {
    font-size: 33px;
  }

  .btn {
    padding-inline: 12px;
  }
}

@media (max-width: 340px) {
  .provider-grid {
    max-width: 147px;
    grid-template-columns: 147px;
  }

  .hot-grid {
    max-width: 270px;
    grid-template-columns: repeat(2, 127px);
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
  }

  .nav-shell {
    width: calc(100% - 20px);
    min-height: 62px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 10px;
  }

  .nav-tools {
    gap: 8px;
  }

  .lang-toggle,
  .menu-toggle {
    min-width: 42px;
    min-height: 38px;
    height: 38px;
  }

  .lang-toggle {
    padding-inline: 8px;
    font-size: 12px;
  }

  .main-menu {
    top: 62px;
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .main-menu a {
    justify-content: center;
    min-height: 42px;
    font-size: 14px;
  }

  .hero-banner,
  .live-hero-image,
  .ekor-hero-image {
    width: 100%;
    height: clamp(158px, 46vw, 220px);
    object-fit: cover;
  }

  .hero-banner,
  .live-hero-image {
    object-position: center;
  }

  .ekor-hero-image {
    object-position: 62% center;
  }

  .bonus-banners-grid {
    width: min(340px, calc(100% - 20px));
  }

  .join-banner {
    padding: 38px 0 34px;
  }

  .join-banner-inner {
    width: calc(100% - 24px);
  }

  .join-banner h2,
  .join-banner-text {
    font-size: clamp(27px, 8.6vw, 36px);
    line-height: 1.22;
  }

  .section-head.centered {
    width: min(100%, 420px);
    margin-bottom: 22px;
  }

  .step-card,
  .why-grid article {
    min-height: 0;
    padding: 22px 18px;
  }

  .step-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 12px;
  }

  .icon-game {
    width: 112px;
  }

  .game-card {
    gap: 12px;
    padding: 10px 10px 18px;
    text-align: center;
  }

  .game-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .casino-guide-inner,
  .slots-guide-inner,
  .live-guide-inner {
    padding: 28px 16px 32px;
    border-radius: 8px;
  }

  .casino-guide-content p,
  .slots-guide-inner p,
  .live-guide-inner p,
  .sports-market-list,
  .sports-guide-inner p {
    font-size: 15px;
    line-height: 1.78;
  }

  .casino-guide-content h3,
  .slots-guide-inner h3,
  .live-guide-inner h3 {
    font-size: 20px;
    line-height: 1.32;
  }

  .why-winbox-image {
    width: min(220px, 72vw);
    height: 190px;
  }

  .why-winbox-item {
    grid-template-rows: auto auto auto;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 14px 16px;
    gap: 12px;
    font-size: 15px;
    line-height: 1.35;
  }

  .faq-answer {
    padding: 0 16px 18px;
    font-size: 14px;
  }

  .slots-hero {
    min-height: 285px;
  }

  .slots-hero-image {
    object-position: 62% center;
  }

  .slots-hero-copy h1 {
    font-size: clamp(44px, 16vw, 58px);
  }

  .slots-hero-copy p {
    font-size: clamp(22px, 7.6vw, 30px);
  }

  .slot-showcase h2,
  .live-showcase h1,
  .live-showcase h2,
  .sports-showcase h2 {
    margin-bottom: 22px;
  }

  .live-provider-grid {
    width: min(520px, 100%);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .live-provider-card {
    width: 100%;
  }

  .sports-hero {
    padding: 38px 0 32px;
  }

  .sports-hero-copy h1 {
    font-size: clamp(42px, 15vw, 58px);
  }

  .sports-hero-copy p {
    font-size: clamp(21px, 7vw, 28px);
  }

  .sports-hero-card {
    width: min(278px, 82vw);
    margin-top: 24px;
  }

  .ekor-table-section {
    padding: 30px 10px 18px;
  }

  .ekor-payout-image {
    width: min(528px, calc(100vw - 20px));
  }

  .ekor-title-section h1 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .ekor-guide-inner p {
    font-size: clamp(16px, 5vw, 19px);
  }

  .site-footer {
    padding: 38px 14px 94px;
  }

  .footer-grid {
    gap: 30px;
    text-align: center;
  }

  .footer-certification h3,
  .footer-certification-list {
    margin-inline: auto;
  }

  .footer-certification-list {
    width: min(330px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-payment-list {
    width: min(360px, 100%);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .contact-row {
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .provider-grid {
    max-width: min(310px, 100%);
    grid-template-columns: repeat(2, minmax(0, 147px));
  }

  .hot-grid {
    max-width: min(270px, 100%);
    grid-template-columns: repeat(2, minmax(0, 127px));
  }

  .slot-provider-image {
    width: min(147px, calc((100vw - 42px) / 2));
    height: min(147px, calc((100vw - 42px) / 2));
  }

  .slot-hot-image {
    width: min(127px, calc((100vw - 42px) / 2));
    height: min(122px, calc((100vw - 42px) / 2));
  }

  .sports-provider-grid {
    width: min(316px, 100%);
    grid-template-columns: repeat(2, minmax(0, 152px));
  }

  .sports-provider-card,
  .sports-provider-image {
    width: min(152px, calc((100vw - 42px) / 2));
    height: min(152px, calc((100vw - 42px) / 2));
  }

  .slots-hero-logo {
    display: none;
  }
}

@media (max-width: 360px) {
  .brand small {
    display: none;
  }

  .nav-shell {
    width: calc(100% - 14px);
  }

  .sports-provider-grid {
    width: min(152px, 100%);
    grid-template-columns: 152px;
  }

  .sports-provider-card,
  .sports-provider-image {
    width: 152px;
    height: 152px;
  }

  .footer-certification-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
