:root {
  --bs-body-bg: #f6f8fb;
  --app-radius: 1rem;
  --ui-motion-speed: 0.35s;
  --ui-motion-ease: cubic-bezier(.22, .61, .36, 1);
  --player-max: 800px;
  --player-bg: #f7f9fc;
  --player-text: #334b68;
  --player-muted: #546880;
  --player-orange: #ff9d12;
  --player-orange-2: #ff5e34;
  --player-line: rgba(51, 75, 104, .12);
  --player-shadow: 0 10px 30px rgba(27, 45, 70, .08);
  --player-soft-shadow: 0 8px 24px rgba(27, 45, 70, .06);
  --beef-ink: #262e38;
  --beef-soft: #f4f6f8;
  --beef-line: #e6eaf0;
  --beef-muted: #7a8491;
  --beef-gold: #d9b46a;
}

body {
  background: var(--player-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 112px;
}

.wrap {
  width: 100%;
  max-width: var(--player-max);
  margin: 0 auto;
  padding: 16px 8px 120px;
  flex: 1 0 auto;
}

.card {
  border: 0;
  border-radius: var(--app-radius);
  box-shadow: 0 .5rem 1.5rem rgba(15, 23, 42, .08);
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: #fff;
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.table {
  --bs-table-bg: #fff;
  vertical-align: middle;
}

.table th {
  background: #f8fafc;
  font-weight: 700;
  white-space: nowrap;
}

.green {
  background: #198754;
  color: #fff;
  border: 0;
  border-radius: .65rem;
  padding: .55rem .9rem;
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

.btn-green {
  background: #198754;
  color: #fff;
  border: 0;
  border-radius: .65rem;
  padding: .55rem .9rem;
}

.red {
  background: #dc3545;
  color: #fff;
  border: 0;
  border-radius: .65rem;
  padding: .55rem .9rem;
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

.btn-red {
  background: #dc3545;
  color: #fff;
  border: 0;
  border-radius: .65rem;
  padding: .55rem .9rem;
}

.blue {
  background: #0d6efd;
  color: #fff;
  border: 0;
  border-radius: .65rem;
  padding: .55rem .9rem;
}

button {
  border-radius: .65rem;
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

.btn {
  border-radius: .65rem;
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

input {
  border-radius: .65rem;
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

select {
  border-radius: .65rem;
  display: block;
  width: 100%;
  padding: .6rem .75rem;
  border: 1px solid #d0d7de;
  background: #fff;
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

textarea {
  border-radius: .65rem;
  display: block;
  width: 100%;
  padding: .6rem .75rem;
  border: 1px solid #d0d7de;
  background: #fff;
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

input:not([type=hidden]) {
  display: block;
  width: 100%;
  padding: .6rem .75rem;
  border: 1px solid #d0d7de;
  background: #fff;
}

label {
  font-weight: 600;
}

.muted {
  color: #6c757d;
}

.status-success {
  color: #198754;
  font-weight: 700;
}

.status-paid {
  color: #198754;
  font-weight: 700;
}

.status-verified {
  color: #198754;
  font-weight: 700;
}

.status-active {
  color: #198754;
  font-weight: 700;
}

.status-pending {
  color: #f59f00;
  font-weight: 700;
}

.status-failed {
  color: #dc3545;
  font-weight: 700;
}

.status-rejected {
  color: #dc3545;
  font-weight: 700;
}

.status-deleted {
  color: #dc3545;
  font-weight: 700;
}

.status-public {
  color: #0d6efd;
  font-weight: 700;
}

.status-draft {
  color: #6c757d;
  font-weight: 700;
}

.inline-row {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.inline-row .grow {
  flex: 1;
}

.locked {
  border: 2px solid #ffc107;
}

.game-card {
  transition: opacity .35s ease, transform .35s ease;
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  opacity: 1;
  transform: scale(1);
  will-change: opacity, transform;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--player-soft-shadow);
}

.game-card:hover {
  transform: translateY(-2px);
}

html {
  min-height: 100%;
}

.page-shell {
  flex: 1 0 auto;
}

main {
  flex: 1 0 auto;
}

.main-content {
  flex: 1 0 auto;
}

.navbar {
  display: none;
}

.desktop-player-nav {
  display: none;
}

.player-navbar {
  display: none;
}

.top-navbar {
  display: none;
}

.main-nav-toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.main-bottom-nav {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 1040;
  width: min(540px, calc(100% - 22px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  border-radius: 30px;
  background: rgba(247, 247, 247, .78);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .22), inset 0 1px 0 rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
}

.main-bottom-nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, .12));
}

.main-nav-item {
  position: relative;
  z-index: 1;
  color: rgba(60, 60, 67, .72);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 68px;
  border-radius: 22px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -.15px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--ui-motion-speed) var(--ui-motion-ease), color var(--ui-motion-speed) var(--ui-motion-ease), transform var(--ui-motion-speed) var(--ui-motion-ease), box-shadow var(--ui-motion-speed) var(--ui-motion-ease), opacity var(--ui-motion-speed) var(--ui-motion-ease);
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

.main-nav-icon {
  width: 32px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.main-nav-item i {
  font-size: 22px;
  line-height: 1;
}

.main-nav-text {
  display: block;
}

.main-nav-item:hover {
  color: #0a84ff;
  transform: translateY(-2px);
}

.main-nav-item:focus {
  color: #0a84ff;
  transform: translateY(-2px);
}

.main-nav-more:hover {
  color: #0a84ff;
  transform: translateY(-2px);
}

.main-nav-item.is-active {
  color: #0a84ff;
}

.main-nav-item.is-active .main-nav-icon {
  background: rgba(10, 132, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(10, 132, 255, .08);
}

.main-nav-item.is-active::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #0a84ff;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.main-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1045;
  background: rgba(0, 0, 0, .38);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ui-motion-speed) var(--ui-motion-ease);
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: opacity, visibility;
}

.main-nav-sidebar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0;
  top: auto;
  z-index: 1050;
  width: min(520px, 100%);
  max-height: min(78dvh, 620px);
  padding: 10px 18px calc(22px + env(safe-area-inset-bottom));
  background: rgba(249, 249, 249, .92);
  border: 1px solid rgba(255, 255, 255, .72);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -18px 55px rgba(15, 23, 42, .24), inset 0 1px 0 rgba(255, 255, 255, .9);
  transform: translate(-50%, 105%);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  transition: transform var(--ui-motion-speed) var(--ui-motion-ease);
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: transform, opacity, visibility, box-shadow;
}

.main-nav-sheet-handle {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(60, 60, 67, .24);
  margin: 0 auto 14px;
}

html.main-nav-open {
  overflow: hidden;
}

body.main-nav-open {
  overflow: hidden;
}

body:has(.main-nav-toggle:checked) {
  overflow: hidden;
}

.main-nav-toggle:checked~.main-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.main-nav-toggle:checked~.main-nav-sidebar {
  transform: translate(-50%, 0);
}

.main-nav-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(60, 60, 67, .12);
}

.main-nav-sidebar-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.8px;
  line-height: 1.05;
  color: #333;
}

.main-nav-sidebar-subtitle {
  color: rgba(60, 60, 67, .64);
  font-size: 13px;
  font-weight: 600;
  margin-top: 3px;
}

.main-nav-close {
  width: 38px;
  height: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(120, 120, 128, .16);
  color: rgba(60, 60, 67, .78);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

.main-nav-side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 12px;
  margin-bottom: 8px;
  border-radius: 18px;
  color: #333;
  text-decoration: none;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(60, 60, 67, .08);
  font-weight: 750;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
  transition: background var(--ui-motion-speed) var(--ui-motion-ease), color var(--ui-motion-speed) var(--ui-motion-ease), transform var(--ui-motion-speed) var(--ui-motion-ease), box-shadow var(--ui-motion-speed) var(--ui-motion-ease);
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

.main-nav-side-link .side-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(10, 132, 255, .12);
  color: #0a84ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.main-nav-side-link i {
  font-size: 18px;
}

.main-nav-side-link .side-arrow {
  margin-left: auto;
  font-size: 14px;
  color: rgba(60, 60, 67, .36);
}

.main-nav-side-link:hover {
  background: #0a84ff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(10, 132, 255, .22);
}

.main-nav-side-link:focus {
  background: #0a84ff;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(10, 132, 255, .22);
}

.main-nav-side-link.is-active {
  background: #0a84ff;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(10, 132, 255, .22);
}

.main-nav-side-link:hover .side-icon {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}

.main-nav-side-link:focus .side-icon {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}

.main-nav-side-link.is-active .side-icon {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}

.main-nav-side-link:hover .side-arrow {
  color: rgba(255, 255, 255, .72);
}

.main-nav-side-link:focus .side-arrow {
  color: rgba(255, 255, 255, .72);
}

.main-nav-side-link.is-active .side-arrow {
  color: rgba(255, 255, 255, .72);
}

[type="button"] {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

[type="submit"] {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

[type="reset"] {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

a {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.platform-card {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.bonus-card {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.setting-card {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.top-actions a {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.top-actions button {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.nav a {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.menu a {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.dropdown-menu {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.dropdown-item {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

.main-nav {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.main-nav * {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.offcanvas {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: transform, opacity, visibility, box-shadow;
}

.offcanvas-backdrop {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: opacity, visibility;
}

.modal {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.modal-dialog {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.modal-content {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.modal-backdrop {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: opacity, visibility;
}

.collapse {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.collapsing {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: height, visibility;
}

.accordion-collapse {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.accordion-button {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

.form-control {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.form-select {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.alert {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.toast {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.popup {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.overlay {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
}

.sidebar {
  transition-duration: var(--ui-motion-speed);
  transition-timing-function: var(--ui-motion-ease);
  transition-property: transform, opacity, visibility, box-shadow;
}

a.btn {
  transition-property: background-color, background, color, border-color, box-shadow, transform, opacity, filter;
}

button:hover {
  transform: translateY(-2px);
}

[type="button"]:hover {
  transform: translateY(-2px);
}

[type="submit"]:hover {
  transform: translateY(-2px);
}

[type="reset"]:hover {
  transform: translateY(-2px);
}

a.btn:hover {
  transform: translateY(-2px);
}

.btn:hover {
  transform: translateY(-2px);
}

.green:hover {
  transform: translateY(-2px);
}

.red:hover {
  transform: translateY(-2px);
}

.main-nav-close:hover {
  transform: translateY(-2px);
}

.dropdown-item:hover {
  transform: translateY(-2px);
}

.accordion-button:hover {
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0) scale(.97);
}

[type="button"]:active {
  transform: translateY(0) scale(.97);
}

[type="submit"]:active {
  transform: translateY(0) scale(.97);
}

[type="reset"]:active {
  transform: translateY(0) scale(.97);
}

a.btn:active {
  transform: translateY(0) scale(.97);
}

.btn:active {
  transform: translateY(0) scale(.97);
}

.green:active {
  transform: translateY(0) scale(.97);
}

.red:active {
  transform: translateY(0) scale(.97);
}

.main-nav-item:active {
  transform: translateY(0) scale(.97);
}

.main-nav-side-link:active {
  transform: translateY(0) scale(.97);
}

.main-nav-close:active {
  transform: translateY(0) scale(.97);
}

.dropdown-item:active {
  transform: translateY(0) scale(.97);
}

.accordion-button:active {
  transform: translateY(0) scale(.97);
}

.modal.fade .modal-dialog {
  transition: transform var(--ui-motion-speed) var(--ui-motion-ease), opacity var(--ui-motion-speed) var(--ui-motion-ease);
  transform: translateY(20px) scale(.98);
}

.modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}

.tab {
  border: 0;
  background: linear-gradient(145deg, rgba(255, 250, 241, .9), rgba(251, 245, 237, .9));
  padding: 0;
  border-radius: 12px;
  transition: .3s;
  margin: 0;
  flex: 0 0 auto;
  position: relative;
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95);
  overflow: visible;
}

.tab .cat-icon {
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 6px 7px rgba(27, 45, 70, .10));
}

.tab.active {
  box-shadow: 0 0 0 1px rgba(255, 192, 67, .28), 0 8px 20px rgba(255, 190, 48, .12);
}

.game-tabs-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
  gap: 14px;
  padding-bottom: 12px;
}

.game-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.game-tabs-arrow {
  position: absolute;
  top: 0;
  z-index: 3;
  width: 28px;
  height: 76px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  border-radius: 5px;
}

.game-tabs-arrow.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.game-tabs-arrow-left {
  left: 0;
}

.game-tabs-arrow-right {
  right: 0;
}

.game-card.game-fade-out {
  opacity: 0;
  transform: scale(.94);
}

.game-card[hidden] {
  display: none;
}

body.bg-light {
  background: var(--player-bg);
}

.player-hero-card {
  width: 100%;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--player-shadow);
  overflow: hidden;
}

.player-game-card {
  width: 100%;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--player-shadow);
  overflow: hidden;
}

#live.card {
  width: 100%;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--player-shadow);
  overflow: hidden;
  padding: 0;
}

.player-hero-inner {
  min-height: 255px;
  padding: 30px 42px 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  background: radial-gradient(circle at 20% 10%,rgba(217,180,106,.22),transparent 34%),linear-gradient(135deg,#fff,#fff);
}

.player-logo-wrap {
  height: 63px;
}

.player-logo {
  object-fit: contain;
}

.player-wallet-label {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--player-text);
  font-size: 13px;
  font-weight: 500;
}

.wallet-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.wallet-pill {
  width: 88px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #dfe5ec;
  background: rgba(255, 255, 255, .76);
  color: var(--player-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: inset 0 1px 2px rgba(27, 45, 70, .04);
}

.wallet-pill i {
  font-size: 17px;
  line-height: 1;
}

.wallet-pill.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--player-orange), var(--player-orange-2));
  box-shadow: 0 8px 18px rgba(255, 119, 25, .24);
}

.wallet-summary-box {
  position: relative;
  width: 276px;
  min-height: 56px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(249, 251, 254, .98), rgba(244, 247, 251, .96));
  border: 1px solid rgba(224, 230, 237, .8);
  box-shadow: 0 10px 24px rgba(27, 45, 70, .08), inset 0 1px 0 rgba(255, 255, 255, .95);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 14px;
}

.wallet-summary-icon {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  color: #ff7a28;
  background: linear-gradient(135deg, #fff1e7, #ffe2d8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.wallet-summary-text {
  color: var(--player-text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1px;
  white-space: nowrap;
}

.wallet-refresh {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: #ff7a28;
  opacity: .72;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wallet-refresh + .wallet-summary-text {
  padding-right: 22px;
}

.player-hero-right {
  padding-top: 99px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-action-btn {
  min-width: 148px;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #dfe5ec;
  background: rgba(255, 255, 255, .75);
  color: var(--player-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: inset 0 1px 2px rgba(27, 45, 70, .04);
}

.hero-action-btn i {
  color: #ff7a18;
  font-size: 18px;
}

.player-game-inner {
  padding: 24px 24px 28px;
}

.tab:nth-child(2) {
  background: linear-gradient(145deg, #fff2ee, #fff8f4);
}

.tab:nth-child(3) {
  background: linear-gradient(145deg, #f4ecff, #faf7ff);
}

.tab:nth-child(4) {
  background: linear-gradient(145deg, #edf2ff, #f8faff);
}

.tab:nth-child(5) {
  background: linear-gradient(145deg, #fff6df, #fffaf0);
}

.tab:nth-child(6) {
  background: linear-gradient(145deg, #ffecef, #fff7f8);
}

.tab:nth-child(7) {
  background: linear-gradient(145deg, #fff2ec, #fff8f5);
}

.tab:nth-child(8) {
  background: linear-gradient(145deg, #f5efff, #fbf8ff);
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -9px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff5e34, #ffbe26);
  box-shadow: 0 4px 10px rgba(255, 119, 25, .28);
}

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

.game-card img {
  border-radius: 8px;
  display: block;
  box-shadow: none;
}

.hot-badge {
  position: absolute;
  top: 8px;
  left: 7px;
  z-index: 2;
  height: 24px;
  min-width: 43px;
  border-radius: 6px;
  padding: 3px 8px 0;
  background: linear-gradient(180deg, #ffbf16, #ff7c00);
  color: #fff;
  box-shadow: 0 4px 9px rgba(228, 96, 0, .22);
  font-size: 12px;
  font-weight: 800;
  line-height: 21px;
  text-shadow: 0 1px 1px rgba(135, 52, 0, .2);
}

.hot-flame {
  position: absolute;
  left: 4px;
  top: -15px;
  font-size: 24px;
  line-height: 1;
}

#live .card-body {
  padding: 24px;
}

.game-tabs-wrap {
  position: relative;
}

.game-tabs-scroll .tab {
  flex: 0 0 78px;
  min-width: 78px;
}

.beef-login-modal .modal-dialog {
  width: min(420px, calc(100% - 28px));
  margin-left: auto;
  margin-right: auto;
}

.beef-login-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(38, 46, 56, .08);
  border-radius: 30px;
  background: radial-gradient(circle at top right, rgba(38, 46, 56, .14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  box-shadow: 0 26px 70px rgba(15, 23, 42, .22);
  padding: 24px;
}

.beef-login-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #fff49e, #fff, #ffeda8);
}

.beef-login-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(38, 46, 56, .08);
  color: #262e38;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.beef-login-close:hover {
  background: #262e38;
  color: #fff;
}

.beef-login-hero {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 10px 46px 22px 0;
}

.beef-login-mark {
  flex: 0 0 58px;
  flex-basis: 58px;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(38, 46, 56, .28);
  font-size: 25px;
}

.beef-login-kicker {
  color: #6b7280;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.beef-login-title {
  color: #111827;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 900;
  margin: 0 0 6px;
}

.beef-login-text {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.beef-login-form {
  display: grid;
  gap: 14px;
}

.beef-login-field label {
  color: #262e38;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 8px;
}

.beef-login-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 1px solid rgba(38, 46, 56, .12);
  border-radius: 19px;
  background: #fff;
  padding: 8px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 12px 30px rgba(15, 23, 42, .06);
}

.beef-login-prefix {
  flex: 0 0 auto;
  min-width: 42px;
  height: 36px;
  border-radius: 13px;
  background: rgba(38, 46, 56, .08);
  color: #262e38;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.beef-login-input {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 8px 4px;
  color: #111827;
  font-size: 17px;
  font-weight: 800;
}

.beef-login-input::placeholder {
  color: #a0a7b2;
  font-weight: 700;
}

.beef-login-input-wrap:focus-within {
  border-color: #262e38;
  box-shadow: 0 0 0 4px rgba(38, 46, 56, .10), 0 14px 34px rgba(15, 23, 42, .08);
}

.beef-login-submit {
  min-height: 52px;
  border: 0;
  border-radius: 18px;
  font-weight: 900;
  margin-top: 4px;
  background: #262e38;
  color: #fff;
  box-shadow: 0 16px 34px rgba(38, 46, 56, .24);
}

.beef-login-cancel {
  min-height: 52px;
  border: 0;
  border-radius: 18px;
  font-weight: 900;
  background: transparent;
  color: #6b7280;
}

.beef-login-submit i {
  font-size: 22px;
  vertical-align: -2px;
}

.beef-login-submit:hover {
  background: #111827;
  color: #fff;
}

.beef-login-cancel:hover {
  background: rgba(38, 46, 56, .07);
  color: #262e38;
}

body.beef-user-page {
  background: linear-gradient(180deg,#f7f8fa 0%,#eef2f6 100%);
  color: var(--beef-ink);
  min-height: 100vh;
}

.beef-page {
  width: 100%;
max-width: 800px;
  margin: 0 auto;
  padding: 18px 14px 92px;
}

.beef-panel {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(38,46,56,.08);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(38,46,56,.08);
  overflow: hidden;
}

.beef-panel-pad {
  padding: 22px;
}

.beef-hero {
  position: relative;
  background: radial-gradient(circle at 20% 10%,rgba(217,180,106,.22),transparent 34%),linear-gradient(135deg,#ffffff,#f4f6f8);
  border-radius: 30px;
  padding: 24px;
  border: 1px solid rgba(38,46,56,.08);
  box-shadow: 0 20px 45px rgba(38,46,56,.08);
}

.beef-title {
  font-weight: 900;
  letter-spacing: -.04em;
  margin: 0;
  color: var(--beef-ink);
}

.beef-sub {
  color: var(--beef-muted);
  font-weight: 600;
  margin: 6px 0 0;
}

.beef-chip {
display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--beef-line);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--beef-ink);
}

.beef-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: #262e38;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 14px 28px rgba(38,46,56,.22);
}

.beef-card {
  background: #fff;
  border: 1px solid var(--beef-line);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(38,46,56,.055);
}

.beef-stat {
  background: linear-gradient(180deg,#fff,#f8fafc);
  border: 1px solid var(--beef-line);
  border-radius: 22px;
  padding: 18px;
  height: 100%;
}

.beef-stat .label {
color: var(--beef-muted);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
}

.beef-stat .value {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.03em;
  margin-top: 5px;
}

.beef-form label {
  font-size: 13px;
  font-weight: 900;
  color: var(--beef-ink);
  margin-bottom: 7px;
}

.beef-form .form-control {
  border-radius: 16px;
  border: 1px solid var(--beef-line);
  padding: 12px 14px;
  font-weight: 700;
  box-shadow: none;
}

.beef-form .form-select {
  border-radius: 16px;
  border: 1px solid var(--beef-line);
  padding: 12px 14px;
  font-weight: 700;
  box-shadow: none;
}

.beef-form .form-control:focus {
  border-color: #262e38;
  box-shadow: 0 0 0 .22rem rgba(38,46,56,.10);
}

.beef-form .form-select:focus {
  border-color: #262e38;
  box-shadow: 0 0 0 .22rem rgba(38,46,56,.10);
}

.beef-btn {
  border: 0;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .2s ease;
}

.beef-btn-dark {
  background: #262e38;
  color: #fff;
  box-shadow: 0 14px 28px rgba(38,46,56,.18);
}

.beef-btn-dark:hover {
  background: #111827;
  color: #fff;
  transform: translateY(-1px);
}

.beef-btn-soft {
  background: #eef2f6;
  color: #262e38;
}

.beef-btn-soft:hover {
  background: #e2e8f0;
  color: #111827;
}

.beef-btn-gold {
  background: #d9b46a;
  color: #262e38;
}

.beef-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.beef-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 10px;
  margin-top: 18px;
}

.beef-tab {
  border: 1px solid var(--beef-line);
  background: #fff;
  border-radius: 18px;
  padding: 13px 14px;
  font-weight: 900;
  color: #526070;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.beef-tab.active {
  background: #262e38;
  color: #fff;
  border-color: #262e38;
  box-shadow: 0 12px 24px rgba(38,46,56,.18);
}

.beef-tab-panel {
  display: none;
  animation: beefFade .22s ease both;
}

.beef-tab-panel.active {
  display: block;
}

.beef-alert {
  border: 1px solid var(--beef-line);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  font-weight: 700;
}

.beef-alert.bad {
  border-color: #fecaca;
  background: #fff1f2;
  color: #991b1b;
}

.beef-alert.good {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.beef-table {
  border-collapse: separate;
  border-spacing: 0 10px;
}

.beef-table th {
  font-size: 12px;
  text-transform: uppercase;
  color: #7a8491;
  border: 0;
}

.beef-table td {
  background: #fff;
  border-top: 1px solid var(--beef-line);
  border-bottom: 1px solid var(--beef-line);
  vertical-align: middle;
  padding: 14px;
}

.beef-table td:first-child {
  border-left: 1px solid var(--beef-line);
  border-radius: 16px 0 0 16px;
}

.beef-table td:last-child {
  border-right: 1px solid var(--beef-line);
  border-radius: 0 16px 16px 0;
}

.amounts.beef-amounts {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 9px;
}

.amounts.beef-amounts button {
  border: 1px solid var(--beef-line);
  background: #f8fafc;
  border-radius: 14px;
  padding: 10px;
  font-weight: 900;
  color: #262e38;
}

.amounts.beef-amounts button:hover {
  background: #262e38;
  color: #fff;
}

.small-muted {
  font-size: 13px;
  color: var(--beef-muted);
  font-weight: 600;
}

.qr-box {
  display: inline-flex;
  padding: 14px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--beef-line);
  box-shadow: 0 12px 30px rgba(38,46,56,.08);
}

@keyframes beefFade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}

@media (max-width:768px) {
.wrap {
  padding: .75rem;
}

.table {
  font-size: .85rem;
}

.table-responsive {
  margin: 0 -.5rem;
}

.inline-row {
  flex-direction: column;
  align-items: stretch;
}

.card {
  padding: 1rem;
}
}

@media (min-width: 768px) {
.main-bottom-nav {
  bottom: 18px;
}
}

@media (max-width: 767.98px) {
body {
  padding-bottom: 112px;
}

.wrap {
  padding-bottom: 1rem;
}

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

.top-actions>* {
  width: 100%;
}
}

@media (max-width: 380px) {
.main-bottom-nav {
  width: calc(100% - 14px);
  padding-left: 7px;
  padding-right: 7px;
  border-radius: 26px;
}

.main-nav-item {
  font-size: 10px;
}

.main-nav-item i {
  font-size: 20px;
}
}

@media (prefers-reduced-motion: reduce) {
* {
  transition: none;
  animation: none;
}

button {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

[type="button"] {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

[type="submit"] {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

[type="reset"] {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

a {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

.btn {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

.green {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

.red {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

.main-nav {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

.main-nav * {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

.offcanvas {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

.modal {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

.collapse {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}

.collapsing {
  transition-duration: 0.35s;
  animation-duration: 0.35s;
}
}

@media (max-width: 820px) {
.wrap {
  padding-left: 8px;
  padding-right: 8px;
}

.player-hero-inner {
  padding: 28px 42px 24px;
}

.wallet-pill {
  width: 87px;
}

.tab {
  width: 76px;
  height: 76px;
}

.game-grid {
  gap: 16px;
}
}

@media (max-width: 640px) {
.player-hero-inner {
  min-height: auto;
  padding: 22px 18px;
  flex-direction: column;
}

.player-hero-right {
  padding-top: 0;
  width: 100%;
  justify-content: stretch;
}

.hero-action-btn {
  flex: 1 1 150px;
}

.wallet-switch {
  width: 100%;
}

.wallet-pill {
  flex: 1;
  width: auto;
}

.wallet-summary-box {
  width: 100%;
}

.player-game-inner {
  padding: 18px 14px 22px;
}

.tab .cat-icon {
  width: 46px;
  height: 46px;
}

.game-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
}

@media (max-width: 420px) {
.beef-login-card {
  border-radius: 26px;
  padding: 20px;
}

.beef-login-hero {
  align-items: flex-start;
  gap: 13px;
  padding-right: 40px;
}

.beef-login-mark {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  border-radius: 17px;
  font-size: 22px;
}

.beef-login-title {
  font-size: 20px;
}
}

@media (max-width:576px) {
.beef-page {
  padding: 12px 10px 88px;
}

.beef-hero {
  padding: 20px;
  border-radius: 24px;
}

.beef-panel-pad {
  padding: 16px;
}

.beef-card {
  padding: 16px;
}

.beef-title {
  font-size: 26px;
}

.amounts.beef-amounts {
  grid-template-columns: repeat(3,1fr);
}
}

/* Deposit locked clarity screen */
.deposit-lock-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 24px;
  background: radial-gradient(circle at top left, rgba(217, 180, 106, .28), transparent 36%), linear-gradient(135deg, #ffffff 0%, #f4f6f8 100%);
  border: 1px solid rgba(38, 46, 56, .08);
  box-shadow: 0 20px 45px rgba(38, 46, 56, .08);
}

.deposit-lock-hero::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -72px;
  top: -72px;
  border-radius: 999px;
  background: rgba(38, 46, 56, .06);
}

.deposit-lock-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.deposit-lock-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 20px;
  background: #262e38;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  box-shadow: 0 16px 32px rgba(38, 46, 56, .2);
}

.deposit-lock-copy h1 {
  margin: 4px 0 0;
  font-size: clamp(28px, 6vw, 42px);
  line-height: .96;
  font-weight: 950;
  letter-spacing: -.055em;
  color: #262e38;
}

.deposit-lock-copy p {
  margin: 10px 0 0;
  color: #667085;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.deposit-lock-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.deposit-lock-status {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.deposit-lock-status > div,
.deposit-lock-metrics > div {
  border-radius: 20px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(38, 46, 56, .08);
  padding: 13px 14px;
}

.deposit-lock-status span,
.deposit-lock-metrics span {
  display: block;
  color: #7a8491;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.deposit-lock-status strong,
.deposit-lock-metrics strong {
  display: block;
  margin-top: 4px;
  color: #262e38;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.deposit-lock-card {
  background: #fff;
  border: 1px solid var(--beef-line);
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(38, 46, 56, .055);
}

.deposit-lock-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.deposit-lock-section-head h2,
.deposit-lock-mini-title {
  margin: 0;
  color: #262e38;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.03em;
}

.deposit-lock-section-head p {
  margin: 5px 0 0;
  color: #7a8491;
  font-size: 14px;
  font-weight: 650;
}

.deposit-lock-percent {
  min-width: 64px;
  border-radius: 999px;
  padding: 8px 12px;
  background: #262e38;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  text-align: center;
}

.deposit-lock-progress {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  margin-top: 16px;
  background: #eef2f6;
  border: 1px solid rgba(38, 46, 56, .06);
}

.deposit-lock-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d9b46a, #262e38);
}

.deposit-lock-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.deposit-lock-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.deposit-lock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  padding: 13px;
  border: 1px solid var(--beef-line);
  background: #f8fafc;
}

.deposit-lock-row.is-done {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.deposit-lock-row.is-pending {
  background: #fff7ed;
  border-color: #fed7aa;
}

.deposit-lock-row.is-info {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.deposit-lock-row-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #262e38;
  font-size: 18px;
}

.deposit-lock-row.is-done .deposit-lock-row-icon {
  color: #166534;
}

.deposit-lock-row.is-pending .deposit-lock-row-icon {
  color: #9a3412;
}

.deposit-lock-row.is-info .deposit-lock-row-icon {
  color: #1d4ed8;
}

.deposit-lock-row-text {
  flex: 1;
  min-width: 0;
}

.deposit-lock-row-text strong {
  display: block;
  color: #262e38;
  font-size: 15px;
  font-weight: 950;
}

.deposit-lock-row-text span {
  display: block;
  margin-top: 2px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.deposit-lock-row-text em {
  display: block;
  margin-top: 4px;
  color: #7a8491;
  font-size: 12px;
  font-weight: 650;
  font-style: normal;
}

.deposit-lock-unlock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.deposit-auto-unlock {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.deposit-lock-row-value {
  color: #262e38;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.deposit-lock-note {
  border-radius: 20px;
  padding: 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-weight: 800;
}

.deposit-lock-steps {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.deposit-lock-steps div {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 18px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--beef-line);
  color: #667085;
  font-weight: 750;
}

.deposit-lock-steps b {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: #262e38;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.deposit-lock-actions {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 576px) {
  .deposit-lock-hero,
  .deposit-lock-card {
    border-radius: 24px;
    padding: 17px;
  }

  .deposit-lock-top {
    align-items: flex-start;
  }

  .deposit-lock-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 18px;
    font-size: 23px;
  }

  .deposit-lock-status,
  .deposit-lock-metrics,
  .deposit-lock-actions {
    grid-template-columns: 1fr;
  }

  .deposit-lock-section-head {
    align-items: flex-start;
  }

  .deposit-lock-row {
    align-items: flex-start;
  }

  .deposit-lock-row-value {
    display: none;
  }
}

/* Simple bonus status display */
.bonus-mini-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid transparent;
}

.bonus-mini-status.is-ready {
  color: #116b3a;
  background: #ecfff4;
  border-color: #bce9ce;
}

.bonus-mini-status.is-locked {
  color: #8a4d10;
  background: #fff7e8;
  border-color: #f3d6a8;
}

.bonus-simple-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #f7f8fa;
  border: 1px solid rgba(38,46,56,.08);
  color: var(--beef-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.bonus-simple-note i {
  color: #8a4d10;
  margin-top: 1px;
}

@media (max-width: 576px) {
  .bonus-mini-status {
    padding: 6px 9px;
    font-size: 11px;
  }
}

/* Play Game provider entry */
.beef-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6b7280;
}

.play-provider-hero {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f7f8fa);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
}

.play-provider-media {
  width: 132px;
  aspect-ratio: 4 / 5.5;
  border-radius: 22px;
  overflow: hidden;
  background: #eef1f4;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .08);
}

.play-provider-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-provider-content {
  min-width: 0;
}

.play-stat-card {
  min-height: 116px;
}

.play-start-btn {
  min-width: 180px;
  justify-content: center;
}

.play-callback-box {
  padding: 12px 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  overflow: hidden;
}

.play-callback-box code {
  display: block;
  white-space: nowrap;
  overflow-x: auto;
  color: #1f2937;
  font-size: 12px;
  padding-bottom: 2px;
}

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

.provider-game-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  text-decoration: none;
  color: #111827;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.provider-game-card:hover {
  transform: translateY(-2px);
  color: #111827;
  border-color: rgba(15, 23, 42, .18);
  box-shadow: 0 16px 30px rgba(15, 23, 42, .10);
}

.provider-game-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #111827;
  color: #ffffff;
  flex: 0 0 auto;
}

.provider-game-name {
  font-weight: 800;
  line-height: 1.15;
}

.provider-game-code {
  margin-top: 3px;
  font-size: 12px;
  color: #6b7280;
}

.beef-btn-light {
  background: #f3f4f6;
  color: #111827;
  border: 1px solid rgba(15, 23, 42, .08);
}

.beef-btn-light:hover {
  background: #e5e7eb;
  color: #111827;
}

@media (max-width: 576px) {
  .play-provider-hero {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
  }

  .play-provider-media {
    width: 92px;
    border-radius: 18px;
  }

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

  .play-start-btn {
    width: 100%;
  }
}

/* Provider API game list state */
.provider-api-empty {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px dashed rgba(15, 23, 42, .18);
}

.provider-api-empty-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #111827;
  color: #ffffff;
  flex: 0 0 auto;
}

.provider-game-thumb {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  object-fit: cover;
  background: #eef1f4;
  border: 1px solid rgba(15, 23, 42, .08);
  flex: 0 0 auto;
}

/* Simple Play Game entry page */
.play-simple-entry {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.play-stat-compact {
  min-height: 92px;
}

.play-stat-compact .value {
  font-size: 20px;
}

@media (max-width: 576px) {
  .play-simple-entry {
    border-radius: 22px;
  }
}

/* Player full-page loading overlay */
html.beef-loading,
html.beef-loading body {
  overflow: hidden;
}

.beef-page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.94), rgba(248, 249, 251, 0.98) 48%, rgba(240, 242, 246, 1) 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}

.beef-page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.beef-page-loader-card {
  width: min(280px, calc(100vw - 48px));
  padding: 28px 24px;
  border: 1px solid rgba(38, 46, 56, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(38, 46, 56, 0.12);
  text-align: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.beef-page-loader-brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgb(38, 46, 56);
}

.beef-page-loader-line {
  position: relative;
  height: 4px;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(38, 46, 56, 0.08);
  margin: 18px 0 12px;
}

.beef-page-loader-line::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgb(38, 46, 56), transparent);
  animation: beefLoaderLine 1.05s ease-in-out infinite;
}

.beef-page-loader-text {
  color: rgba(38, 46, 56, 0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes beefLoaderLine {
  0% { transform: translateX(0); }
  100% { transform: translateX(340%); }
}

/* Receipt compression status */
.receipt-compress-box{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  border:1px solid rgba(38,46,56,.12);
  border-radius:16px;
  background:rgba(248,249,251,.92);
  color:rgb(38,46,56);
}
.receipt-compress-box .receipt-compress-icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid rgba(38,46,56,.1);
  flex:0 0 auto;
}
.receipt-compress-box strong{
  display:block;
  font-size:.9rem;
  line-height:1.25;
}
.receipt-compress-box span{
  display:block;
  margin-top:3px;
  font-size:.78rem;
  line-height:1.45;
  color:#6b7280;
}
.receipt-compress-box.is-working{
  border-color:rgba(38,46,56,.22);
  background:#fff;
}
.receipt-compress-box.is-done{
  border-color:rgba(25,135,84,.2);
  background:rgba(25,135,84,.06);
}
.receipt-compress-box.is-done .receipt-compress-icon{
  color:#198754;
}
.receipt-compress-box.is-error{
  border-color:rgba(220,53,69,.22);
  background:rgba(220,53,69,.06);
}
.receipt-compress-box.is-error .receipt-compress-icon{
  color:#dc3545;
}
.receipt-spin{
  animation:receiptSpin .85s linear infinite;
}
@keyframes receiptSpin{
  to{transform:rotate(360deg)}
}

/* Play Game wallet balance display */
.play-wallet-stat {
  background: linear-gradient(135deg, #111827 0%, #374151 100%);
  color: #ffffff;
}

.play-wallet-stat .label,
.play-wallet-stat .value {
  color: #ffffff;
}

.play-wallet-stat .label {
  opacity: .78;
}

.play-summary-row .beef-stat {
  height: 100%;
}
