:root{
  --page:#2b2b2b;
  --black:#000;
  --panel:#1a1a1a;
  --gold:#e1a85a;
  --gold-soft:#fee7c5;
  --gold-dim:#9e8556;
  --text:#bdbdbd;
  --line:#e9ae5e;
  --green:#61ce70;
  --green-bright:#10db19;
  --blue:#24a1de;
  --shadow:0 20px 36px rgba(0,0,0,.34);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden;overflow-x:clip}
body{
  margin:0;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  overflow-x:clip;
  background:var(--page);
  color:var(--text);
  font-family:sans-serif;
  font-size:15px;
  line-height:1.85;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.site-header{
  position:-webkit-sticky;
  position:sticky;
  top:0;
  z-index:99;
  box-shadow:var(--shadow);
}
.quickbar{
  min-height:50px;
  padding:0 10%;
  display:flex;
  flex-direction:row-reverse;
  align-items:center;
  gap:9px;
  background:var(--black);
  border-bottom:2px solid var(--line);
}
.quick-link{
  min-width:116px;
  padding:5px 25px 8px;
  border-radius:35px;
  color:#000;
  text-align:center;
  font-family:sans-serif;
  font-weight:300;
  line-height:1.25;
  transition:background .18s ease,color .18s ease,box-shadow .18s ease;
}
.quick-line{background:#04dd22}
.quick-register{background:#5bff72}
.quick-login{background:#a5ffb1}
.quick-link:hover,.quick-link:focus-visible{background:#fff;color:#000;box-shadow:0 0 0 2px rgba(255,255,255,.25)}
.navrow{
  min-height:90px;
  padding:0 10%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background:var(--panel);
}
.brand img{width:220px;height:32px;object-fit:contain}
.primary-menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  font-family:sans-serif;
  font-size:15px;
  color:#e8ad5d;
}
.primary-menu a{white-space:nowrap;transition:color .18s ease}
.primary-menu a:hover,.primary-menu a:focus-visible{color:#a5732e}
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  padding:9px;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  height:3px;
  margin:5px 0;
  border-radius:3px;
  background:#fff;
}
.section{
  padding:40px 0;
  scroll-margin-top:145px;
}
.container{width:min(1200px,calc(100% - 44px));margin-inline:auto}
.narrow{max-width:970px;text-align:center}
h1,h2,h3,h4{margin:0 0 16px;font-weight:600;line-height:1.35;color:var(--gold)}
h1{font-size:24px}
h2{font-size:24px}
h3{font-size:18px;color:var(--gold-dim);font-weight:400}
h4{font-size:16px;color:var(--gold);margin-bottom:12px}
p{margin:0 0 16px}
.intro p{color:#fff;font-weight:400;line-height:30px;text-shadow:0 1px 0 rgba(0,0,0,.25)}
strong{color:#e6c083}
.cta-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin:22px 0 28px;
}
.pill{
  min-width:128px;
  padding:8px 25px;
  border-radius:40px;
  border:2px solid #009615;
  text-align:center;
  font-weight:500;
  line-height:1.35;
  display:inline-block;
}
.pill.green{background:var(--green);color:#000}
.pill.green:hover,.pill.green:focus-visible{background:transparent;color:var(--green)}
.hotgame-grid{
  display:grid;
  grid-template-columns:40% 1fr;
  gap:24px;
  align-items:start;
}
.hot-side{display:flex;flex-direction:column;gap:18px}
.hot-title{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:50px;
  padding:7px 16px;
  background:linear-gradient(90deg,#816d47 74%,rgba(187,157,98,0));
  color:var(--gold-soft);
}
.hot-title h2{margin:0;color:var(--gold-soft);font-family:sans-serif;font-size:23px}
.hot-mark{
  width:10px;
  height:18px;
  border-radius:8px 8px 8px 2px;
  background:var(--gold-soft);
  transform:skew(-8deg);
}
.sportsbook-card{
  width:226px;
  max-width:100%;
  margin-inline:auto;
  filter:drop-shadow(0 18px 22px rgba(0,0,0,.45));
  transition:transform .2s ease;
}
.sportsbook-card:hover{transform:translateY(-3px)}
.tabs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:13px 18px;
  min-height:36px;
  margin-bottom:14px;
}
.tab{
  border:0;
  background:transparent;
  color:var(--gold);
  font:500 12px sans-serif;
  cursor:pointer;
  padding:3px 0;
  transition:color .18s ease;
}
.tab.active{color:var(--gold-soft);font-weight:700}
.tab:hover,.tab:focus-visible{color:#838383}
.game-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.game-card{
  position:relative;
  overflow:hidden;
  aspect-ratio:300/255;
  background:#090909;
  border-radius:4px;
}
.game-card img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease,opacity .35s ease}
.game-card:hover img{transform:scale(1.035);opacity:.84}
.game-card.is-hidden{display:none}
.black-band{background:#000}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
}
.content h2{text-align:left;font-size:18px;font-weight:400;line-height:1.25;color:var(--gold-dim)}
.content p,.content li{font-size:14px;color:#b1b1b1}
.content ul,.content ol{margin:0 0 18px;padding-left:24px}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin:10px 0 30px;
}
.feature-grid div{
  border-top:1px solid rgba(225,168,90,.38);
  padding-top:14px;
}

/* Promotions showcase grid */
.promo-showcase-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:28px;
}
.promo-showcase-card{
  background:#171717;
  border:1px solid rgba(225,168,90,.22);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 12px 24px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
  transition:transform .22s ease,border-color .22s ease;
}
.promo-showcase-card:hover{
  transform:translateY(-4px);
  border-color:rgba(225,168,90,.65);
}
.promo-showcase-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:#090909;
}
.promo-card-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.promo-card-body h3{
  font-size:16px;
  color:var(--gold);
  margin-bottom:8px;
  font-weight:600;
  line-height:1.4;
}
.promo-card-body p{
  font-size:13px;
  color:#9e9e9e;
  margin-bottom:16px;
  flex:1;
  line-height:1.6;
}
.promo-btn{
  color:var(--gold-soft);
  font-size:13px;
  font-weight:600;
  align-self:flex-start;
  transition:color .18s ease;
}
.promo-btn:hover{color:#fff}

.trust-row{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px 28px;
  margin-top:22px;
}
.trust-row img{max-height:72px;width:auto;object-fit:contain}
.center{text-align:center}
.posts .center{color:var(--gold);font-size:24px}
.post-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.post-card{
  overflow:hidden;
  border-radius:10px;
  background:#000;
  box-shadow:0 14px 28px rgba(0,0,0,.24);
  transition:transform .22s ease;
}
.post-card:hover{transform:translateY(-3px)}
.post-card img{width:100%;aspect-ratio:300/188;object-fit:cover}
.post-card span,.post-card h3,.post-card a,.post-card time{display:block;margin-inline:20px}
.post-card span{margin-top:20px;color:#777;font-size:12px}
.post-card h3{min-height:92px;margin-top:6px;color:var(--gold-dim);font-size:16px;font-weight:500;line-height:1.45}
.post-card a{color:var(--gold);font-weight:500}
.post-card time{margin-top:12px;margin-bottom:18px;color:#858585;font-size:12px}

/* Enhanced Footer Directory */
.site-footer{
  padding:42px 0 28px;
  background:#111;
  border-top:1px solid rgba(233,174,94,.35);
}
.footer-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:40px;
  align-items:start;
}
.footer-brand-col p{
  margin-top:16px;
  font-size:13px;
  line-height:1.75;
  color:#9d9d9d;
}
.footer-links-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.footer-col h4{
  font-size:15px;
  color:var(--gold);
  margin-bottom:14px;
  font-weight:600;
}
.footer-col nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-col a{
  font-size:13px;
  color:#a5a5a5;
  transition:color .18s ease;
}
.footer-col a:hover{color:var(--gold-soft)}
.footer-bottom{
  margin-top:36px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  font-size:13px;
  color:#737373;
}
.footer-bottom a{color:var(--gold-dim);margin-left:8px}
.footer-bottom a:hover{color:var(--gold)}

.line-float{
  position:fixed;
  z-index:70;
  display:grid;
  place-items:center;
  border:0;
  cursor:pointer;
  color:#fff;
  font-weight:700;
  font-family:sans-serif;
  box-shadow:0 12px 24px rgba(0,0,0,.35);
  left:18px;
  bottom:16px;
  width:70px;
  height:70px;
  border-radius:50%;
  background:#10db19;
  font-size:14px;
}
.score-float{
  position:fixed;
  right:18px;
  bottom:108px;
  z-index:99999;
  display:none;
  width:52px;
  height:52px;
  overflow:visible;
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,.38);
  animation:liveScoreFloat 1.8s ease-in-out infinite;
}
.score-float img{
  display:block;
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  pointer-events:none;
}
.score-float::after{
  content:"";
  position:absolute;
  top:3px;
  left:50%;
  z-index:2;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#f00;
  transform:translateX(-50%);
  box-shadow:0 0 7px #f00,0 0 16px rgba(255,0,0,.55),0 0 24px rgba(255,0,0,.28);
  animation:liveRedDotPulseCenter 1.08s ease-in-out infinite;
}
@keyframes liveScoreFloat{
  0%,50%,100%{transform:translateY(0) scale(1)}
  25%{transform:translateY(-4px) scale(1.02)}
  75%{transform:translateY(-2px) scale(1.01)}
}
@keyframes liveRedDotPulseCenter{
  0%,100%{
    transform:translateX(-50%) scale(1);
    box-shadow:0 0 0 0 rgba(255,0,0,.65),0 0 7px #f00,0 0 16px rgba(255,0,0,.55),0 0 24px rgba(255,0,0,.28);
  }
  50%{
    transform:translateX(-50%) scale(1.28);
    box-shadow:0 0 0 8px rgba(255,0,0,0),0 0 12px #f00,0 0 24px rgba(255,0,0,.62),0 0 34px rgba(255,0,0,.32);
  }
}
.mobile-dock{display:none}
@media (max-width:1024px){
  .quickbar,.navrow{padding-left:30px;padding-right:30px}
  .brand img{width:168px;height:auto}
  .primary-menu{
    position:absolute;
    top:140px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    gap:0;
    align-items:stretch;
    background:#000;
    box-shadow:0 20px 20px rgba(0,0,0,.25);
  }
  .primary-menu.open{display:flex}
  .primary-menu a{
    padding:20px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,.15);
    font-size:16px;
  }
  .menu-toggle{display:block}
  .hotgame-grid{grid-template-columns:1fr}
  .hot-side{display:none}
  .game-gallery{grid-template-columns:repeat(3,1fr)}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .promo-showcase-grid{grid-template-columns:repeat(2,1fr)}
  .footer-layout{grid-template-columns:1fr}
  .footer-links-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:767px){
  body{font-size:15px}
  .quickbar{
    min-height:50px;
    justify-content:center;
    gap:45px;
    padding:0;
  }
  .quick-line{display:none}
  .quick-link{min-width:0;padding:5px 25px 8px;line-height:15px}
  .navrow{min-height:85px;padding:0 30px}
  .brand img{width:154px;height:auto}
  .primary-menu{top:135px}
  .section{padding:28px 0;scroll-margin-top:90px}
  .intro.section{padding-top:10px}
  .intro .container{width:calc(100% - 20px)}
  .intro h1{margin-bottom:20px}
  .intro p{margin-bottom:14.4px}
  .container{width:min(100% - 28px,1200px)}
  h1{font-size:24px;line-height:1.3}
  h2{font-size:22px;line-height:1.4}
  .cta-row{gap:12px;flex-wrap:wrap}
  .tabs{gap:7px 14px}
  .game-gallery{grid-template-columns:repeat(2,1fr)}
  .two-col,.post-grid{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:1fr}
  .promo-showcase-grid{grid-template-columns:1fr}
  .footer-links-grid{grid-template-columns:1fr}
  .footer-brand-col{text-align:center}
  .footer-brand-col img{margin-inline:auto}
  .post-card h3{min-height:auto}
  .line-float{width:62px;height:62px}
  .score-float{display:block}
  .line-float{display:none}
  .site-footer{padding-bottom:112px}
  .mobile-dock{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:98;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:84px;
    min-height:84px;
    padding:6px 8px max(6px,env(safe-area-inset-bottom));
    border-top:1px solid rgba(255,255,255,.08);
    background:
      linear-gradient(180deg,rgba(44,44,44,.55) 0%,rgba(44,44,44,0) 35%,rgba(44,44,44,0) 65%,rgba(44,44,44,.65) 100%),
      linear-gradient(90deg,#2c2c2c 0%,#333 24%,#3a3a3a 36%,#5a4b28 47%,#836e3a 50%,#5a4b28 53%,#3a3a3a 64%,#333 76%,#2c2c2c 100%);
    box-shadow:inset 0 14px 34px rgba(0,0,0,.45),inset 0 -14px 34px rgba(0,0,0,.45),0 -6px 18px rgba(0,0,0,.2);
  }
  .mobile-dock a{
    position:relative;
    display:flex;
    width:20%;
    min-width:0;
    flex:0 0 20%;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:0;
    color:#d6b574;
    font:700 10px sans-serif;
    line-height:1;
    white-space:nowrap;
    cursor:pointer;
    -webkit-tap-highlight-color:transparent;
  }
  .mobile-dock a img,
  .mobile-dock a span{
    pointer-events:none;
  }
  .mobile-dock a[aria-current="page"]{color:#d6b574}
  .mobile-dock > a:nth-child(1){transform:translateY(5px)}
  .mobile-dock > a:nth-child(2){transform:translateY(4px)}
  .mobile-dock > a:nth-child(4){transform:translateY(2px)}
  .mobile-dock > a:nth-child(5){font-size:11px;line-height:1;transform:translateY(-.5px)}
  .dock-icon{
    display:block;
    width:35px;
    height:35px;
    flex:0 0 35px;
    margin:0 auto 4px;
    object-fit:contain;
    filter:invert(82%) sepia(30%) saturate(612%) hue-rotate(358deg) brightness(89%) contrast(88%);
  }
  .dock-news{filter:none;border-radius:6px}
  .dock-contact{filter:invert(75%) sepia(93%) saturate(1080%) hue-rotate(70deg) brightness(108%) contrast(114%)}
  .dock-main{
    padding-top:32px;
  }
  .dock-main .dock-play{
    position:absolute;
    top:-39px;
    left:50%;
    display:grid;
    place-items:center;
    width:58px;
    height:58px;
    margin:0;
    padding:17px;
    background:linear-gradient(180deg,#b08d2f 0%,#d6b574 100%);
    border:1px solid #e8dcc4;
    border-radius:50%;
    box-shadow:3px 3px 8px -1px rgba(0,0,0,.71);
    transform:translateX(-50%);
    filter:none;
  }
  .dock-main .dock-play img{
    display:block;
    width:22px;
    height:22px;
    filter:none;
  }
}
