* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  background: #12141c;
  color: #c8ccd4;
  font-family: 'Inter', -apple-system, sans-serif;
  min-height: 100vh;
  padding: 28px 16px;
}

.page {
  max-width: 1200px;
  margin: 0 auto
}


.sh {
  text-align: center;
  margin-bottom: 20px
}

.sh h1 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 3px
}

.sh p {
  color: #6b7280;
  font-size: 0.82rem
}


.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px
}

.st {
  background: #1a1d27;
  border: 1px solid #2a2e3a;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  position: relative
}

.st.on {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.04)
}

.sn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2a2e3a;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px
}

.st.on .sn {
  background: #22c55e;
  color: #fff
}

.si {
  font-size: 20px;
  margin-bottom: 4px;
  display: block
}

.st h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: #e0e4ea;
  margin-bottom: 2px
}

.st p {
  font-size: 0.65rem;
  color: #6b7280;
  line-height: 1.4
}

.st:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  color: #2a2e3a;
  font-size: 1rem;
  font-weight: 800;
  z-index: 2
}

.st.on::after {
  color: #22c55e
}

.yellow-info {
  padding: 12px 16px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #f59e0b;
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

.ap-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  overflow: hidden;
}

.ap.hot .ap-icon,
.ap.mega .ap-icon {
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}

.ap-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
  animation: apPlayPulse 1.5s infinite;
  letter-spacing: 0.03em;
}

.ap-play-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

@keyframes apPlayPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

.ap {
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #2a2e3a;
  background: #1a1d27;
  min-height: 54px;
  transition: all .5s
}

.ap.scan {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.05)
}

.ap.hot {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.06);
  animation: hp 2s ease-in-out infinite
}

.ap.mega {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  animation: mp 1s ease-in-out infinite
}

@keyframes hp {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0)
  }

  50% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1)
  }
}

@keyframes mp {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0)
  }

  50% {
    box-shadow: 0 0 28px rgba(16, 185, 129, 0.12)
  }
}

.ai {
  font-size: 26px;
  flex-shrink: 0
}

.ab {
  flex: 1;
  min-width: 0
}

.at {
  font-weight: 700;
  font-size: 0.86rem;
  color: #e0e4ea;
  margin-bottom: 1px
}

.as {
  font-size: 0.74rem;
  color: #6b7280
}

.ap.hot .at {
  color: #22c55e
}

.ap.mega .at {
  color: #10b981
}

.av {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap
}

.ap.hot .av {
  color: #22c55e
}

.ap.mega .av {
  color: #10b981
}


.tb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 9px 14px;
  background: #1a1d27;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  flex-wrap: wrap
}

.tb label {
  font-size: 0.76rem;
  font-weight: 600;
  color: #8890a0;
  white-space: nowrap
}

.tb input[type="range"] {
  flex: 1;
  min-width: 80px;
  accent-color: #22c55e;
  cursor: pointer
}

.tv {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: #22c55e;
  font-size: 0.88rem;
  min-width: 55px;
  text-align: right
}

.dc {
  font-size: 0.74rem;
  color: #6b7280;
  margin-left: auto;
  white-space: nowrap
}

.dc strong {
  color: #22c55e
}


.lay {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px
}


.hs {
  background: #1a1d27;
  border: 1px solid #2a2e3a;
  border-radius: 14px;
  padding: 14px;
  height: fit-content;
  position: sticky;
  top: 16px
}

.hs h3 {
  font-size: 0.76rem;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px
}

.hl {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.hi {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;

  animation: hiFadeIn .4s ease-out;
}

@keyframes hiFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hi:hover {
  background: rgba(34, 197, 94, 0.10);
  border-color: rgba(34, 197, 94, 0.25);
}

.hi.mg {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.05)
}

.hi.mg:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
}

.hii {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.hif {
  flex: 1;
  min-width: 0
}

.hin {
  font-size: 0.74rem;
  font-weight: 700;
  color: #e0e4ea;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.him {
  font-size: 0.66rem;
  color: #6b7280;
  display: flex;
  gap: 6px;
  margin-top: 1px
}

.hip {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.76rem;
  color: #22c55e;
  white-space: nowrap
}

.hi.mg .hip {
  color: #10b981
}

.fd {
  display: flex;
  gap: 2px;
  margin-top: 2px
}

.fd div {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2a2e3a
}

.fd .w {
  background: #22c55e
}

.fd .h {
  background: #10b981
}

.he {
  text-align: center;
  color: #3a3f50;
  font-size: 0.76rem;
  padding: 16px 0
}

.he span {
  display: block;
  font-size: 22px;
  margin-bottom: 5px;
  opacity: .4
}


.wg {
  background: #1e222d;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #2a2e3a
}

.topb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid #2a2e3a;
  flex-wrap: wrap;
  gap: 8px
}

.tabs {
  display: flex
}

.tab {
  padding: 6px 13px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  transition: color .2s, border-color .2s
}

.tab:hover {
  color: #c8ccd4
}

.tab.active {
  color: #fff;
  border-bottom-color: #fff
}

.tgg {
  display: flex;
  background: #272b36;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2a2e3a
}

.tgb {
  padding: 6px 13px;
  font-size: 0.76rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  color: #6b7280;
  transition: background .2s, color .2s
}

.tgb.active {
  background: #22c55e;
  color: #fff
}

.tgb:not(.active):hover {
  background: #2f3340;
  color: #c8ccd4
}


.tw {
  overflow-x: auto
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px
}

thead th {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.71rem;
  font-weight: 600;
  color: #4b5260;
  border-bottom: 1px solid #2a2e3a;
  white-space: nowrap
}

tbody tr {
  border-bottom: 1px solid rgba(42, 46, 58, 0.5);
  transition: background .2s;
  cursor: pointer;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.03)
}

tbody td {
  padding: 10px 14px;
  font-size: 0.84rem;
  white-space: nowrap;
  vertical-align: middle
}

.gc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #e0e4ea;
  max-width: 210px
}

.gi {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

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

.gn {
  overflow: hidden;
  text-overflow: ellipsis
}

.pn {
  font-weight: 600;
  color: #e0e4ea
}

.tc {
  color: #8890a0;
  font-weight: 500
}

.bb {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(42, 46, 58, 0.8);
  border: 1px solid #363a48;
  color: #c8ccd4
}

.mb {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2)
}

.pv {
  font-weight: 700;
  color: #22c55e;
  font-size: 0.86rem
}


tbody tr.rh {
  background: rgba(34, 197, 94, 0.05)
}

tbody tr.rh .pv {
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.3)
}

tbody tr.rm {
  background: rgba(16, 185, 129, 0.07)
}

tbody tr.rm .pv {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
  font-size: .9rem
}

tbody tr.rm .mb {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.25)
}

.hm {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: .63rem;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-left: 6px;
  animation: mp2 .4s ease-out
}

tbody tr.rm .hm {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.25)
}

@keyframes mp2 {
  from {
    transform: scale(.7);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

@keyframes sIn {
  from {
    opacity: 0;
    transform: translateY(-12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.rn {
  animation: sIn .35s ease-out
}


.ml {
  display: none;
  flex-direction: column;
  gap: 0
}

.mr {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(42, 46, 58, 0.4);
  transition: background .2s;
  animation: sIn .35s ease-out;
  cursor: pointer;
  row-gap: 8px;
}

.mr:last-child {
  border-bottom: none
}

.mr:active {
  background: rgba(255, 255, 255, 0.04);
}

.mr-ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  overflow: hidden;
}

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

.mr-mid {
  min-width: 0
}

.mr-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: #e0e4ea;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.mr-player {
  font-size: 0.72rem;
  color: #5b6070;
  margin-top: 1px
}

.mr-rt {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px
}

.mr-top-row {
  display: flex;
  align-items: center;
  gap: 8px
}

.mr-bet {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280
}

.mr-multi {
  font-size: 0.7rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  padding: 2px 8px;
  border-radius: 5px;
  white-space: nowrap;
}

.mr-pay {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.95rem;
  color: #22c55e;
  white-space: nowrap;
}

.mr.mr-hot {
  background: rgba(34, 197, 94, 0.04)
}

.mr.mr-hot .mr-pay {
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.3)
}

.mr.mr-mega {
  background: rgba(16, 185, 129, 0.06)
}

.mr.mr-mega .mr-pay {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
  font-size: 1rem
}

.mr.mr-mega .mr-multi {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12)
}

.mr.mr-mega .mr-ic {
  background: rgba(16, 185, 129, 0.08);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.1)
}

.mr.mr-hot .mr-ic {
  background: rgba(34, 197, 94, 0.06);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.08)
}

.mr-play-btn {
  grid-column: 1 / -1;
  padding: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.78rem;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: transform 0.15s, box-shadow 0.15s;
  animation: apPlayPulse 1.5s infinite;
}

.mr-play-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.mr-play-btn:active {
  transform: translateY(0);
}

.mr-htag {
  display: none;
  font-size: .58rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.18);
  padding: 1px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
  animation: mp2 .4s ease-out;
}

.mr.mr-hot .mr-htag,
.mr.mr-mega .mr-htag {
  display: inline-block
}

.mr.mr-mega .mr-htag {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.2)
}


.hmc {
  display: none;
  gap: 8px;
  margin-top: 14px;
  grid-template-columns: 1fr 1fr
}

.hmc-t {
  grid-column: 1/-1;
  font-size: 0.76rem;
  font-weight: 700;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0
}

.hmc-i {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s;
}

.hmc-i:hover {
  background: rgba(34, 197, 94, 0.10);
}

.hmc-i.mg {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.04)
}

.hmc-i.mg:hover {
  background: rgba(16, 185, 129, 0.12);
}

.hmc-ic {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.hmc-b {
  flex: 1;
  min-width: 0
}

.hmc-n {
  font-size: 0.74rem;
  font-weight: 700;
  color: #e0e4ea;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.hmc-m {
  font-size: 0.66rem;
  color: #6b7280
}

.hmc-p {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.76rem;
  color: #22c55e;
  white-space: nowrap
}

.hmc-i.mg .hmc-p {
  color: #10b981
}


.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  background: #1a1d27;
  border: 1px solid #2a2e3a;
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.popup-overlay.active .popup-card {
  transform: translateY(0) scale(1);
}


.popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #2a2e3a;
}

.popup-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.popup-logo-text {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
}

.popup-logo-text span {
  color: #f59e0b;
}

.popup-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #272b36;
  border: 1px solid #363a48;
  color: #8890a0;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  margin-left: auto;
}

.popup-close:hover {
  background: #363a48;
  color: #fff;
}


.popup-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 0.78rem;
  color: #6b7280;
}

.popup-user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #272b36;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.popup-user-name {
  font-weight: 600;
  color: #c8ccd4;
}

.popup-user-date {
  margin-left: auto;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 4px;
}


.popup-game {
  margin: 0 18px;
  padding: 12px 14px;
  background: #12141c;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-game-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  overflow: hidden;
}

.popup-game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popup-game-info {
  flex: 1;
  min-width: 0;
}

.popup-game-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #e0e4ea;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup-game-provider {
  font-size: 0.7rem;
  color: #6b7280;
  margin-top: 1px;
}

.popup-play-btn {
  padding: 8px 18px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.popup-play-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

.popup-play-btn:active {
  transform: translateY(0);
}


.popup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 14px 18px 0;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  overflow: hidden;
}

.popup-stat {
  padding: 12px 10px;
  text-align: center;
  border-right: 1px solid #2a2e3a;
}

.popup-stat:last-child {
  border-right: none;
}

.popup-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #4b5260;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.popup-stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.92rem;
  color: #e0e4ea;
}

.popup-stat-value.payout-val {
  color: #22c55e;
}

.popup-stat-value.multi-val {
  color: #f59e0b;
}


.popup-betid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px 16px;
  margin-top: 10px;
}

.popup-betid-text {
  font-size: 0.68rem;
  color: #4b5260;
  font-family: 'JetBrains Mono', monospace;
}

.popup-betid-copy {
  width: 22px;
  height: 22px;
  background: #272b36;
  border: 1px solid #363a48;
  border-radius: 5px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: background 0.2s, color 0.2s;
}

.popup-betid-copy:hover {
  background: #363a48;
  color: #c8ccd4;
}


.info-block {
  margin-top: 18px;
  padding: 16px 20px;
  background: #1a1d27;
  border: 1px solid #2a2e3a;
  border-radius: 12px;
}

.info-block-header {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e0e4ea;
  margin-bottom: 8px;
}

.info-block p {
  font-size: 0.78rem;
  color: #8890a0;
  line-height: 1.6;
  margin-bottom: 10px;
}

.info-example {
  font-size: 0.74rem;
  color: #6b7280;
  padding: 10px 14px;
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: 8px;
  line-height: 1.5;
}

.info-example span {
  font-weight: 700;
  color: #22c55e;
}

.realtime-bar {
  margin-top: 12px;
  padding: 10px 16px;
  background: #1a1d27;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: #6b7280;
  flex-wrap: wrap;
}

.realtime-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: realtimePulse 1.5s ease-in-out infinite;
}

@keyframes realtimePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.realtime-counter {
  margin-left: auto;
  font-size: 0.72rem;
}

.realtime-counter strong {
  color: #22c55e;
  font-weight: 700;
}

.popup-profit {
  text-align: center;
  padding: 8px 18px 0;
}

.profit-text {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #22c55e;
}

.disc {
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.04);
  font-size: 0.72rem;
  color: #9a6060;
  text-align: center;
  line-height: 1.6
}

.disc strong {
  color: #ef4444
}


@media(max-width:900px) {
  .lay {
    grid-template-columns: 1fr
  }

  .hs {
    display: none
  }

  .hmc {
    display: grid
  }
}

@media(max-width:900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .st:not(:last-child)::after {
    display: none
  }
}

@media(max-width:640px) {
  body {
    padding: 14px 8px
  }

  .sh h1 {
    font-size: 1.15rem
  }

  .steps {
    gap: 6px
  }

  .st {
    padding: 10px 8px;
    border-radius: 9px
  }

  .si {
    font-size: 17px;
    margin-bottom: 3px
  }

  .st h4 {
    font-size: 0.67rem
  }

  .st p {
    font-size: 0.6rem
  }

  .sn {
    width: 19px;
    height: 19px;
    font-size: .6rem;
    margin-bottom: 4px
  }

  .ap {
    padding: 10px 12px;
    gap: 10px;
    min-height: 48px;
    flex-direction: column;
  }



  .ai {
    font-size: 22px
  }

  .at {
    font-size: .8rem
  }

  .as {
    font-size: .68rem
  }

  .av {
    font-size: 1rem
  }

  .tb {
    padding: 7px 10px;
    gap: 6px
  }

  .tb label {
    font-size: .7rem
  }

  .tv {
    font-size: .8rem
  }

  .topb {
    padding: 9px 12px
  }

  .tab {
    padding: 5px 10px;
    font-size: .74rem
  }

  .tgb {
    padding: 5px 10px;
    font-size: .7rem
  }

  .tw {
    display: none
  }

  .ml {
    display: flex
  }

  .hmc {
    grid-template-columns: 1fr
  }

  .ap-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .ap-play-btn {
    padding: 8px 14px;
    font-size: 0.74rem;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .yellow-info {
    font-size: 0.72rem;
    padding: 10px 12px;
  }

  .realtime-bar {
    font-size: 0.68rem;
    padding: 8px 12px;
  }

  .info-block {
    padding: 12px 14px;
  }

  .popup-card {
    max-width: 340px;
  }
}