*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg-black: #111111;
  --bg-topbar: #0b0b0b;
  --accent-gold: #d4af37;
  --text-white: #ffffff;
  --text-gray: #c8c8c8;
  --btn-dark: #2a2a2a;
  --btn-radius: 8px;
  --container-max: 1400px;
  --topbar-height: 52px;
  --header-height: 80px;
  --font-sans:"Noto Sans Thai",sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{

background:
    radial-gradient(
        circle at top,
        rgba(255,255,255,.05) 0%,
        rgba(255,255,255,.015) 18%,
        transparent 45%
    ),
    linear-gradient(
        to bottom,
        #171717 0%,
        #111111 25%,
        #0f0f0f 100%
    );

color:var(--text-white);

line-height:1.4;

-webkit-font-smoothing:antialiased;

}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  height: var(--topbar-height);
  background-color: var(--bg-topbar);
  border-bottom: 1px solid #242424;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-login {

    min-width:78px;
    padding:0 12px;

    color:#ffffff;

    background:linear-gradient(
        to bottom,
        #5b5b5b 0%,
        #3d3d3d 45%,
        #2a2a2a 100%
    );

    border:1px solid #202020;
    border-top:1px solid #707070;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 2px 6px rgba(0,0,0,.35);
}

.topbar-btn {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 32px;
  padding: 0 10px;
  background-color: #141414;
  border: 2px solid #343434;
  border-radius: 8px;
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;

  transition:
    border-color .45s ease,
    background-color .45s ease,
    color .45s ease,
    box-shadow .45s ease;
}

.topbar-btn:hover {
    border-color: #d4af37;
  background-color: #181818;

  box-shadow:
    0 0 8px rgba(212,175,55,.15);

  color: #ffffff;
}

.topbar-btn img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.topbar-btn span {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}

#btn-line {
  border: 2px solid #16A34A;
  color: #16A34A;
}

#btn-line span {
  color: #16A34A;
}

#btn-line:hover {
  background: #102416;
  border-color: #22C55E;
}

#btn-line:hover span {
  color: #22C55E;
}

#btn-line img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.topbar-lang {
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.topbar-lang:hover {
  border-color: #d4af37;
  background-color: #181818;
}

.topbar-lang__divider {
  width: 1px;
  height: 14px;
  background-color: #343434;
  flex-shrink: 0;
}

.btn--lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100%;
  padding: 0 12px;
  background-color: transparent;
  border: 2px solid transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--lang img {
  height: 16px;
  width: auto;
  flex-shrink: 0;
}

.btn--lang.is-active {
    color:#111;

    background:linear-gradient(
        to bottom,
        #f6df7f 0%,
        #e2bd45 48%,
        #be9220 100%
    );

    border-color:#c99d22;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.25),
        inset 0 -1px 0 rgba(0,0,0,.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: var(--btn-radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.topbar-cta {
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:110px;
    height:32px;

    padding:0 16px;

    font-size:12px;
    font-weight:700;
    letter-spacing:.3px;

    border-radius:8px;

    text-decoration:none;
    white-space:nowrap;

    transition:.25s ease;
}

.topbar-cta.topbar-login {
    min-width:78px;
    padding:0 12px;
}

.topbar-login:hover{
    background:linear-gradient(
        to bottom,
        #6a6a6a 0%,
        #4b4b4b 45%,
        #383838 100%
    );
}

.topbar-register{
    position:relative;
    overflow:hidden;

    color:#111;

    background:linear-gradient(
        to bottom,
        #fff1a8 0%,
        #f4d760 18%,
        #e2bb3b 50%,
        #c59218 100%
    );

    border:1px solid #8d6b10;
    border-top:1px solid #fff3b6;

    box-shadow:
        inset 0 2px 0 rgba(255,255,255,.45),
        inset 0 -2px 0 rgba(140,90,0,.25),
        0 2px 6px rgba(0,0,0,.35);

    transition:.3s ease;
}

.topbar-register:hover {

background:linear-gradient(
    to bottom,
    #fff6be 0%,
    #f7de74 18%,
    #e7c44a 50%,
    #d09d20 100%
);

box-shadow:
    inset 0 2px 0 rgba(255,255,255,.55),
    inset 0 -2px 0 rgba(140,90,0,.20),
    0 4px 12px rgba(212,175,55,.25);

}

.topbar-register::before {

content:"";

position:absolute;

top:0;
left:-120%;

width:55%;
height:100%;

background:linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.08) 30%,
    rgba(255,255,255,.75) 50%,
    rgba(255,255,255,.08) 70%,
    transparent 100%
);

transform:skewX(-25deg);

animation: registerShine 3.8s linear infinite;

pointer-events:none;

}

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--header-height);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 18%,
      transparent 42%
    ),
    linear-gradient(
      180deg,
      #1c1c1e 0%,
      #161618 28%,
      #121214 58%,
      #0d0d0f 100%
    );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 4px 12px rgba(0, 0, 0, 0.35);
}

.main-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.logo{

display:flex;

align-items:center;

flex-shrink:0;

position:static;

transform:none;

}

.logo a{
    display:flex;
    align-items:center;
}

.logo__img{
    display:block;
    height:38px;
    width:auto;
    object-fit:contain;
}

.game-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.game-nav__ctrl {
  flex: 0 0 24px;
  width: 24px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.35);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.game-nav__ctrl:hover {
  color: #e8c84a;
  text-shadow: 0 0 8px rgba(232, 200, 74, 0.45);
}

.game-nav__track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.game-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 4px;
}

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

.game-menu__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 2px;
  border-radius: var(--btn-radius);
  transition: background-color 0.2s ease;
}

.game-menu__link:hover {
  background-color: #1a1a1a;
}

.game-menu__link:hover .game-menu__label {
  color: var(--accent-gold);
}

.game-menu__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.game-menu__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-gray);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.game-menu__item.is-active .game-menu__label {
  color: var(--accent-gold);
}

.hero{

background:
    linear-gradient(
        to bottom,
        #1a1a1a,
        #111111
    );

}

.hero-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

.hero-track{
    width:100%;
    position:relative;
}

.hero-slide{
    display:none;
    width:100%;
}

.hero-slide.active{
    display:block;
}

.hero-slide img{
    display:block;
    width:100%;
    height:auto;

    animation:heroFade .55s ease;
}

.hero-arrow{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    background:none;
    border:none;

    color:#d4af37;

    font-size:54px;
    font-weight:700;
    line-height:1;

    cursor:pointer;

    transition:.25s ease;

    text-shadow:0 0 8px rgba(212,175,55,.35);

    z-index:20;
}

.hero-arrow:hover{

    color:#f5dd77;
    transform:translateY(-50%) scale(1.08);
    text-shadow:0 0 12px rgba(245,221,119,.7);
}

.hero-prev{

    left:20px;

}

.hero-next{

    right:20px;

}
.hero-dots{

    position:absolute;

    left:50%;

    bottom:18px;

    transform:translateX(-50%);

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    z-index:20;

}
.hero-dot{

width:12px;

height:12px;

border:none;

border-radius:50%;

background:rgba(255,255,255,.18);

cursor:pointer;

transition:all .35s ease;

}
.hero-dot:hover{

background:#d4af37;

}
.hero-dot.active{

width:32px;

border-radius:20px;

background:linear-gradient(
    to bottom,
    #fff2a8,
    #e2bc42,
    #c99718
);

box-shadow:
0 0 6px rgba(212,175,55,.45),
0 0 14px rgba(212,175,55,.18);

}

.feature-section{

width:100%;

padding:12px 0;

background:

linear-gradient(

to bottom,

#141414,

#101010

);

}

.feature-grid{

display:flex;

gap:18px;

}

.feature-card{

flex:1;

display:flex;

align-items:center;

gap:10px;

padding:8px 16px;

min-height:68px;

background:linear-gradient(180deg, #1a1a1a 0%, #121212 55%, #0e0e0e 100%);

border:1px solid rgba(255,255,255,.08);

border-radius:8px;

transition:border-color .3s ease, box-shadow .3s ease;

}

.feature-card:hover{

border-color:#d4af37;

box-shadow:0 0 14px rgba(212,175,55,.18);

}

.feature-icon{

flex-shrink:0;

}

.feature-icon img{

width:40px;

height:40px;

display:block;

object-fit:contain;

}

.feature-info{

display:flex;

flex-direction:column;

justify-content:center;

}

.feature-title{

color:#cfcfcf;

font-size:16px;

font-weight:500;

line-height:1.2;

margin-bottom:2px;

}

.feature-value{

color:#f4d05a;

font-size:18px;

font-weight:700;

line-height:1.2;

}

.popular-section {
  width: 100%;
  padding: 20px 0 28px;
  background-color: var(--bg-black);
}

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

.popular-title-wrap{
    display:none;
}

.popular-title-images {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.popular-title-images img {
  display: none;
  height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.popular-section:has(.popular-cat.is-active[data-category="hot-games"]) .popular-title-images img[data-category="hot-games"],
.popular-section:has(.popular-cat.is-active[data-category="slot"]) .popular-title-images img[data-category="slot"],
.popular-section:has(.popular-cat.is-active[data-category="live-casino"]) .popular-title-images img[data-category="live-casino"],
.popular-section:has(.popular-cat.is-active[data-category="sports"]) .popular-title-images img[data-category="sports"],
.popular-section:has(.popular-cat.is-active[data-category="lottery"]) .popular-title-images img[data-category="lottery"],
.popular-section:has(.popular-cat.is-active[data-category="race"]) .popular-title-images img[data-category="race"],
.popular-section:has(.popular-cat.is-active[data-category="crash"]) .popular-title-images img[data-category="crash"],
.popular-section:has(.popular-cat.is-active[data-category="arcade"]) .popular-title-images img[data-category="arcade"],
.popular-section:has(.popular-cat.is-active[data-category="poker"]) .popular-title-images img[data-category="poker"],
.popular-section:has(.popular-cat.is-active[data-category="esports"]) .popular-title-images img[data-category="esports"] {
  display: block;
}

.popular-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.35);
}

.popular-arrow:hover {
  color: #f5dd77;
  transform: scale(1.08);
  text-shadow: 0 0 12px rgba(245, 221, 119, 0.7);
}

.popular-body {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 0;
  padding:16px;

  background:

linear-gradient(
180deg,
rgba(255,255,255,.11) 0%,
rgba(235,235,235,.06) 8%,
rgba(200,200,200,.025) 18%,
transparent 38%
),

linear-gradient(
90deg,
rgba(255,255,255,.025),
transparent 18%,
transparent 82%,
rgba(255,255,255,.025)
),

linear-gradient(
180deg,
#181818 0%,
#111111 100%
);

border:1px solid rgba(255,255,255,.06);

border-radius:10px;

box-shadow:
0 8px 24px rgba(0,0,0,.35),
inset 0 1px 0 rgba(255,255,255,.03);
overflow:hidden;
}

.popular-body::before{

content:"";

position:absolute;

left:0;

right:0;

top:0;

height:1px;

background:linear-gradient(
90deg,
transparent,
rgba(212,175,55,.22),
transparent
);

}

.popular-main{

display:flex;

flex:1;

min-width:0;

gap:20px;

align-items:stretch;

}

.popular-content{
    flex:1;
    display:flex;
    flex-direction:column;
}

.provider-wrapper{

margin-bottom:6px;

padding-bottom:0;

border-bottom:none;

position:relative;

}

.provider-wrapper::after{

display:none;  

content:"";

position:absolute;

left:0;

right:0;

bottom:-1px;

height:1px;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.08),
transparent
);

}

.game-panel{

margin-top:6px;

flex:1;

padding:16px;

background:
linear-gradient(
    180deg,
    rgba(255,255,255,.025) 0%,
    transparent 18%
),
#101010;

border:1px solid #1f1f1f;

border-radius:12px;

min-height:100%;

box-shadow:
inset 0 1px 0 rgba(255,255,255,.02),
0 6px 20px rgba(0,0,0,.45);

transition:
opacity .18s ease,
transform .18s ease;

}

.game-panel.is-out{

opacity:.35;

transform:translateX(-12px);

}

.game-panel.is-in{

opacity:1;

transform:translateX(0);

}

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

.game-card{

display:flex;

flex-direction:column;

overflow:hidden;

background:#1b2028;

border:1px solid #202020;

border-radius:10px;

transition:
border-color .25s ease,
box-shadow .25s ease,
transform .25s ease;

}

.game-card:hover{

transform:translateY(-2px);

border-color:#d4af37;

box-shadow:
0 0 14px rgba(212,175,55,.16);

}

.game-card__media{

position:relative;  

display:block;

width:100%;

aspect-ratio:1/1;

overflow:hidden;

background:#111;

}

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

.game-card__name {
  display: block;
  padding: 10px 8px;
  color: #e8e8e8;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card:hover .game-card__name {
  color: #d4af37;
}

.game-card__play{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

padding:8px 24px;

background:linear-gradient(180deg,#f0d78c,#d4af37);

color:#1a1a1a;

font-size:13px;

font-weight:700;

border-radius:8px;

opacity:0;

visibility:hidden;

transition:opacity .2s ease,visibility .2s ease;

pointer-events:none;

}

.game-card:hover .game-card__play{

opacity:1;

visibility:visible;

}

.popular-title-wrap,
.popular-banner {

flex:0 0 220px;
display:flex;
align-self:stretch;
margin-left:4px;
padding-left:10px;
border-left:1px solid rgba(255,255,255,.05);
position:relative;

}

.popular-banner::before{

content:"";

position:absolute;

top:12px;

bottom:12px;

left:-11px;

width:1px;

background:linear-gradient(
180deg,
transparent,
rgba(255,255,255,.08),
transparent
);

}

.popular-banner__link{

display:block;

width:100%;

height:100%;

min-height:100%;

overflow:hidden;

border:1px solid rgba(212,175,55,.18);

border-radius:10px;

transition:
border-color .25s ease,
box-shadow .25s ease,
transform .25s ease;

}

.popular-banner__img{

display:block;

width:100%;

height:100%;

object-fit:cover;

border-radius:10px;

}

.provider-row{

position:relative;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:12px;

margin:0 0 18px;

padding:14px;

border:1px solid rgba(255,255,255,.06);

border-radius:10px;

background:

linear-gradient(
    180deg,
    rgba(255,255,255,.06) 0%,
    rgba(230,230,230,.025) 18%,
    transparent 45%
),

#171717;

}

.provider-card{

position:relative;

display:flex;

justify-content:center;

align-items:center;

height:52px;

border-radius:12px;

border:1px solid rgba(255,255,255,.08);

background:
linear-gradient(
180deg,
rgba(255,255,255,.05) 0%,
rgba(255,255,255,.015) 25%,
transparent 55%
),
#1a1a1a;

overflow:hidden;

cursor:pointer;

transition:.25s ease;

}

.provider-card:hover{

border-color:rgba(212,175,55,.75);

box-shadow:

0 0 18px rgba(212,175,55,.10),

inset 0 1px 0 rgba(255,255,255,.08);

transform:translateY(-2px);

}

.provider-card.is-active{

border-color:#d4af37;

box-shadow:

0 0 18px rgba(212,175,55,.18),

inset 0 1px 0 rgba(255,255,255,.10);

}

.provider-card img{

max-width:72%;

max-height:30px;

object-fit:contain;

transition:.25s;

}

.provider-card:hover img{

transform:scale(1.04);

}

.promo2-section{width:100%;padding:28px 0;scroll-margin-top:100px;}

.promo2-panel{
  display:flex;
  width:100%;
  box-sizing:border-box;
  gap:12px;
  margin:0 0 18px;
  padding:14px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:10px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(230,230,230,.025) 18%,transparent 45%),
    #171717;
}

.promo2-card{
  box-sizing:border-box;
  flex:0 0 calc((100% - 24px) / 3);
  width:calc((100% - 24px) / 3);
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:12px;
  height:74px;
  padding:0 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.015) 25%,transparent 55%),
    #1a1a1a;
  overflow:hidden;
  cursor:pointer;
  transition:.25s ease;
}

.promo2-card:hover{
  border-color:rgba(212,175,55,.75);
  box-shadow:0 0 18px rgba(212,175,55,.10),inset 0 1px 0 rgba(255,255,255,.08);
  transform:translateY(-2px);
}

.promo2-card.is-active{
  border-color:#d4af37;
  background:
    radial-gradient(ellipse at top,rgba(212,175,55,.14) 0%,transparent 70%),
    linear-gradient(180deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.015) 25%,transparent 55%),
    #1a1a1a;
  box-shadow:0 0 18px rgba(212,175,55,.25),inset 0 1px 0 rgba(255,255,255,.10);
  transform:translateY(-2px);
}

.promo2-card__img{
  width:100%;
  height:auto;
  max-height:100%;
  object-fit:contain;
}

.promo2-card__text{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-align:center;
  min-width:0;
}

.promo2-card__title{font-size:16px;font-weight:800;color:#e8e8e8;}
.promo2-card.is-active .promo2-card__title{color:#d4af37;}

.promo2-card__subtitle{font-size:12px;font-weight:600;color:#9a9a9a;text-align:center;}
.promo2-card.is-active .promo2-card__subtitle{color:#d4af37;}

.promo2-banner{
  position:relative !important;
  overflow:hidden !important;
  width:100% !important;
  aspect-ratio:1983/793 !important;
  min-height:280px !important;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  background:#12151b;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03),0 8px 24px rgba(0,0,0,.35);
}

.promo2-banner__bg{
  position:absolute !important;
  top:0 !important;
  left:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  opacity:0;
  transition:opacity .35s ease;
}

.promo2-banner__bg.is-visible{opacity:1;}

.promo2-banner__content{
  position:relative;
  z-index:1;
  max-width:520px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  padding:40px;
  background:linear-gradient(90deg,rgba(10,10,12,.9) 0%,rgba(10,10,12,.55) 65%,transparent 100%);
  opacity:0;
  transform:translateY(6px);
  transition:opacity .35s ease,transform .35s ease;
}

.promo2-banner__content.is-visible{
  opacity:1;
  transform:translateY(0);
}

.promo2-banner__title{font-size:28px;font-weight:800;color:#f2f2f2;}
.promo2-banner__subtitle{font-size:15px;font-weight:700;color:#d4af37;}
.promo2-banner__desc{font-size:13px;line-height:1.7;color:#c9c9c9;}

.promo2-banner__cta{
  display:inline-block;
  width:fit-content;
  margin-top:6px;
  padding:12px 28px;
  border-radius:10px;
  background:linear-gradient(180deg,#f0d78c,#d4af37);
  color:#1a1a1a;
  font-weight:700;
  font-size:14px;
  transition:.2s ease;
}

.promo2-banner__cta:hover{
  transform:translateY(-2px);
  box-shadow:0 0 18px rgba(212,175,55,.35);
}

.content-block{width:100%;padding:40px 0;background:#181c24;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08);}
.content-block__title{margin:0 0 12px;font-size:28px;font-weight:800;color:#f2f2f2;}
.content-block__text{margin:0;font-size:14px;line-height:1.7;color:#9a9a9a;}
.content-block__text a{color:#d4af37;text-decoration:underline;font-weight:700;}
.content-block__text a:hover{color:#f0d78c;}
.content-block .container{padding-left:48px;padding-right:48px;}

.faq-section{
  width:100%;
  padding:0 0 28px;
}

.faq-panel{
  position:relative;
  overflow:hidden;
  padding:28px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(230,230,230,.025) 18%,transparent 45%),
    #171717;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03),0 8px 24px rgba(0,0,0,.35);
}

.faq-top{
  text-align:center;
  margin-bottom:24px;
}

.faq-title{
  font-size:22px;
  font-weight:800;
  letter-spacing:.02em;
  color:#f0d78c;
  text-shadow:0 0 20px rgba(212,175,55,.25);
}

.faq-subtitle{
  margin-top:8px;
  font-size:13px;
  color:#9a9a9a;
}

.faq-list{
  max-width:760px;
  margin:0 auto;
}

.faq-item{
  border-bottom:1px solid rgba(255,255,255,.07);
}

.faq-item:last-child{
  border-bottom:none;
}

.faq-question{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  width:100%;
  padding:16px 4px;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  font-family:inherit;
  font-size:15px;
  font-weight:700;
  color:#e8e8e8;
  transition:color .2s ease;
}

.faq-question:hover{
  color:#f0d78c;
}

.faq-icon{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  border-radius:50%;
  border:1px solid rgba(212,175,55,.4);
  color:#d4af37;
  font-size:16px;
  font-weight:700;
  transition:transform .25s ease;
}

.faq-item.is-open .faq-icon{
  transform:rotate(45deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}

.faq-answer p{
  padding:0 4px 18px;
  font-size:13px;
  line-height:1.7;
  color:#a8a8a8;
}

.site-footer{width:100%;padding:40px 0 24px;background:#0d0f13;}
.footer-top{display:flex;flex-wrap:wrap;gap:40px;justify-content:space-between;padding-bottom:28px;}
.footer-brand{flex:1 1 260px;max-width:300px;}
.footer-brand__logo{height:32px;width:auto;margin-bottom:14px;}
.footer-brand__text{font-size:13px;line-height:1.6;color:#9a9a9a;margin:0 0 16px;}
.footer-social{display:flex;gap:10px;}
.footer-social img{width:32px;height:32px;border-radius:8px;}
.footer-col{flex:0 0 auto;display:flex;flex-direction:column;gap:12px;}
.footer-col__title{margin:0 0 4px;font-size:13px;font-weight:800;color:#d4af37;text-transform:uppercase;letter-spacing:.03em;}
.footer-col a{font-size:13px;color:#c9c9c9;text-decoration:none;}
.footer-col a:hover{color:#d4af37;}
.footer-payments{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px;}
.footer-payments span{padding:6px 12px;border:1px solid rgba(255,255,255,.12);border-radius:6px;font-size:12px;color:#c9c9c9;}
.footer-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.06);
}

.footer-trust__badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 16px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.25);
  background:linear-gradient(180deg,rgba(255,255,255,.03) 0%,transparent 60%),#171717;
  font-size:12px;
  font-weight:600;
  color:#c9c9c9;
}
.footer-age{display:flex;align-items:center;gap:8px;font-size:12px;color:#c9c9c9;margin:0 0 4px;}
.footer-age span{color:#9a9a9a;}
.footer-note{font-size:12px;color:#9a9a9a;margin:0;}
.footer-bottom{display:flex;flex-wrap:wrap;justify-content:space-between;gap:8px;padding-top:20px;border-top:1px solid rgba(255,255,255,.06);font-size:12px;color:#9a9a9a;}
.footer-bottom p{margin:0;}

@keyframes registerShine{

0%{
    left:-120%;
}

25%{
    left:160%;
}

100%{
    left:160%;
}

}
@keyframes heroFade{

from{
    opacity:0;
}

to{
    opacity:1;
}

}

.mobile-menu-btn{

display:none;

margin-left:auto;

z-index:3;

color:#fff;

}

.mobile-overlay{

position:fixed;

inset:0;

background:rgba(0,0,0,.65);

backdrop-filter:blur(3px);

opacity:0;

visibility:hidden;

transition:.30s ease;

z-index:998;

}

.mobile-overlay.is-open{

opacity:1;

visibility:visible;

}

.mobile-drawer{

position:fixed;

top:0;

right:-320px;

width:300px;

max-width:64%;

height:100vh;

overflow-y:auto;

-webkit-overflow-scrolling:touch;

background:#171717;

border-left:1px solid rgba(255,255,255,.08);

box-shadow:-10px 0 30px rgba(0,0,0,.45);

transition:right .30s ease;

z-index:999;

}

.mobile-drawer.is-open{

right:0;

}

.drawer-content{

padding:16px;

}

.drawer-actions{

display:flex;

flex-direction:column;

gap:10px;

}

.drawer-btn{

display:flex;

align-items:center;

justify-content:center;

height:44px;

border-radius:8px;

text-decoration:none;

font-weight:700;

font-size:15px;

transition:.25s;

}

.drawer-btn-register{

background:linear-gradient(180deg,#f5d56d,#d6a61d);

box-shadow:inset 0 1px rgba(255,255,255,.35);

}

.drawer-btn-login{

background:linear-gradient(180deg,#8c8c8c,#555);

box-shadow:inset 0 1px rgba(255,255,255,.15);

}

.drawer-menu{

margin-top:16px;

border-top:1px solid rgba(255,255,255,.08);

}

.drawer-menu-item{

width:100%;

height:58px;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 16px;

background:none;

border:none;

border-bottom:1px solid rgba(255,255,255,.08);

cursor:pointer;

color:#fff;

}

.drawer-menu-left{

display:flex;

align-items:center;

gap:12px;

}

.drawer-menu-icon{

width:24px;

height:24px;

object-fit:contain;

}

.drawer-arrow{

font-size:22px;

color:#9b9b9b;

transition:.25s;

  box-shadow:0 0 18px rgba(212,175,55,.35);
}

.drawer-menu-item.active .drawer-arrow{

transform:rotate(90deg);

}

.drawer-submenu{

display:none;

background:#111;

overflow:hidden;

transition:.25s;

}

.drawer-submenu-item{

display:flex;

align-items:center;

gap:12px;

padding:0 16px;

height:48px;

border-bottom:2px solid rgba(212,175,55,.2);

color:#f2f2f2;

transition:.25s;

}

.drawer-submenu-item:hover{

background:rgba(212,175,55,.06);

padding-left:20px;

}

.drawer-lang-item.is-active{
  color:#d4af37;
  background:rgba(212,175,55,.1);
}

.drawer-lang-item.is-active span{
  color:#d4af37;
  font-weight:700;
}

.drawer-submenu-item img{

width:28px;

height:28px;

object-fit:contain;

flex-shrink:0;

}

.drawer-submenu-item span{

font-size:16px;

font-weight:600;

}

.drawer-submenu.active{

display:block;

}

.hero-mobile-cta{
  display:none;
}

.bottom-nav{
  display:none;
}

.mobile-cat-scroll-wrap{
  display:none;
}

.mobile-cat-scroll{
  display:none;
}

@media (max-width:768px){

.top-bar{

display:none;

}

.main-header{

height:64px;

}

.main-header__inner{

position:relative;

display:flex;

align-items:center;

justify-content:flex-end;

height:100%;

padding:0 16px;

width:100%;

}

.logo{

position:absolute;

left:50%;

transform:translateX(-50%);

display:flex;

align-items:center;

z-index:10;

}

.game-nav{

display:none;

}

.logo__img{

height:30px;

}

.mobile-menu-btn{

display:flex;

}

body{
  padding-bottom:64px;
}

.bottom-nav{
  display:flex;
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:998;
  background:#0d0f13;
  border-top:1px solid rgba(212,175,55,.15);
  box-shadow:0 -4px 16px rgba(0,0,0,.4);
}

.bottom-nav__item{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:8px 4px;
  text-decoration:none;
  color:#9a9a9a;
}

.bottom-nav__item img{
  width:22px;
  height:22px;
  object-fit:contain;
  opacity:.7;
}

.bottom-nav__item span{
  font-size:10px;
  font-weight:600;
  white-space:nowrap;
}

.bottom-nav__item.is-active{
  color:#d4af37;
}

.bottom-nav__item.is-active img{
  opacity:1;
}

.popular-banner{
  display:none;
}

.feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.feature-card{
  flex:none;
}

.mobile-cat-scroll-wrap{
  display:block;
  position:relative;
  margin:0 16px 14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  background:#0d0f13;
  overflow:hidden;
}

.mobile-cat-scroll-wrap::before,
.mobile-cat-scroll-wrap::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:22px;
  z-index:1;
  pointer-events:none;
}

.mobile-cat-scroll-wrap::before{
  left:0;
  background:linear-gradient(90deg,#0d0f13 0%,transparent 100%);
}

.mobile-cat-scroll-wrap::after{
  right:0;
  background:linear-gradient(270deg,#0d0f13 0%,transparent 100%);
}

.mobile-cat-scroll-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  font-size:14px;
  color:rgba(212,175,55,.5);
  pointer-events:none;
}

.mobile-cat-scroll-arrow--left{
  left:4px;
}

.mobile-cat-scroll-arrow--right{
  right:4px;
}

.mobile-cat-scroll{
  display:flex;
  gap:6px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  padding:8px 18px;
  scrollbar-width:none;
}

.mobile-cat-scroll::-webkit-scrollbar{
  display:none;
}

.mobile-cat-scroll__item{
  flex:0 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
  width:48px;
  text-decoration:none;
  opacity:.7;
}

.mobile-cat-scroll__item.is-active{
  opacity:1;
}

.mobile-cat-scroll__item img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.mobile-cat-scroll__item span{
  font-size:9px;
  font-weight:600;
  color:#c9c9c9;
  text-align:center;
  white-space:nowrap;
}

.mobile-cat-scroll__item.is-active span{
  color:#d4af37;
  font-weight:700;
}

.hero-mobile-cta{
  display:flex;
  gap:0;
  padding:0;
  background:#0d0f13;
}

.hero-mobile-cta__btn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  height:52px;
  border-radius:0;
  font-size:16px;
  font-weight:800;
  text-decoration:none;
  text-align:center;
}

.hero-mobile-cta__btn--login{
  color:#fff;
  background:linear-gradient(to bottom,#5b5b5b 0%,#3d3d3d 45%,#2a2a2a 100%);
  border:1px solid #202020;
  border-top:1px solid #707070;
}

.hero-mobile-cta__btn--register{
  color:#111;
  background:linear-gradient(to bottom,#fff1a8 0%,#f4d760 18%,#e2bb3b 50%,#c59218 100%);
  border:1px solid #8d6b10;
  border-top:1px solid #fff3b6;
  box-shadow:inset 0 2px 0 rgba(255,255,255,.45),inset 0 -2px 0 rgba(140,90,0,.25),0 2px 6px rgba(0,0,0,.35);
}

}

.jackpot-section{
  position:relative;
  width:100%;
  padding:28px 0;
  overflow:hidden;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.4) 100%),
    radial-gradient(ellipse at top, rgba(212,175,55,.04) 0%, transparent 60%),
    linear-gradient(180deg,#141414 0%,#0f0f0f 100%);
}

.jackpot-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}

.jackpot-coin{
  position:absolute;
  width:36px;
  height:36px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(212,175,55,.4), rgba(212,175,55,.05) 70%);
  opacity:.04;
  animation:jackpotFloat 18s ease-in-out infinite;
}

.jackpot-coin--1{top:10%;left:8%;animation-delay:0s;}
.jackpot-coin--2{top:60%;left:20%;width:24px;height:24px;animation-delay:3s;}
.jackpot-coin--3{top:25%;left:80%;animation-delay:6s;}
.jackpot-coin--4{top:70%;left:70%;width:28px;height:28px;animation-delay:9s;}
.jackpot-coin--5{top:40%;left:50%;width:20px;height:20px;animation-delay:12s;}

@keyframes jackpotFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-20px);}
}

.jackpot-panel{
  position:relative;
  z-index:1;
  overflow:hidden;
  padding:28px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px, transparent 1px, transparent 12px),
    radial-gradient(circle at 50% 0%, rgba(212,175,55,.07) 0%, transparent 55%),
    linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(230,230,230,.025) 18%,transparent 45%),
    #171717;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03),0 8px 24px rgba(0,0,0,.35);
}

.jackpot-panel::before,
.jackpot-panel::after{
  content:"";
  position:absolute;
  width:26px;
  height:26px;
  pointer-events:none;
}

.jackpot-panel::before{
  top:10px;
  left:10px;
  border-top:1px solid rgba(212,175,55,.4);
  border-left:1px solid rgba(212,175,55,.4);
  border-top-left-radius:6px;
}

.jackpot-panel::after{
  bottom:10px;
  right:10px;
  border-bottom:1px solid rgba(212,175,55,.4);
  border-right:1px solid rgba(212,175,55,.4);
  border-bottom-right-radius:6px;
}

.jackpot-top{
  position:relative;
  text-align:center;
  padding-bottom:24px;
  margin-bottom:24px;
  border-bottom:2px solid rgba(212,175,55,.2);
}

.jackpot-top__label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  color:#d4af37;
  margin-bottom:14px;
  text-transform:uppercase;
}

.jackpot-live-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#3ddc73;
  box-shadow:0 0 6px rgba(61,220,115,.7);
  animation:jackpotPulse 2.4s ease-in-out infinite;
}

.jackpot-live-dot--sm{width:6px;height:6px;}

@keyframes jackpotPulse{
  0%,100%{opacity:1;}
  50%{opacity:.35;}
}

.jackpot-top__note{
  margin-top:10px;
  font-size:12px;
  color:#7a7a7a;
}

.jackpot-top__amount-outer{
  position:relative;
  display:inline-block;
  padding:24px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.28);
  box-shadow:0 0 18px rgba(212,175,55,.12);
}

.jackpot-top__amount{
  position:relative;
  display:inline-block;
  font-size:48px;
  font-weight:800;
  font-variant-numeric:tabular-nums;
  padding:18px 44px;
  text-shadow:0 0 24px rgba(212,175,55,.35),0 0 48px rgba(212,175,55,.15);
  background:linear-gradient(90deg,#f0d78c 0%,#fff6da 50%,#f0d78c 100%);
  background-size:200% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:jackpotShineText 3.5s linear infinite;
}

.jackpot-top__amount::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  border:2px solid rgba(212,175,55,.55);
  background:radial-gradient(ellipse at center,rgba(212,175,55,.08) 0%,transparent 70%),#0c0c0e;
  box-shadow:
    0 0 24px rgba(212,175,55,.3),
    inset 0 0 20px rgba(212,175,55,.12);
  z-index:-2;
}

.jackpot-top__amount::after{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:999px;
  border:1px dashed rgba(212,175,55,.4);
  z-index:-1;
}

@keyframes jackpotShineText{
  0%{background-position:200% 0;}
  100%{background-position:-200% 0;}
}

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

.jackpot-stat{
  position:relative;
  overflow:hidden;
  text-align:center;
  padding:22px 14px 18px;
  border-radius:12px;
  border:1px solid rgba(212,175,55,.18);
  background:
    linear-gradient(180deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.012) 30%,transparent 60%),
    #16161a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 0 18px rgba(0,0,0,.25),
    0 4px 14px rgba(0,0,0,.3);
  transition:.3s ease;
}

.jackpot-stat::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,#d4af37,transparent);
  opacity:.7;
}

.jackpot-stat:hover{
  border-color:rgba(212,175,55,.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 0 18px rgba(0,0,0,.2),
    0 8px 22px rgba(0,0,0,.4),
    0 0 20px rgba(212,175,55,.12);
  transform:translateY(-3px);
}

.jackpot-stat__live{
  position:absolute;
  top:10px;
  right:12px;
  display:flex;
  align-items:center;
  gap:4px;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(61,220,115,.35);
  background:rgba(61,220,115,.08);
  font-size:9px;
  font-weight:700;
  letter-spacing:.05em;
  color:#3ddc73;
}

.jackpot-stat__icon{
  width:36px;
  height:36px;
  object-fit:contain;
  margin:4px auto 12px;
}

.jackpot-stat__label{
  font-size:12px;
  font-weight:600;
  color:#9a9a9a;
  margin-bottom:6px;
}

.jackpot-stat__value{
  font-size:20px;
  font-weight:800;
  color:#e8e8e8;
  transition:opacity .3s ease;
  font-variant-numeric:tabular-nums;
}

.jackpot-stat__value.is-fading{opacity:0;}

.jackpot-stat__chart{
  width:100%;
  height:28px;
  margin-top:10px;
  overflow:visible;
}

.jackpot-stat__chart polyline{
  transition:points .5s ease;
}

.jackpot-stat--shine{position:relative;}
.jackpot-stat--shine::after{
  content:"";
  position:absolute;
  top:0;
  left:-60%;
  width:40%;
  height:100%;
  background:linear-gradient(90deg,transparent,rgba(212,175,55,.12),transparent);
  animation:jackpotShine 5s ease-in-out infinite;
}

@keyframes jackpotShine{
  0%{left:-60%;}
  40%{left:130%;}
  100%{left:130%;}
}

.jackpot-stat__winner-name{
  font-size:13px;
  font-weight:600;
  color:#c9c9c9;
  margin-bottom:4px;
  transition:opacity .3s ease;
}

.jackpot-stat__winner-amount{
  font-size:22px;
  font-weight:800;
  color:#f0d78c;
  font-variant-numeric:tabular-nums;
  transition:opacity .3s ease;
}

.jackpot-stat__winner-name.is-fading,
.jackpot-stat__winner-amount.is-fading{opacity:0;}

.jackpot-stat__vip-status{
  display:inline-block;
  margin-top:8px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.02em;
  color:#f0d78c;
  transition:opacity .3s ease;
}

.jackpot-stat__vip-status.is-fading{opacity:0;}

.jackpot-stat__timer{
  font-family:"Courier New",monospace;
  font-size:24px;
  font-weight:700;
  letter-spacing:.05em;
  color:#f0d78c;
  transition:opacity .3s ease;
}

.live-member-section{
  position:relative;
  width:100%;
  padding:0 0 28px;
  background:linear-gradient(180deg,#141414 0%,#0f0f0f 100%);
}

.live-member-panel{
  position:relative;
  z-index:1;
  overflow:hidden;
  padding:28px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px, transparent 1px, transparent 12px),
    radial-gradient(circle at 50% 0%, rgba(212,175,55,.07) 0%, transparent 55%),
    linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(230,230,230,.025) 18%,transparent 45%),
    #171717;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03),0 8px 24px rgba(0,0,0,.35);
}

.live-member-panel::before,
.live-member-panel::after{
  content:"";
  position:absolute;
  width:26px;
  height:26px;
  pointer-events:none;
}

.live-member-panel::before{
  top:10px;
  left:10px;
  border-top:1px solid rgba(212,175,55,.4);
  border-left:1px solid rgba(212,175,55,.4);
  border-top-left-radius:6px;
}

.live-member-panel::after{
  bottom:10px;
  right:10px;
  border-bottom:1px solid rgba(212,175,55,.4);
  border-right:1px solid rgba(212,175,55,.4);
  border-bottom-right-radius:6px;
}

.live-member-top{
  position:relative;
  text-align:center;
  padding-bottom:20px;
  margin-bottom:20px;
  border-bottom:2px solid rgba(212,175,55,.2);
}

.live-member-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  color:#3ddc73;
  text-transform:uppercase;
  margin-bottom:10px;
}

.live-member-title{
  font-size:20px;
  font-weight:800;
  letter-spacing:.04em;
  color:#f0d78c;
  text-shadow:0 0 20px rgba(212,175,55,.25);
}

.live-member-layout{
  position:relative;
  display:grid;
  grid-template-columns:40% 1fr;
  gap:20px;
  align-items:stretch;
}

.live-member-single{
  min-width:0;
}

.live-member-stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:16px;
  min-width:0;
}

.live-member-stats-grid .jackpot-stat{
  padding:16px 12px 14px;
}

.live-member-stats-grid .jackpot-stat__icon{
  width:26px;
  height:26px;
}

.live-member-stats-grid .jackpot-stat__value,
.live-member-stats-grid .jackpot-stat__winner-amount{
  font-size:20px;
}

.live-member-left,
.live-member-right{
  min-width:0;
}

.live-member-heading{
  font-size:14px;
  font-weight:800;
  color:#e8e8e8;
  text-align:center;
  margin-bottom:12px;
  padding-bottom:10px;
  border-bottom:2px solid rgba(212,175,55,.2);
}

.live-member-heading__icon{
  display:inline-block;
  width:16px;
  height:16px;
  object-fit:contain;
  vertical-align:-3px;
  margin-right:6px;
}

.live-member-feed{
  position:relative;
  height:320px;
  overflow:hidden;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.05);
  background:rgba(0,0,0,.2);
}

.live-member-track{
  position:relative;
  will-change:transform;
  animation:liveMemberScroll 64.8s linear infinite;
}

@keyframes liveMemberScroll{
  from{ transform:translateY(0); }
  to{ transform:translateY(-50%); }
}

.live-member-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:4px;
  height:44px;
  padding:0 14px;
  border-bottom:2px solid rgba(212,175,55,.18);
}

.live-member-id{
  font-size:12px;
  font-weight:700;
  color:#e8e8e8;
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}

.live-member-amount{
  font-size:13px;
  font-weight:800;
  color:#f0d78c;
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}

.live-member-status{
  display:flex;
  align-items:center;
  gap:4px;
  font-size:11px;
  font-weight:700;
  color:#3ddc73;
  white-space:nowrap;
}

.live-member-time{
  font-size:11px;
  font-weight:600;
  color:#8a8a8a;
  white-space:nowrap;
}

.jackpot-stat__timer.is-fading{opacity:0;}

@media (max-width:768px){
  .jackpot-stats{
    grid-template-columns:repeat(2,1fr);
  }
  .jackpot-top__amount{
    font-size:32px;
  }
  .jackpot-panel{
  padding:20px;
}

.live-member-row{
  flex-wrap:wrap;
  height:auto;
  padding:10px 14px;
  row-gap:4px;
}
.live-member-id{
  flex:0 0 50%;
  text-align:left;
}
.live-member-amount{
  flex:0 0 50%;
  text-align:right;
}
.live-member-status{
  flex:0 0 50%;
  text-align:left;
}
.live-member-time{
  flex:0 0 50%;
  text-align:right;
}

.live-member-stats-grid .jackpot-stat__label{
  font-size:11px;
}

.live-member-stats-grid .jackpot-stat__live{
  font-size:0;
  gap:0;
}

.live-member-stats-grid .jackpot-live-dot--sm{
  margin:0;
}

.promo2-section{
  overflow-x:hidden;
}
.promo2-banner{
  max-width:100%;
  min-height:auto !important;
}
.promo2-banner__content{
  position:absolute;
  inset:0;
  z-index:1;
  max-width:100%;
  height:100%;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:3px;
  padding:10px 14px;
  background:linear-gradient(90deg,rgba(10,10,12,.85) 0%,rgba(10,10,12,.5) 70%,transparent 100%);
}
.promo2-banner__title{
  font-size:14px;
  line-height:1.2;
}
.promo2-banner__subtitle{
  font-size:10px;
  line-height:1.2;
}
.promo2-banner__desc{
  display:none !important;
}
.promo2-banner__cta{
  margin-top:4px;
  padding:6px 14px;
  font-size:11px;
  width:fit-content;
}

.promo2-banner__bg{
  object-fit:contain !important;
}
}

.jackpot-stat__caption{
  display:block;
  margin-top:8px;
  font-size:10px;
  color:#6b6b6b;
}

.jackpot-stat__bar{
  margin-top:10px;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  overflow:hidden;
}

.jackpot-stat__bar-fill{
  display:block;
  height:100%;
  width:0%;
  border-radius:999px;
  background:linear-gradient(90deg,#d4af37,#f0d78c);
  transition:width .8s ease;
}
