:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --panel: #0e0e0f;
  --panel-2: #131311;
  --line: rgba(212, 175, 55, 0.22);
  --line-strong: rgba(233, 196, 106, 0.55);
  --text: #f6f1e4;
  --muted: #9a9182;
  --gold: #d4af37;
  --gold-2: #f4d980;
  --gold-3: #b8891f;
  --danger: #c0392b;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.65);
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Cinzel", "Manrope", serif;
  /* keeps native controls (date picker, dropdowns) on the dark theme */
  color-scheme: dark;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

html,
body {
  min-height: 100%;
  background:
    radial-gradient(1100px 520px at 50% -12%, rgba(212, 175, 55, 0.14), transparent 60%),
    linear-gradient(180deg, #070706 0%, var(--bg) 40%);
  color: var(--text);
  font-family: var(--font);
}

button,
input {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.gold-text {
  background: linear-gradient(180deg, #fff8e1 0%, var(--gold-2) 40%, var(--gold) 70%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 22px 90px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #131313;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hdr-main,
.site-header .nav {
  max-width: 1440px;
  margin: 0 auto;
}

.hdr-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 6px 22px 0;
}

.hdr-utils {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hdr-icon-btn,
.hdr-text-btn,
.hdr-text-static {
  background: none;
  border: 0;
  color: #e6e6e6;
  padding: 0;
  font: 600 11px/1 var(--font);
  letter-spacing: 0.06em;
}

.hdr-icon-btn,
.hdr-text-btn {
  cursor: pointer;
}

.hdr-deposit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, #3dce6a, #168a3e);
  color: #fff;
  font: 800 11px/1 var(--font);
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(22, 138, 62, 0.35);
}

.hdr-deposit-btn:hover {
  background: linear-gradient(180deg, #4ada78, #1a9a46);
}

.hdr-deposit-btn:active {
  background: linear-gradient(180deg, #2fba58, #127534);
}

.hdr-text-static {
  cursor: default;
  user-select: none;
}

.hdr-icon-btn {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.hdr-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hdr-text-btn:hover,
.hdr-icon-btn:hover,
.hdr-lang:hover {
  color: var(--gold-2);
}

.hdr-clock,
.hdr-lang {
  color: #e6e6e6;
  font: 600 12px/1 var(--font);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.hdr-lang {
  padding: 0 4px;
}

.hdr-rate {
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0;
  margin-left: 2px;
}

.top-partner {
  display: block;
  min-width: 0;
  padding: 14px 0 10px;
}

.top-partner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 566;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  background: #070b08;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.brand-flag {
  width: 96px;
  height: 54px;
  flex: none;
  object-fit: contain;
  object-position: center;
  border-radius: 3px;
  background: transparent;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.45));
}

.brand-mark {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.55));
}

.brand-name {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 23px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.acct-cluster {
  display: flex;
  align-items: center;
  gap: 7px;
}

.account-menu {
  position: fixed;
  top: 58px;
  right: 22px;
  z-index: 120;
  min-width: 248px;
  padding: 8px 0 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a0a08;
  box-shadow: var(--shadow);
}

.account-menu-backdrop,
.account-sheet-handle,
.account-sheet-hero,
.account-sheet-quick {
  display: none;
}

.account-sheet-list button,
.account-menu .account-sheet-list button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 16px;
  border: 0;
  background: none;
  color: #e8dfcd;
  font: inherit;
  font-size: 13.5px;
  text-align: left;
  cursor: pointer;
}

.account-sheet-list button:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-2);
}

.menu-ico {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--gold-2);
}

.menu-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-out {
  margin-top: 4px;
  border-top: 1px solid var(--line) !important;
  justify-content: center;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 12.5px !important;
  color: #d9cba8 !important;
}

.session {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #262626;
  color: #d0d0d0;
  cursor: pointer;
}

.session:hover {
  background: #2e2e2e;
  color: #f3f3f3;
}

.session-avatar {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
}

.session-user {
  font-family: "Outfit", var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.045em;
  color: #f4f4f4;
  max-width: 148px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wallet {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 76px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: #262626;
  cursor: pointer;
  font: inherit;
  color: #f7f7f7;
}

.wallet:hover {
  background: #2e2e2e;
}

.wallet b {
  font-family: "Outfit", var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f7f7f7;
  font-variant-numeric: tabular-nums;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: 0.18s ease;
}

.btn-login {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--line-strong);
  padding: 9px 18px;
}

.btn-login:hover {
  background: rgba(212, 175, 55, 0.1);
}

.btn-register {
  background: linear-gradient(180deg, var(--gold-2), var(--gold), var(--gold-3));
  color: #14100a;
  padding: 9px 18px;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.22);
}

.site-header .btn-login {
  border: 0;
  color: #eee;
  padding: 7px 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.site-header .btn-login:hover {
  background: none;
  color: var(--gold-2);
}

.site-header .btn-register {
  background: #fdfdfd;
  color: #111;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.site-header .btn-register:hover {
  background: var(--gold-2);
}

.btn:hover {
  transform: translateY(-1px);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
  padding: 0 12px 4px;
  overflow: visible;
  position: relative;
  z-index: 8;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0;
  color: #e6e6e6;
  cursor: pointer;
  padding: 10px 12px;
  position: relative;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-ico,
.nav-plane {
  width: 16px;
  height: 16px;
  flex: none;
  fill: currentColor;
}

.nav-link::after {
  display: none;
}

.nav-link:hover,
.nav-link.active,
.nav-item:hover .nav-link {
  color: var(--gold-2);
}

.nav-pill {
  margin-left: 2px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1408;
  background: var(--gold-2);
  border-radius: 2px;
  padding: 1px 4px;
}

.nav-drop {
  position: absolute;
  top: 100%;
  left: 0;
  width: 235px;
  padding: 10px;
  background: rgba(31, 31, 31, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 0;
  border-radius: 0 0 5px 5px;
  box-shadow: none;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-drop::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-drop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to left, rgba(19, 19, 19, 0.13) 5%, #fedd14 50%, rgba(19, 19, 19, 0.13) 95%);
  pointer-events: none;
}

.nav-item:hover,
.nav-item:focus-within {
  z-index: 20;
}

.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item:nth-last-child(-n + 2) .nav-drop,
.nav-more .nav-drop {
  left: auto;
  right: 0;
}

.nav-more .nav-drop {
  width: 235px;
}

.nav-drop-label {
  margin: 8px 10px 6px;
  color: rgba(230, 230, 230, 0.45);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-drop-all,
.nav-drop-list button,
.nav-more .nav-drop button {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 34px;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  color: #e6e6e6;
  cursor: pointer;
  font: 500 14px/1 var(--font);
  letter-spacing: 0.1px;
  text-align: left;
  text-transform: none;
}

.nav-drop-all {
  justify-content: flex-start;
}

.nav-drop-list {
  display: grid;
  gap: 4px;
}

.nav-drop-all::before,
.nav-drop-list button::before,
.nav-more .nav-drop button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: transparent;
}

.nav-drop-all:hover,
.nav-drop-list button:hover,
.nav-more .nav-drop button:hover {
  color: #fff;
  background: linear-gradient(#222 0%, #1a1a1a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 8px rgba(241, 212, 140, 0.3);
}

.nav-drop-all:hover::before,
.nav-drop-list button:hover::before,
.nav-more .nav-drop button:hover::before {
  background: #fedd14;
}

.nav-badge {
  flex: none;
  font: 500 8px/12px var(--font);
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  padding: 0 4px;
  border-radius: 5px;
  color: #fff;
  background: #6e3a85;
}

.nav-badge.jackpot {
  background: #7b6418;
}

.catalog-count {
  color: var(--muted);
  letter-spacing: 0.08em;
  font-size: 11px;
  text-transform: uppercase;
}

.catalog-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.catalog-search {
  flex: 1 1 220px;
  min-width: 200px;
  background: #0c0c0a;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
}

.catalog-search:focus,
.catalog-select:focus {
  outline: 1px solid var(--line-strong);
}

.catalog-select {
  flex: 0 1 220px;
  min-width: 180px;
  background: #0c0c0a;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
}

.catalog-more {
  display: block;
  margin: 22px auto 0;
  background: #12110d;
  border: 1px solid var(--line);
  color: var(--gold-2);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-more:hover {
  border-color: var(--line-strong);
}

.catalog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 2 1 380px;
}

.chip {
  background: #12110d;
  border: 1px solid var(--line);
  color: #cfc6b4;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.chip:hover,
.chip.active {
  color: var(--gold-2);
  border-color: var(--line-strong);
}

.catalog-empty {
  color: var(--muted);
  text-align: center;
  padding: 28px 10px 10px;
}

.live-lobby {
  margin: 4px 0 22px;
}

.live-cats {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0 16px;
}

.live-cats::-webkit-scrollbar {
  display: none;
}

.live-cat {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #171717;
  border: 0;
  color: #d4d4d4;
  padding: 9px 16px;
  border-radius: 999px;
  font: 500 13px/1 var(--font);
  white-space: nowrap;
  cursor: pointer;
  transition: 0.16s ease;
}

.live-cat svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.live-cat:hover {
  background: #222;
  color: #fff;
}

.live-cat.active {
  background: #2a2a2a;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.live-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cw-tools .live-search {
  padding: 0 42px 0 18px;
}

.cw-tools .live-search-wrap svg {
  left: auto;
  right: 16px;
}

.live-random {
  flex: none;
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #141414;
  color: #eee;
  font: 500 14px/1 var(--font);
  white-space: nowrap;
  cursor: pointer;
}

.live-random:hover {
  background: #1d1d1d;
}

.live-search-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.live-search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  fill: #8d8d8d;
  pointer-events: none;
}

.live-search {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #141414;
  color: #eee;
  padding: 0 18px 0 42px;
  font: 500 14px/1 var(--font);
}

.live-search::placeholder {
  color: #8a8a8a;
}

.live-search:focus {
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

.live-prov {
  position: relative;
  flex: none;
}

.live-prov-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px 0 18px;
  border: 0;
  border-radius: 999px;
  background: #141414;
  color: #eee;
  font: 500 14px/1 var(--font);
  cursor: pointer;
}

.live-prov-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.live-prov-btn:hover,
.live-prov.open .live-prov-btn {
  background: #1d1d1d;
}

.live-prov-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: min(280px, 80vw);
  padding: 8px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  z-index: 24;
}

.live-prov-item {
  display: flex;
  width: 100%;
  align-items: center;
  background: transparent;
  border: 0;
  color: #e6e6e6;
  padding: 11px 12px;
  border-radius: 10px;
  font: 500 13px/1 var(--font);
  cursor: pointer;
  text-align: left;
}

.live-prov-item:hover,
.live-prov-item.active {
  background: #222;
  color: var(--gold-2);
}

.overlay-providers {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  z-index: 90;
}

.prov-popup {
  width: min(712px, calc(100vw - 32px));
  height: min(632px, calc(100vh - 32px));
  background: #131313;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
}

.prov-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 8px;
}

.prov-popup-title {
  font: 500 16px/1.2 var(--font);
  color: #fff;
}

.prov-popup-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.prov-popup-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.prov-popup-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.prov-popup-search {
  position: relative;
  display: block;
  margin: 8px 20px 14px;
}

.prov-popup-search span {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  font: 400 13px/1 var(--font);
  pointer-events: none;
  transition: 0.15s ease;
}

.prov-popup-search input {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #1d1d1d;
  color: #fff;
  padding: 0 42px 0 16px;
  font: 500 14px/1 var(--font);
}

.prov-popup-search input:focus {
  outline: 1px solid rgba(255, 255, 255, 0.12);
}

.prov-popup-search:focus-within span,
.prov-popup-search.has-value span {
  top: 0;
  left: 14px;
  transform: translateY(-50%) scale(0.82);
  background: #131313;
  padding: 0 4px;
  opacity: 1;
}

.prov-popup-search svg {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  fill: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.prov-popup-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 10px;
  color: rgba(255, 255, 255, 0.72);
  font: 400 13px/1 var(--font);
}

.prov-popup-toggle {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.prov-popup-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.prov-popup-toggle:hover,
.prov-popup-toggle.active {
  color: #fff;
}

.prov-popup-grid {
  flex: 1;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  align-content: start;
  padding: 0 20px 12px;
}

.prov-popup-grid.is-list {
  grid-template-columns: 1fr;
}

.prov-tile {
  height: 56px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  display: grid;
  place-items: center;
  padding: 8px 6px;
  cursor: pointer;
  text-align: center;
}

.prov-tile span {
  font: 600 9px/1.2 var(--font);
  letter-spacing: 0.02em;
}

.prov-tile:hover,
.prov-tile.selected {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.88);
}

.prov-popup-grid.is-list .prov-tile {
  height: 44px;
  justify-content: flex-start;
  place-items: center start;
  padding: 0 14px;
}

.prov-popup-grid.is-list .prov-tile span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.prov-popup-foot {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 20px 18px;
}

.prov-popup-reset,
.prov-popup-apply {
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font: 500 13px/1 var(--font);
  cursor: pointer;
}

.prov-popup-reset {
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.prov-popup-apply {
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.88);
}

.prov-popup-reset:hover:not(:disabled),
.prov-popup-apply:hover:not(:disabled) {
  background: #333;
  color: #fff;
}

.prov-popup-apply:not(:disabled) {
  background: #fff;
  color: #111;
}

.prov-popup-reset:disabled,
.prov-popup-apply:disabled {
  opacity: 0.38;
  cursor: default;
}

/* Hero */
.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.hero,
.hero-static {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #050505;
}

.hero {
  aspect-ratio: 2.8 / 1;
}

.hero-static {
  min-height: 0;
}

.hero-static img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-wordmark {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 3;
  pointer-events: none;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(13px, 1.35vw, 20px);
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(180deg, #fff8e1 0%, #f4d980 36%, #d4af37 68%, #8f6b12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 248, 225, 0.35)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
}

.hero-static .hero-wordmark {
  right: 12px;
  bottom: 10px;
  font-size: clamp(12px, 1.2vw, 18px);
  letter-spacing: 0.14em;
}

.hero:hover,
.hero-static:hover {
  border-color: var(--line-strong);
}

.slides {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.slide.active {
  opacity: 1;
}

.hero-mark {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 168px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(12, 10, 6, 0.92), rgba(5, 5, 5, 0.96));
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 10px 24px rgba(0, 0, 0, 0.45);
  color: var(--gold-2);
  font: 800 13px/1 var(--display);
  letter-spacing: 0.16em;
}

.hero-mark svg {
  width: 18px;
  height: 18px;
}

.slide-notice .hero-notice {
  position: absolute;
  top: 16%;
  right: 4%;
  z-index: 2;
  width: min(42%, 420px);
  padding: 16px 18px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.88), rgba(5, 5, 5, 0.94));
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22);
}

.hero-notice-kicker {
  margin-bottom: 8px;
  color: var(--gold-2);
  font: 800 13px/1.2 var(--display);
  letter-spacing: 0.12em;
}

.hero-notice p + p {
  margin-top: 8px;
}

.hero-notice p {
  color: rgba(246, 241, 228, 0.88);
  font: 500 13px/1.45 var(--font);
}

@media (max-width: 760px) {
  .hero {
    aspect-ratio: 2.8 / 1;
  }

  .slide-notice .hero-notice {
    top: auto;
    bottom: 54px;
    right: 10px;
    left: 10px;
    width: auto;
    padding: 10px 12px;
  }

  .hero-notice p {
    font-size: 12px;
  }

  .hero-mark {
    min-width: 0;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(8, 7, 5, 0.62);
  color: var(--gold-2);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.55;
  transition: 0.2s ease;
}

.hero-nav.prev {
  left: 14px;
}

.hero-nav.next {
  right: 14px;
}

.hero:hover .hero-nav {
  opacity: 0.85;
}

.hero-nav:hover {
  opacity: 1;
  background: rgba(212, 175, 55, 0.22);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 5, 4, 0.5);
}

.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.2s ease;
}

.dot.active {
  width: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

.pager {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  font-size: 11px;
  color: var(--gold-2);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 999px;
}

/* Tiles */
.section {
  margin-top: 32px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: #e3d9c2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head button {
  background: none;
  border: 0;
  color: var(--gold);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Matches */
/* Games */
.games {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.live-games {
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.live-games .game {
  aspect-ratio: 164 / 116;
}

.live-games .game-art {
  object-fit: cover;
}

.game {
  position: relative;
  aspect-ratio: 157 / 109;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0a08;
  border: 1px solid var(--line);
  cursor: pointer;
  isolation: isolate;
  transition: 0.18s ease;
  /* cqh lets the brand patch scale with the card */
  container-type: size;
}

.game:hover,
.game.is-hover {
  border-color: transparent;
  transform: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.game-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.game:hover .game-art,
.game.is-hover .game-art,
.game:hover .brand-patch,
.game.is-hover .brand-patch,
.game:hover .badge-hot,
.game.is-hover .badge-hot {
  filter: blur(10px) brightness(0.42) saturate(0.9);
  transform: scale(1.1);
}

.game-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 10px 36px;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.game:hover .game-hover,
.game.is-hover .game-hover {
  opacity: 1;
}

.game-hover-star,
.game-hover-info {
  position: absolute;
  top: 8px;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.game-hover-star {
  left: 8px;
}

.game-hover-info {
  right: 8px;
}

.game-hover-star svg,
.game-hover-info svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.game-hover-name {
  color: #fff;
  font: 700 14px/1.25 var(--font);
  text-align: center;
  max-width: 92%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.game-hover-play {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  background: #1c1c1e;
  color: #fff;
  border-radius: 999px;
  padding: 6px 20px;
  font: 600 12px/1 var(--font);
  letter-spacing: 0.01em;
}

/* Covers the original brand wordmark baked into the card artwork. */
.brand-patch {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 5px;
  border: 1px solid rgba(233, 196, 106, 0.45);
  background: linear-gradient(180deg, #221a09, #070604);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(244, 217, 128, 0.2);
  font-family: var(--display);
  font-weight: 700;
  font-size: calc(var(--fs) * 1cqh);
  letter-spacing: var(--ls, 0.04em);
  line-height: 1;
  white-space: nowrap;
  color: #f2d68b;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Redraws the corner badge that the crop clipped off. */
.badge-hot {
  position: absolute;
  top: 4%;
  right: 2%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 15%;
  height: 11%;
  border-radius: 3px;
  background: linear-gradient(180deg, #e0483a, #9c1d12);
  color: #fff;
  font-size: 6.5cqh;
  font-weight: 800;
}

/* Footer */
.footer {
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer h4 {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer button.link {
  display: block;
  background: none;
  border: 0;
  color: #8c8474;
  font-size: 13px;
  text-align: left;
  padding: 4px 0;
  cursor: pointer;
}

.footer button.link:hover {
  color: var(--gold-2);
}

.info-page {
  max-width: 860px;
  padding: 28px 0 10px;
}

.info-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #8a8374;
  font-size: 12.5px;
}

.info-crumb button {
  background: none;
  border: 0;
  padding: 0;
  color: #cfc5ae;
  font: inherit;
  cursor: pointer;
}

.info-crumb button:hover {
  color: var(--gold-2);
}

.info-page h2 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f4f4f4;
  margin-bottom: 18px;
}

.info-body {
  color: #b9b3a6;
  font-size: 14.5px;
  line-height: 1.75;
}

.info-body p + p,
.info-body p + ul,
.info-body ul + p {
  margin-top: 14px;
}

.info-body ul {
  padding-left: 18px;
}

.info-body li + li {
  margin-top: 6px;
}

.info-body strong {
  color: #ece8de;
}

.sponsors {
  margin-top: 34px;
  text-align: center;
}

.sponsors h4 {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 11.5px;
  margin-bottom: 16px;
}

.partner-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(430px, 100%);
  min-height: 116px;
  padding: 14px 22px 14px 16px;
  border-radius: 28px;
  background: #161616;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.partner-photo {
  position: relative;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}

.partner-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  background: #0c0c0c;
}

.partner-badge {
  position: absolute;
  left: 50%;
  bottom: -5px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 2px #161616;
}

.partner-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.partner-badge-text {
  color: #f0e6c8;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.partner-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.partner-meta strong {
  color: #f7f7f7;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.partner-meta em {
  color: #c4a056;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
}

.partner-meta span {
  color: #d4af37;
  font-size: 13px;
  font-weight: 700;
}

.legal {
  margin-top: 26px;
  color: #6f695d;
  font-size: 11px;
  text-align: center;
  line-height: 1.6;
}

.cga-block {
  margin-top: 28px;
  padding-top: 22px;
  text-align: center;
}

.cga-link {
  display: inline-block;
  line-height: 0;
}

.cga-link img {
  width: 112px;
  height: auto;
  border-radius: 4px;
}

.cga-legal {
  margin: 22px auto 0;
  max-width: 860px;
  color: #6f695d;
  font-size: 11px;
  line-height: 1.65;
}

.footer-stores {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-stores img {
  display: block;
  height: 44px;
  width: auto;
}

.footer-seals {
  margin-top: 22px;
  padding: 10px 0 0;
  display: flex;
  justify-content: center;
}

.footer-seals img {
  display: block;
  width: min(640px, 92vw);
  height: auto;
}

.footer-payments {
  margin-top: 28px;
  padding-top: 18px;
}

.footer-payments h4 {
  text-align: center;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: #8a8376;
  margin-bottom: 14px;
}

.footer-pay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-pay img {
  display: block;
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: #0d0d0d;
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.help {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold), var(--gold-3));
  color: #16110a;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6);
  z-index: 40;
}

/* Modals */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  place-items: center;
  z-index: 50;
  padding: 20px;
}

.overlay.open {
  display: grid;
}

.cashier-overlay {
  padding: 0;
  top: var(--hdr-h, 104px);
  z-index: 70;
  background: #070706;
}

.cashier-overlay.open {
  display: block;
}

.overlay-front {
  z-index: 80;
}

.cashier {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #070706;
}

.cashier-side {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  background: #0a0a08;
}

.cashier-user b {
  display: block;
  font-size: 15px;
}

.cashier-user small {
  color: var(--muted);
  font-size: 12px;
}

.bal-card {
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;
}

.bal-card span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.bal-card strong {
  display: block;
  font-size: 26px;
  letter-spacing: 0.02em;
}

.bal-main {
  background: linear-gradient(180deg, #122016, #0b120e);
  border: 1px solid rgba(80, 180, 110, 0.35);
}

.bal-main span {
  color: #8fd9a4;
}

.bal-bonus {
  background: linear-gradient(180deg, #1a160c, #100e08);
  border: 1px solid var(--line);
}

.bal-bonus span,
.bal-bonus small {
  color: #c8b27a;
}

.bal-bonus small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
}

.bal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.bal-actions button {
  padding: 8px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0c0a;
  color: #e6dcc4;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.bal-actions button:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.cashier-nav {
  margin-top: 22px;
  display: grid;
}

.nav-acc {
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.nav-acc summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
  list-style: none;
  cursor: pointer;
  color: #e8dfcd;
  font-size: 13.5px;
  font-weight: 700;
}

.nav-acc summary::-webkit-details-marker {
  display: none;
}

.nav-acc summary::after {
  content: "⌃";
  font-size: 12px;
  color: var(--gold-2);
  transform: rotate(180deg);
}

.nav-acc[open] summary {
  border-bottom: 1px solid var(--gold);
}

.nav-acc[open] summary::after {
  transform: rotate(0deg);
}

.nav-acc button,
.nav-plain {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 8px 10px 18px;
  border: 0;
  background: none;
  color: #cfc5ae;
  font: inherit;
  font-size: 13.5px;
  cursor: pointer;
}

.nav-plain {
  padding-left: 4px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.cashier-nav button:hover,
.cashier-nav button.active {
  color: var(--gold-2);
}

.cashier-main {
  min-width: 0;
  padding: 22px 28px 32px;
  overflow: auto;
}

.cashier-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.cashier-close {
  flex: none;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #2a2a2a;
  color: #f3f3f3;
  cursor: pointer;
}

.cashier-close:hover {
  background: #3d3d3d;
  color: #fff;
}

.cashier-close svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.cashier-menu {
  display: none;
  flex: none;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #2a2a2a;
  color: #f4d980;
  cursor: pointer;
}

.cashier-menu svg {
  width: 18px;
  height: 18px;
}

.cashier-head h2 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  flex: 1;
  min-width: 0;
}

.pay-hero {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  margin-bottom: 4px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #070707;
}

.pay-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.pay-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.88) 0%, rgba(6, 6, 6, 0.42) 38%, rgba(6, 6, 6, 0.12) 58%, rgba(6, 6, 6, 0.72) 100%);
}

.pay-hero strong {
  position: absolute;
  left: 28px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: #fff;
  font: 800 54px/0.9 var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.pay-hero-copy {
  position: absolute;
  right: 22px;
  top: 50%;
  z-index: 1;
  width: min(340px, 38%);
  transform: translateY(-50%);
  color: #ececec;
}

.pay-hero-copy b {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font: 800 13px/1.2 var(--font);
  letter-spacing: 0.08em;
}

.pay-hero-copy ul {
  margin: 0;
  padding-left: 16px;
}

.pay-hero-copy li {
  margin-bottom: 6px;
  color: #d8d8d8;
  font: 500 12px/1.45 var(--font);
}

.pay-tile.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.pay-detail {
  margin-top: 22px;
}

.pay-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 4px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pay-meta span,
.pay-rows span {
  display: block;
  margin-bottom: 6px;
  color: #8d8d8d;
  font: 600 12px/1 var(--font);
}

.pay-meta b,
.pay-rows b {
  color: #f2f2f2;
  font: 600 13px/1.3 var(--font);
}

.pay-rows {
  display: grid;
  gap: 0;
  margin: 8px 0 16px;
}

.pay-rows > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding: 8px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pay-rows span,
.pay-rows b {
  margin: 0;
}

.pay-hint {
  margin: 12px 0 18px;
  color: #9a9a9a;
  font: 500 13px/1.45 var(--font);
}

#dep-amount,
#wd-amount,
#wd-account {
  width: 100%;
  margin-bottom: 16px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0a0a08;
  color: var(--text);
  font: inherit;
}

.pay-tabs {
  display: flex;
  gap: 8px;
  margin: 18px 0 16px;
  flex-wrap: wrap;
}

.pay-tabs button {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0c0a;
  color: #d8cfb8;
  font: inherit;
  font-size: 12.5px;
  cursor: pointer;
}

.pay-tabs button.active {
  border-color: var(--gold);
  color: #16110a;
  background: linear-gradient(180deg, var(--gold-2), var(--gold), var(--gold-3));
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pay-tile {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 16px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0c0c0a;
  color: #e8dfcd;
  font: inherit;
  cursor: pointer;
}

.pay-tile:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.pay-logo {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.2);
}

.pay-logo-wrap {
  position: relative;
  width: 118px;
  height: 118px;
}

.pay-logo-wrap .pay-logo {
  width: 100%;
  height: 100%;
}

.pay-badge {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 22%;
  z-index: 1;
  margin: 0;
  padding: 5px 6px;
  border-radius: 6px;
  background: rgba(7, 5, 2, 0.82);
  border: 1px solid rgba(233, 196, 106, 0.7);
  color: #f6e7b2;
  font-family: var(--display);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.pay-tile b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #1a160c, #0d0c08);
  border: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.pay-tile > span:last-child {
  font-size: 12px;
  text-align: center;
}

.pay-foot {
  margin-top: 18px;
  color: #8a8272;
  font-size: 12px;
  line-height: 1.6;
}

.method-card {
  max-width: 460px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(180deg, #14120c, #0a0a08);
}

.method-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.method-top h3 {
  font-family: var(--display);
  font-size: 22px;
}

.method-top span,
.method-note {
  color: var(--muted);
  font-size: 12.5px;
}

.method-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}

.promo-input,
#method-amount {
  width: 100%;
  margin-bottom: 16px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0a0a08;
  color: var(--text);
  font: inherit;
}

.back-link {
  margin-bottom: 16px;
  border: 0;
  background: none;
  color: var(--gold-2);
  font: inherit;
  cursor: pointer;
}

.bonus-stage {
  min-height: 220px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 14px;
}

.bonus-card {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: center;
  cursor: default;
  pointer-events: none;
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0a0a08;
  box-shadow: var(--shadow);
}

.bonus-card span {
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

.empty-card {
  max-width: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0c0c0a;
}

.empty-card h3 {
  font-family: var(--display);
  margin-bottom: 8px;
}

.empty-card p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .cashier {
    grid-template-columns: 1fr;
    position: relative;
    min-height: 100%;
  }
  .cashier-menu {
    display: grid;
  }
  .cashier-side {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 6;
    overflow: auto;
    border-right: 0;
    border-bottom: 0;
    background: #0a0a08;
    padding: 72px 16px 32px;
  }
  .cashier.show-menu .cashier-side {
    display: block;
  }
  .cashier-head {
    position: sticky;
    top: 0;
    z-index: 8;
    margin: 0 -8px 14px;
    padding: 8px;
    background: #070706;
  }
  .cashier-main {
    padding: 12px 14px 28px;
  }
  .pay-grid,
  .pay-notice {
    grid-template-columns: 1fr 1fr;
  }
  .pay-hero {
    min-height: 0;
    display: grid;
    gap: 8px;
    padding: 12px;
    background: #12120e;
  }
  .pay-hero img,
  .pay-hero::after {
    display: none;
  }
  .pay-hero strong,
  .pay-hero-copy {
    position: static;
    transform: none;
    width: auto;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
  }
  .pay-hero strong {
    font-size: 22px;
  }
  .pay-meta {
    grid-template-columns: 1fr 1fr;
  }

  .pd-grid {
    grid-template-columns: 1fr;
  }
}

.modal {
  width: min(420px, 100%);
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 24px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.modal h3 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f3f3f3;
  margin-bottom: 10px;
}

.modal p {
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.overlay-auth {
  background: rgba(0, 0, 0, 0.7);
}

.cw-auth {
  width: min(400px, calc(100vw - 24px));
  max-height: min(860px, 94vh);
  background: rgba(19, 19, 19, 0.92);
  border-radius: 5px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cw-auth--register {
  width: min(720px, calc(100vw - 24px));
}

.cw-auth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 15px 0 15px;
}

.cw-brand {
  line-height: 1;
}

.cw-auth-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cw-switch {
  height: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 5px;
  background: #fdfdfd;
  color: #000;
  font: 500 12px/1 var(--font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.cw-auth--register .cw-switch {
  background: transparent;
  color: #fff;
  height: auto;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
}

.cw-close {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.cw-close svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.cw-form {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0 15px 8px;
}

.cw-form--login {
  padding-bottom: 0;
}

.cw-form--register {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  flex: 1;
  padding: 0;
}

.cw-copy {
  margin: 6px 0 14px;
}

.cw-kicker {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

.cw-title {
  margin: 0;
  color: #fff;
  font: 400 18px/20px var(--font);
  text-transform: uppercase;
}

.cw-field {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.cw-field input,
.cw-field select {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 20px 44px 4px 15px;
  font: 400 14px/1.2 var(--font);
}

.cw-field select {
  appearance: none;
  cursor: pointer;
}

.cw-field span {
  position: absolute;
  left: 15px;
  top: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 14px;
  pointer-events: none;
  transition: 0.12s ease;
}

.cw-field:focus-within span,
.cw-field:has(input:not(:placeholder-shown)) span,
.cw-field--filled span,
.cw-field--select span {
  top: 8px;
  font-size: 12px;
}

.cw-field input::placeholder {
  color: transparent;
}

.cw-field input:focus,
.cw-field select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.cw-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cw-eye::before {
  content: "";
  display: block;
  width: 16px;
  height: 10px;
  margin: 9px auto 0;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
}

.cw-eye::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.cw-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  cursor: pointer;
}

.cw-check input {
  position: absolute;
  opacity: 0;
}

.cw-check i {
  flex: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.cw-check input:checked + i {
  background: #fff;
  box-shadow: inset 0 0 0 4px #111;
}

.cw-check--terms {
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.5;
}

.cw-check--terms em {
  font-style: normal;
  text-decoration: underline;
}

.cw-submit {
  width: 100%;
  height: 36px;
  border: 0;
  border-radius: 5px;
  background: #fff;
  color: #000205;
  font: 500 14px/1 var(--font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.cw-forgot {
  display: block;
  width: 100%;
  margin: 16px 0 18px;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font: 500 14px/16px var(--font);
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}

.cw-promo {
  margin: 0 -15px 4px;
  background: #111;
}

.cw-promo img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.cw-reg-grid {
  display: contents;
}

.cw-reg-side {
  grid-column: 1;
  grid-row: 1 / -1;
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #0d0d0d;
}

.cw-reg-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 42%;
}

.cw-reg-main {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0 15px 8px;
}

.cw-reg-scroll {
  overflow-y: auto;
  max-height: min(420px, 52vh);
  padding-right: 4px;
}

.cw-phone {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
}

.cw-reg-foot {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  padding: 12px 15px 12px;
  background: rgba(255, 255, 255, 0.05);
}

.form-error {
  margin: 0 0 12px;
  border: 1px solid rgba(192, 57, 43, 0.7);
  background: rgba(120, 22, 16, 0.5);
  color: #ffd8d0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 760px) {
  .cw-auth--register {
    width: min(400px, calc(100vw - 24px));
  }

  .cw-form--register {
    grid-template-columns: 1fr;
    grid-template-rows: 168px minmax(0, 1fr) auto;
  }

  .cw-reg-side {
    grid-column: 1;
    grid-row: 1;
    min-height: 168px;
  }

  .cw-reg-side img {
    object-position: 50% 40%;
  }

  .cw-reg-main {
    grid-column: 1;
    grid-row: 2;
  }

  .cw-reg-foot {
    grid-column: 1;
    grid-row: 3;
  }
}

.account-list {
  display: none;
}

.pd-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.pd-tabs button {
  height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0c0a;
  color: #d8cfb8;
  font: 700 13px/1 var(--font);
  cursor: pointer;
}

.pd-tabs button.active {
  border-color: var(--gold);
  color: #16110a;
  background: linear-gradient(180deg, var(--gold-2), var(--gold), var(--gold-3));
}

.pd-lead {
  margin: 0 0 14px;
  color: #9a9182;
  font: 500 13px/1.45 var(--font);
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #2a2a2a;
  background: #2a2a2a;
  gap: 1px;
}

.pd-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 58px;
  padding: 8px 14px 10px;
  background: #111;
  color: #d8d8d8;
}

.pd-cell.pd-full,
.pd-cell.pd-pass {
  grid-column: 1 / -1;
}

.pd-cell span {
  margin-bottom: 4px;
  color: #8b8b8b;
  font: 600 12px/1.2 var(--font);
}

.pd-cell b,
.pd-cell input,
.pd-cell select {
  background: transparent;
  border: 0;
  color: #f1f1f1;
  font: 600 14px/1.35 var(--font);
  outline: none;
  width: 100%;
  padding: 0;
}

.pd-cell select {
  appearance: none;
}

.pd-lock b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pd-lock img {
  width: 16px;
  height: 11px;
  object-fit: cover;
  border-radius: 2px;
}

.pd-lock::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 12px;
  height: 14px;
  transform: translateY(-50%);
  background:
    linear-gradient(#8d8d8d, #8d8d8d) 3px 7px / 6px 6px no-repeat,
    radial-gradient(circle at 50% 38%, transparent 38%, #8d8d8d 40% 62%, transparent 64%);
  opacity: 0.7;
}

.pd-lock {
  position: relative;
  padding-right: 36px;
}

.pd-warn {
  margin: 18px 0 0;
  padding: 11px 16px;
  background: #3a1418;
  color: #d7d7d7;
  text-align: center;
  font: 500 13px/1.4 var(--font);
}

.pd-pass {
  border: 1px solid #2a2a2a;
  border-top: 0;
  background: #111;
}

.pd-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.pd-save {
  min-width: 220px;
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: #3a3a3a;
  color: #cfcfcf;
  font: 700 12px/1 var(--font);
  letter-spacing: 0.04em;
  cursor: pointer;
}

.pd-save:hover {
  background: #4a4a4a;
  color: #fff;
}

.check b {
  color: var(--gold-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 0;
}

.modal-actions .btn {
  flex: 1;
  padding: 0;
  height: 44px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-outline {
  background: transparent;
  color: #d0d0d0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-alert {
  background: #f2f2f2;
  color: #111;
  border: 0;
  box-shadow: none;
}

.btn-alert:hover {
  background: #fff;
  transform: none;
}

.popup-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  color: #c8c8c8;
}

.popup-icon svg {
  width: 44px;
  height: 44px;
}

.popup-center {
  text-align: center;
}

.popup-center h3 {
  margin-bottom: 10px;
}

.modal-deposit-ok {
  border-color: rgba(61, 220, 132, 0.35);
}

.modal-deposit-ok .deposit-ok-msg {
  margin: 8px 0 18px;
  color: #3ddc84;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.jp-widget {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 16px 16px 8px;
  margin-bottom: 8px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.2) 0%, #050505 92%),
    url("https://www.cashwin1093.com/assets/jackpot-bg.png") center / cover no-repeat,
    #0a0a0a;
}

.jp-provs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
}

.jp-provs::-webkit-scrollbar {
  display: none;
}

.jp-prov {
  flex: none;
  min-width: 122px;
  height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  color: rgba(255, 255, 255, 0.72);
  font: 700 12px/1 var(--font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.jp-prov:hover,
.jp-prov.active {
  background: rgba(255, 255, 255, 0.88);
  color: #111;
}

.jp-body {
  position: relative;
  z-index: 1;
  padding: 28px 8px 18px;
}

.jp-title {
  text-align: center;
  font: 500 28px/1.15 var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
}

.jp-first,
.jp-rest {
  display: grid;
  gap: 12px;
}

.jp-rest {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.jp-pool {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.jp-first .jp-pool {
  justify-content: center;
}

.jp-pool img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: none;
}

.jp-pool-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.jp-pool-label {
  color: rgba(255, 255, 255, 0.55);
  font: 600 12px/1 var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jp-pool-money {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #fff;
  font: 600 22px/1.1 var(--font);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.jp-tools {
  margin: 22px 0 8px;
}

.jp-tools .live-search-wrap {
  max-width: 320px;
  flex: none;
}

@media (max-width: 760px) {
  .jp-title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .jp-rest {
    grid-template-columns: 1fr;
  }

  .jp-pool-money {
    font-size: 18px;
  }

  .jp-tools .live-search-wrap {
    max-width: none;
    flex: 1 1 auto;
  }
}

.tv-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0 36px;
}

.tv-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.tv-tab {
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font: 500 14px/1 var(--font);
  cursor: pointer;
}

.tv-tab.active {
  background: rgba(255, 255, 255, 0.88);
  color: #131313;
}

.tv-free {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font: 500 13px/1 var(--font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.tv-free input {
  width: 36px;
  height: 20px;
  appearance: none;
  border-radius: 999px;
  background: #2a2a2a;
  position: relative;
  cursor: pointer;
}

.tv-free input:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #cfcfcf;
  transition: 0.16s ease;
}

.tv-free input:checked {
  background: #c8e64a;
}

.tv-free input:checked:before {
  left: 19px;
  background: #111;
}

.tv-card {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 42px;
}

.tv-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tv-banner {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.tv-banner img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.tv-status {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 19px;
  padding: 0 8px;
  border: 0;
  background: #343434;
  color: #fff;
  font: 600 11px/19px var(--font);
  text-transform: uppercase;
}

.tv-status.live {
  background: #c8e64a;
  color: #111;
}

.tv-status.upcoming {
  background: #d4af37;
  color: #111;
}

.tv-status.ended {
  background: #3a3a3a;
  color: #bbb;
}

.tv-ticket {
  position: relative;
  padding: 6px 0 2px;
}

.tv-ticket:before,
.tv-ticket:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #050505;
  transform: translateY(-50%);
}

.tv-ticket:before {
  left: -8px;
}

.tv-ticket:after {
  right: -8px;
}

.tv-prize-label {
  color: rgba(255, 255, 255, 0.55);
  font: 600 11px/1 var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tv-prize {
  margin: 6px 0 10px;
  color: #e3e330;
  font: 500 26px/1.1 var(--font);
  font-variant-numeric: tabular-nums;
}

.tv-count-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font: 500 12px/1 var(--font);
  margin-bottom: 6px;
}

.tv-count {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  text-align: center;
}

.tv-count strong {
  display: block;
  color: #fff;
  font: 600 18px/1 var(--font);
  font-variant-numeric: tabular-nums;
}

.tv-count span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font: 500 10px/1 var(--font);
  text-transform: uppercase;
}

.tv-join {
  height: 32px;
  border: 0;
  border-radius: 4px;
  background: #343434;
  color: #fff;
  font: 500 14px/1 var(--font);
  cursor: pointer;
}

.tv-join:hover {
  background: #404040;
}

.tv-title {
  color: #fff;
  font: 500 16px/1.2 var(--font);
  margin-bottom: 8px;
}

.tv-blurb {
  color: rgba(255, 255, 255, 0.72);
  font: 400 14px/1.45 var(--font);
  max-height: 4.3em;
  overflow: hidden;
  white-space: pre-wrap;
}

.tv-card.open .tv-blurb {
  max-height: none;
}

.tv-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 14px;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.8);
  font: 500 14px/1 var(--font);
  cursor: pointer;
}

.tv-more:after {
  content: "›";
  font-size: 16px;
}

.tv-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.tv-box {
  min-height: 94px;
  padding: 15px;
  border-radius: 12px;
  background: #131313;
}

.tv-box h4 {
  color: rgba(255, 255, 255, 0.55);
  font: 500 12px/1 var(--font);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tv-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font: 400 12px/1.35 var(--font);
}

.tv-row + .tv-row {
  margin-top: 6px;
}

.tv-row b {
  color: #fff;
  font-weight: 500;
  text-align: right;
}

.tv-games {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.tv-games .game {
  width: 100%;
}

.tv-plus {
  display: grid;
  place-items: center;
  aspect-ratio: 157 / 109;
  min-height: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: 500 24px/1 var(--font);
  cursor: pointer;
}

@media (max-width: 1100px) {
  .tv-card {
    grid-template-columns: 1fr;
  }

  .tv-meta,
  .tv-games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tv-bar {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 22px;
  }

  .tv-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .tv-games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .nav-hide {
    display: none;
  }
}

@media (max-width: 1100px) {
  .bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .tiles,
  .games {
    grid-template-columns: repeat(4, 1fr);
  }
  .live-games {
    grid-template-columns: repeat(4, 1fr);
  }
  .matches,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .partner-card {
    width: 100%;
    border-radius: 22px;
  }

  .hero-row {
    grid-template-columns: 1fr;
  }

  .hero-static {
    aspect-ratio: 2.8 / 1;
  }

  .hero-wordmark {
    right: 10px;
    bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .bonus-grid,
  .tiles,
  .games {
    grid-template-columns: repeat(2, 1fr);
  }
  .live-games {
    grid-template-columns: repeat(2, 1fr);
  }
  .session-user {
    max-width: 88px;
    font-size: 12.5px;
  }

  .hdr-clock,
  .hdr-lang,
  .hdr-text-btn,
  .hdr-text-static {
    display: none;
  }

  .brand-name {
    font-size: 18px;
  }

  .top-partner {
    display: none;
  }

  .prov-popup-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bt-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bt-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.overlay-bonus-talep {
  padding: 0;
  background: #0b0b0b;
  z-index: 88;
  color-scheme: light;
}

.overlay-bonus-talep.open {
  display: block;
  overflow: auto;
}

.bt-wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.bt-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 22px;
  color: #d8d8d8;
  font: 600 13px/1 var(--font);
  letter-spacing: 0.08em;
}

.bt-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.bt-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.bt-sheet {
  flex: 1;
  margin: 0;
  background: #fff;
  border-radius: 28px 28px 0 0;
  min-height: calc(100vh - 48px);
  overflow: hidden;
}

.bt-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: linear-gradient(180deg, #e8c547 0%, #d4af37 46%, #b8891f 100%);
  color: #1a1408;
  box-shadow: inset 0 1px 0 rgba(255, 244, 200, 0.55);
}

.bt-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bt-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 252, 240, 0.58);
  color: #1a1408;
  font: 600 13px/1 var(--font);
  cursor: pointer;
}

.bt-chip svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.bt-chip.bt-user {
  cursor: default;
}

.bt-chip:hover {
  background: rgba(255, 248, 225, 0.62);
}

.bt-main {
  padding: 22px 24px 40px;
}

.bt-lead {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #2b2b2b;
  font: 600 14px/1.3 var(--font);
}

.bt-lead svg {
  width: 18px;
  height: 18px;
  fill: #b8891f;
}

.bt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bt-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 148px;
  padding: 16px 16px 14px;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 16, 16, 0.03);
  cursor: pointer;
}

.bt-card-top {
  display: grid;
  grid-template-columns: 22px 1fr 20px;
  gap: 8px;
  align-items: start;
}

.bt-card-top svg {
  width: 20px;
  height: 20px;
  fill: #c4a24a;
}

.bt-card-top strong {
  color: #2a2a2a;
  font: 700 14px/1.35 var(--font);
}

.bt-radio {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid #d5d5d5;
  border-radius: 50%;
  background: #fff;
  justify-self: end;
}

.bt-card.selected .bt-radio {
  border-color: #b8891f;
  box-shadow: inset 0 0 0 4px #b8891f;
}

.bt-ask {
  margin-top: auto;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4d980 0%, #d4af37 55%, #b8891f 100%);
  color: #1a1408;
  font: 700 13px/1 var(--font);
  cursor: pointer;
}

.bt-ask:hover {
  filter: brightness(1.05);
}

.bt-past {
  display: grid;
  gap: 10px;
}

.bt-past-item,
.bt-empty {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  color: #333;
  font: 600 14px/1.4 var(--font);
}

.bt-empty {
  color: #777;
}

.bt-note {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff8e1;
  color: #6a5314;
  font: 600 13px/1.4 var(--font);
}

.bt-sheet-in {
  min-height: 0;
  border-radius: 16px;
  color-scheme: light;
}

.cashier-main .bt-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .cashier-main .bt-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.overlay-ops {
  padding: 0;
  z-index: 96;
  background: #070706;
  align-items: stretch;
}

.overlay-ops.open {
  display: block;
  overflow: auto;
}

.ops {
  min-height: 100%;
  padding: 28px 32px 48px;
  color: #f3ead6;
}

.ops-kicker {
  margin: 0 0 6px;
  color: var(--gold-2);
  font: 700 11px/1 var(--font);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ops-gate {
  max-width: 360px;
  margin: 12vh auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #10100c;
}

.ops-gate h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  letter-spacing: 0.06em;
}

.ops-gate p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.ops-gate input {
  width: 100%;
  height: 44px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a0a08;
  color: #f6f1e4;
}

.ops-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.ops-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.04em;
}

.ops-head-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ops-head-actions input {
  width: min(360px, 42vw);
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #10100c;
  color: #f6f1e4;
}

.ops-refresh,
.ops-close {
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #10100c;
  color: var(--gold-2);
  cursor: pointer;
  font: 700 13px/1 var(--font);
}

.ops-close {
  width: 40px;
  padding: 0;
}

.ops-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.ops-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #cfc5ae;
  cursor: pointer;
  font: 700 13px/1 var(--font);
}

.ops-tab.active {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(212, 175, 55, 0.08);
}

.ops-tab b {
  color: var(--gold);
}

.ops-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c0c0a;
}

.ops-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ops-table th,
.ops-table td {
  padding: 11px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  vertical-align: top;
}

.ops-table th {
  color: #c8b27a;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #12120e;
}

.ops-table tr:last-child td {
  border-bottom: 0;
}

.ops-table button {
  border: 0;
  background: none;
  color: var(--gold-2);
  cursor: pointer;
  font: 700 12px/1 var(--font);
}

.ops-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
}

.ops-table .ops-ok,
.ops-table .ops-warn,
.ops-table .ops-danger {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid;
}

.ops-table .ops-ok {
  color: #3ddc84;
  border-color: rgba(61, 220, 132, 0.35);
  background: rgba(61, 220, 132, 0.08);
}

.ops-table .ops-warn {
  color: #f0c36d;
  border-color: rgba(240, 195, 109, 0.35);
  background: rgba(240, 195, 109, 0.08);
}

.ops-table .ops-danger {
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.35);
  background: rgba(255, 107, 107, 0.08);
}

.ops-empty {
  padding: 28px 18px;
  color: var(--muted);
}

.ops-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 8px 0 4px;
}

.ops-detail div {
  display: grid;
  gap: 3px;
}

.ops-detail span {
  color: #8d836f;
  font-size: 11px;
}

.ops-detail b {
  font-weight: 700;
  word-break: break-word;
}

.ops-status {
  color: #f4d980;
}

.ops-status.is-ok {
  color: #3ddc84;
}

.ops-status.is-no {
  color: #ff8a8a;
}

@media (max-width: 900px) {
  .ops-detail {
    grid-template-columns: 1fr;
  }

  .ops-head {
    flex-direction: column;
    align-items: stretch;
  }

  .ops-head-actions input {
    width: 100%;
  }
}

.sb-page {
  padding-top: 8px;
}

.sb-subnav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin: 0 0 12px;
}

.sb-subnav button {
  border: 0;
  background: none;
  color: var(--muted);
  font: 700 13px/1 var(--font);
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.sb-subnav button.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.sb-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 300px;
  gap: 12px;
  min-height: 70vh;
  align-items: start;
}

.sb-left,
.sb-right,
.sb-center {
  background: #0c0c0a;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.sb-left {
  overflow: auto;
  max-height: calc(100vh - var(--hdr-h) - 90px);
}

.sb-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #12120e;
}

.sb-search input {
  border: 0;
  background: none;
  color: inherit;
  width: 100%;
  font: 500 13px/1.3 var(--font);
  outline: none;
}

.sb-search svg {
  width: 16px;
  height: 16px;
  fill: #8d836f;
  flex: none;
}

.sb-modes {
  display: flex;
  gap: 6px;
  padding: 0 10px 10px;
  font-size: 11px;
  color: var(--muted);
}

.sb-modes b {
  color: var(--gold);
}

.sb-pin,
.sb-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: none;
  color: #ddd6c6;
  text-align: left;
  cursor: pointer;
  font: 600 13px/1.2 var(--font);
  padding: 9px 12px;
}

.sb-pin {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #c8b27a;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.sb-pin.active,
.sb-item.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.sb-item b {
  margin-left: auto;
  color: #8d836f;
  font-size: 11px;
}

.sb-caret {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #8d836f;
  flex: none;
}

.sb-caret.open {
  transform: rotate(90deg);
}

.sb-node.d1 .sb-item,
.sb-node.d2 .sb-item {
  padding-left: 22px;
  font-size: 12px;
}

.sb-node.d2 .sb-item {
  padding-left: 34px;
}

.sb-center {
  padding: 12px 12px 18px;
  min-height: 60vh;
}

.sb-center-h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.sb-center-h h2 {
  margin: 0;
  font-size: 16px;
}

.sb-center-h small {
  color: var(--muted);
}

.sb-days {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.sb-day {
  border: 1px solid var(--line);
  background: #12120e;
  color: #c8b27a;
  border-radius: 8px;
  padding: 6px 9px;
  cursor: pointer;
  font: 700 11px/1 var(--font);
}

.sb-day.active {
  border-color: var(--gold);
  color: var(--gold);
}

.sb-comp {
  margin-bottom: 14px;
}

.sb-comp-h {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  color: #c8b27a;
  font-size: 12px;
}

.sb-comp-h img {
  width: 16px;
  height: 12px;
  object-fit: cover;
}

.sb-comp-h strong {
  color: #f3ead0;
}

.sb-cols {
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(3, 64px);
  gap: 6px;
  text-align: center;
  color: #8d836f;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.sb-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px auto 42px;
  gap: 8px;
  align-items: center;
  padding: 8px 4px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.sb-teams {
  display: grid;
  gap: 3px;
}

.sb-teams b {
  font-size: 13px;
  font-weight: 700;
}

.sb-row time {
  color: #c8b27a;
  font-size: 12px;
}

.sb-odds {
  display: grid;
  grid-template-columns: repeat(3, 64px);
  gap: 6px;
}

.sb-odds.two {
  grid-template-columns: repeat(2, 64px);
}

.sb-odds.two + .sb-more {
  justify-self: end;
}

.sb-comp-h:has(+ .sb-row .sb-odds.two) .sb-cols,
.sb-comp:has(.sb-odds.two) .sb-cols {
  grid-template-columns: repeat(2, 64px);
}

.sb-odd {
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: #16140f;
  color: #f4d980;
  border-radius: 6px;
  min-height: 34px;
  font: 800 13px/1 var(--font);
  cursor: pointer;
}

.sb-odd.on,
.sb-odd:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.16);
}

.sb-odd.is-empty {
  display: grid;
  place-items: center;
  color: #5c5648;
  border-style: dashed;
}

.sb-more {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
}

.sb-empty {
  padding: 40px 16px;
  color: var(--muted);
  text-align: center;
}

.sb-outright-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sb-outright .sb-odd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
}

.sb-market-name {
  margin: 0 0 10px;
  color: #c8b27a;
  font-size: 12px;
}

.sb-right {
  padding: 12px 10px 14px;
  position: sticky;
  top: calc(var(--hdr-h) + 12px);
}

.sb-fav h3,
.sb-right h3 {
  margin: 2px 0 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #f3ead0;
}

.sb-fav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: #16140f;
  color: #f3ead0;
  border-radius: 999px;
  padding: 10px 12px;
  font: 700 13px/1 var(--font);
  cursor: pointer;
}

.sb-fav-btn span {
  color: #f4d980;
  font-size: 14px;
}

.sb-slip-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 14px 0 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.sb-slip-tabs button {
  border: 0;
  background: none;
  color: #8d836f;
  padding: 8px 4px 10px;
  font: 800 11px/1 var(--font);
  letter-spacing: 0.04em;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.sb-slip-tabs button.active {
  color: #f4d980;
  border-bottom-color: var(--gold);
}

.sb-slip-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.sb-ask {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c8b27a;
  min-width: 0;
}

.sb-ask svg,
.sb-calc svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.sb-ask select {
  border: 0;
  background: none;
  color: #ddd6c6;
  font: 600 12px/1.2 var(--font);
  outline: none;
  cursor: pointer;
}

.sb-calc {
  color: #8d836f;
}

.sb-slip-mode {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.sb-mode-label {
  color: #ddd6c6;
  font-size: 13px;
  font-weight: 700;
}

.sb-clear {
  border: 0;
  background: none;
  color: #c8b27a;
  font: 600 12px/1 var(--font);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sb-card {
  background: #14120e;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 10px;
  padding: 10px 10px 8px;
  margin-bottom: 8px;
}

.sb-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: #8d836f;
  font-size: 11px;
}

.sb-card header button,
.sb-card-pick button {
  border: 0;
  background: none;
  color: #7b7468;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
}

.sb-card-match {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}

.sb-card-match > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.sb-card-match b {
  font-size: 13px;
  font-weight: 800;
  color: #f3ead0;
}

.sb-card-match em {
  color: #f4d980;
  font: 800 13px/1.2 var(--font);
  font-style: normal;
  flex: none;
}

.sb-ball {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  flex: none;
  background: radial-gradient(circle at 32% 30%, #fff1b0, #d4af37 42%, #7a5a14 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 241, 176, 0.35);
}

.sb-card time {
  display: block;
  margin: 6px 0 8px 24px;
  color: #8d836f;
  font-size: 11px;
}

.sb-card-pick {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: #c8b27a;
  font-size: 12px;
}

.sb-bb {
  display: block;
  margin-top: 8px;
  color: #8d836f;
  font-size: 12px;
}

.sb-slip-foot {
  margin-top: 6px;
}

.sb-oran,
.sb-win {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 2px;
  color: #c8b27a;
  font-size: 13px;
}

.sb-oran b,
.sb-win b {
  color: #f4d980;
  font-size: 14px;
}

.sb-stake {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sb-stake input,
.sb-stake button {
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: #16140f;
  color: #f3ead0;
  border-radius: 8px;
  min-height: 40px;
  padding: 0 10px;
  font: 600 12px/1 var(--font);
}

.sb-stake input::placeholder {
  color: #8d836f;
}

.sb-stake button {
  cursor: pointer;
}

.sb-coupon-empty {
  padding: 18px 8px 24px;
  text-align: center;
  color: var(--muted);
}

.sb-coupon-empty small {
  display: block;
  margin-top: 6px;
}

.sb-go-sport {
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  background: linear-gradient(180deg, #e0c36a, #b8891f);
  color: #1a1406;
  font: 800 12px/1 var(--font);
  cursor: pointer;
}

.kupon-page .kupon-head {
  margin: 0 0 14px;
}

.kupon-page .kupon-head h2 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.04em;
}

.kupon-page .kupon-head p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.kupon-page .sb-right {
  position: static;
  max-width: 560px;
}

.sb-bet {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
  background: linear-gradient(180deg, #e0c36a, #b8891f);
  color: #1a1406;
  font: 800 13px/1 var(--font);
  cursor: pointer;
}

@media (max-width: 1100px) {
  .sb-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .sb-right {
    grid-column: 1 / -1;
    position: static;
  }
}

@media (max-width: 900px) {
  .sb-layout {
    grid-template-columns: 1fr;
  }
  .sb-left {
    max-height: 280px;
  }
  .sb-cols,
  .sb-odds {
    grid-template-columns: repeat(3, minmax(52px, 1fr));
  }
  .sb-row {
    grid-template-columns: minmax(0, 1fr) 44px minmax(160px, auto) 36px;
  }
}
