﻿  @font-face{
  font-family: 'Digital Sans EF';
  src: url('/assets/font/digital_sans_ef_medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root{
  --bg: #0A0E17;
  --bg-rgb: 10, 14, 23;
  --surface: #121826;
  --surface-raised: #171f31;
  --surface-dark: #0c1018;
  --surface-panel: #0d1119;
  --surface-footer: #0c0f14;
  --surface-card: #0e1118;
  --surface-footer-bar: #161a20;
  --surface-mobile: #0b0e15;
  --surface-deepest: #06080c;
  --topbar-bg: #060810;
  --nav-bg: #0a0d12;
  --border: #232c40;
  --footer-border: #22262e;
  --text: #F5F1E8;
  --text-muted: #8B93A7;
  --nav-text: #A8A8A8;
  --icon-muted: #7c7c7c;
  --footer-muted: #5a6376;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --brand: #E3B23C;
  --brand-rgb: 227, 178, 60;
  --brand-light: #f5d990;
  --brand-dark: #c9962e;
  --brand-border: #c9a033;
  --brand-soft: #fff0c8;
  --brand-brown-rgb: 140, 100, 20;
  --line-green: #06C755;
  --line-green-rgb: 6, 199, 85;
  --login-start: #7a7a7a;
  --login-end: #3a3a3a;
  --login-border: #5a5a5a;
  --nav-hover-bg: #1a2033;
  --grad-dark-start: #080a0e;
  --grad-dark-mid: #10141d;
  --grad-dark-end: #1a1f2a;
  --grad-mid-start: #0c1016;
  --grad-mid-end: #161c28;
  --grad-row: linear-gradient(180deg, var(--grad-mid-start) 0%, var(--grad-mid-end) 50%, var(--grad-mid-start) 100%);
  --grad-panel-mid: #161b24;
  --cta-mid: #222836;
  --cta-mid-dark: #171d28;
  --cta-edge: #0a0d14;
  --cta-outer: #05070b;
  --cta-glow-1: #272d3c;
  --cta-glow-2: #1f2533;
  --cta-glow-4: #0f131c;
  --cta-glow-5: #090b12;
  --overlay-rgb: 5, 8, 14;
  --max-width: 1180px;
  --section-gap: 24px;
}
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family: 'Digital Sans EF', 'Sarabun', sans-serif;
}
html{scroll-behavior:smooth;}
body{
  background: var(--bg);
  color: var(--text);
  line-height:1.5;
  overflow-x:hidden;
}
img, svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
.page-wrap{max-width:var(--max-width); margin:0 auto; padding:0 24px;}
h1,h2,h3{font-weight:600; letter-spacing:-.01em;}
.topbar{
  background:var(--topbar-bg);
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:44px;
}
.topbar-actions{
  display:flex;
  align-items:center;
  gap:8px;
}
.topbar-actions .button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  min-width:88px;
  width:auto;
  padding:4px 10px;
  font-size:12px;
  font-weight:500;
  border-radius:4px;
  white-space:nowrap;
  text-align:center;
}
.topbar-actions .button img{
  width:14px;
  height:14px;
  object-fit:contain;
  flex-shrink:0;
}
.topbar-actions .button-ghost{
  border-color:rgba(var(--white-rgb), .45);
}
.topbar-actions .button-line{
  border-color:var(--line-green);
  color:var(--line-green);
}
.topbar-actions .button-line:hover{
  background:rgba(var(--line-green-rgb), .12);
  border-color:var(--line-green);
  color:var(--line-green);
}
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:2px;
  padding:2px;
  border:1px solid var(--border);
  border-radius:4px;
  background:var(--nav-bg);
}
.lang-switch__btn{
  display:inline-flex;
  align-items:center;
  gap:5px;
  height:26px;
  padding:0 8px;
  border:none;
  border-radius:3px;
  background:transparent;
  color:var(--text-muted);
  font-size:11px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .2s, color .2s;
}
.lang-switch__btn img{
  width:14px;
  height:14px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.lang-switch__btn:hover{
  color:var(--text);
}
.lang-switch__btn.active{
  background:linear-gradient(
    180deg,
    rgba(var(--brand-rgb), .22) 0%,
    rgba(var(--brand-rgb), .38) 50%,
    rgba(var(--brand-rgb), .22) 100%
  );
  color:var(--brand-light);
}
.site-nav{
  position:sticky; top:0; z-index:202;
  background:rgba(var(--bg-rgb), .92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex;
  align-items:stretch;
  gap:10px;
  height:92px;
}
.logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
  padding-right:4px;
}
.logo-img{
  display:block;
  height:52px;
  width:auto;
  max-width:none;
  max-height:none;
  object-fit:contain;
  object-position:center;
  flex-shrink:0;
  aspect-ratio:auto;
}
.nav-menu-slider{
  display:flex;
  align-items:stretch;
  flex:1;
  min-width:0;
  height:100%;
}
.nav-menu-arrow{
  flex-shrink:0;
  width:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border:none;
  color:var(--brand-light);
  font-size:25px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  transition:color .2s, background .2s;
  padding:0;
}
.nav-menu-arrow:disabled{
  color:var(--brand-light);
  opacity:1;
  cursor:default;
}
@media (hover: hover){
  .nav-menu-arrow:hover:not(:disabled){
    color:var(--brand-soft);
    background:rgba(var(--brand-rgb), .12);
  }
}
.nav-links-track{
  flex:1;
  min-width:0;
  overflow:visible;
  position:relative;
  height:100%;
}
.nav-links{
  display:flex;
  align-items:stretch;
  width:100%;
  height:100%;
  font-size:12px;
  font-weight:500;
  line-height:1.2;
}
.nav-links::-webkit-scrollbar{display:none;}
.nav-links a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  height:100%;
  padding:0 2px;
  box-sizing:border-box;
  color:var(--nav-text);
  transition:background-color .2s, color .2s;
  text-align:center;
  font-size:11.5px;
  line-height:1.2;
  min-width:0;
  overflow:visible;
  position:relative;
}
.nav-link-label{
  display:block;
  width:auto;
  max-width:none;
  white-space:nowrap;
  overflow:visible;
  line-height:1.2;
  text-transform:uppercase;
}
.nav-links a:hover{
  background-color:var(--nav-hover-bg);
  color:var(--text);
  z-index:2;
}
.nav-links a.is-current{
  color:var(--brand);
}
.mobile-game-menu .nav-links a.is-current{
  background:var(--grad-row);
  color:var(--brand);
}
.nav-link-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  line-height:0;
  flex-shrink:0;
}
.nav-link-icon img{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
}
.nav-actions{display:flex; align-items:center; gap:14px;}
.button{
  font-weight:600;
  font-size:14px;
  padding:10px 22px;
  border-radius:8px;
  cursor:pointer;
  border:1px solid transparent;
  transition: all .2s ease;
  display:inline-block;
}
.button-ghost{
  color:var(--text);
  border-color: var(--border);
  background:transparent;
}
.button-ghost:hover{border-color:var(--brand); color:var(--brand);}
.button-login,
.button-brand{
  text-transform:uppercase;
  color:var(--white);
}
.button-login{
  background:linear-gradient(180deg, var(--login-start), var(--login-end));
  border-color:var(--login-border);
}
.button-login:hover{
  background:linear-gradient(180deg, var(--login-end), var(--login-start));
  border-color:var(--login-border);
  color:var(--white);
}
.button-brand{
  background:linear-gradient(180deg, var(--brand-light), var(--brand-dark));
  border-color:var(--brand-border);
}
.button-brand:hover{
  background:linear-gradient(180deg, var(--brand-dark), var(--brand-light));
  border-color:var(--brand-border);
  color:var(--white);
}
.button-large{padding:15px 32px; font-size:15.5px;}
.menu-toggle{
  display:none;
  flex-direction:column; gap:3px;
  background:none; border:none; cursor:pointer;
  padding:2px;
  z-index:1;
}
.menu-toggle span{
  width:18px;
  height:2px;
  background:var(--text);
  transition:transform .25s ease, opacity .25s ease;
}
.menu-toggle.is-open span:nth-child(1){transform:translateY(5px) rotate(45deg);}
.menu-toggle.is-open span:nth-child(2){opacity:0;}
.menu-toggle.is-open span:nth-child(3){transform:translateY(-5px) rotate(-45deg);}
.mobile-overlay{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:rgba(var(--black-rgb), .65);
  z-index:210;
  opacity:0;
  visibility:hidden;
  transition:opacity .28s ease, visibility .28s ease;
  pointer-events:none;
}
.mobile-overlay.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.mobile-drawer{
  position:fixed;
  right:0;
  background:var(--surface);
  z-index:215;
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .3s ease;
  overflow-y:auto;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.mobile-drawer::-webkit-scrollbar{
  display:none;
}
.mobile-drawer.open{
  transform:translateX(0);
}
.mobile-drawer-actions{
  padding:16px 16px 12px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex-shrink:0;
  background:var(--surface);
}
.mobile-drawer-actions .button{
  width:100%;
  text-align:center;
  padding:12px 16px;
  font-size:14px;
  border-radius:6px;
  margin:0;
}
.mobile-drawer-nav{
  display:flex;
  flex-direction:column;
  background:var(--surface);
  border-top:1px solid var(--border);
}
.drawer-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:15px 16px;
  border-bottom:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font-size:14.5px;
  font-weight:500;
  transition:background .2s;
}
.drawer-item:hover,
.drawer-item:focus{
  background:rgba(var(--white-rgb), .03);
}
.drawer-item-icon{
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.drawer-item-icon img{
  width:20px;
  height:20px;
  object-fit:contain;
  display:block;
}
.drawer-item-label{
  flex:1;
}
.mobile-drawer-nav .drawer-item-label{
  text-transform:uppercase;
}
.drawer-item-chevron{
  color:var(--text-muted);
  font-size:20px;
  line-height:1;
  transition:transform .25s ease;
}
.drawer-group{
  display:flex;
  flex-direction:column;
}
.drawer-item--toggle{
  width:100%;
  font:inherit;
  color:inherit;
  background:var(--surface);
  cursor:pointer;
  text-align:left;
  border:none;
  border-bottom:1px solid var(--border);
}
.drawer-item--toggle[aria-expanded="true"] .drawer-item-chevron{
  transform:rotate(90deg);
}
.drawer-submenu{
  display:none;
  flex-direction:column;
  background:var(--surface-dark);
  border-bottom:1px solid var(--border);
}
.drawer-submenu.is-open{
  display:flex;
}
.drawer-submenu .drawer-item{
  padding-left:28px;
  background:var(--surface-dark);
  font-size:13.5px;
}
.drawer-submenu .drawer-item:hover,
.drawer-submenu .drawer-item:focus{
  background:rgba(var(--white-rgb), .04);
}
.drawer-submenu .drawer-item-chevron{display:none;}
.hero{
  width:100%;
  border-bottom:1px solid var(--border);
  background:var(--bg);
  overflow:hidden;
  line-height:0;
}
.hero-link{
  display:block;
  width:100%;
}
.hero picture{
  display:block;
  width:100%;
}
.hero-banner{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1920 / 613;
  object-fit:cover;
}
.mobile-cta-bar{
  display:none;
}
.mobile-cta-bar .button{
  flex:1 1 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:15px 10px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  border-radius:0;
  border:none;
}
.mobile-cta-bar .button-login{
  border-right:1px solid rgba(var(--black-rgb), .25);
}
.mobile-game-menu{
  display:none;
  background:rgba(var(--bg-rgb), .92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.mobile-game-menu .nav-menu-slider{
  display:flex;
  height:84px;
  width:100%;
}
.mobile-game-menu .nav-links-track{
  overflow:hidden;
}
.mobile-game-menu .nav-links{
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:none;
  -ms-overflow-style:none;
  scroll-snap-type:x mandatory;
}
.mobile-game-menu .nav-links::-webkit-scrollbar{
  display:none;
}
.mobile-game-menu .nav-links a{
  flex:0 0 25%;
  width:25%;
  min-width:25%;
  max-width:25%;
  padding:10px 4px;
  gap:5px;
  font-size:10px;
  justify-content:center;
  scroll-snap-align:start;
  box-sizing:border-box;
}
.mobile-game-menu .nav-link-icon{
  width:28px;
  height:28px;
}
.mobile-game-menu .nav-link-icon img{
  width:28px;
  height:28px;
}
.mobile-game-menu .nav-menu-arrow{
  width:26px;
  font-size:22px;
}
.mobile-bottom-nav{
  display:none;
}
.mobile-bottom-nav__list{
  display:flex;
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  list-style:none;
}
.mobile-bottom-nav__item{
  flex:1;
  min-width:0;
}
.mobile-bottom-nav__link{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  height:100%;
  padding:6px 2px 4px;
  color:var(--icon-muted);
  font-size:10px;
  font-weight:600;
  line-height:1.2;
  text-align:center;
  transition:color .2s;
}
.mobile-bottom-nav__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  flex-shrink:0;
  line-height:0;
}
.mobile-bottom-nav__icon img{
  width:22px;
  height:22px;
  object-fit:contain;
  display:block;
}
.mobile-bottom-nav__link.active{
  color:var(--brand);
}
@media (max-width: 1024px){
  .hero-banner{
    aspect-ratio:1280 / 598;
  }
}
section{padding:88px 0;}
.features{
  border-top:1px solid var(--border);
  background:linear-gradient(
    180deg,
    var(--grad-dark-start) 0%,
    var(--grad-dark-mid) 22%,
    var(--grad-dark-end) 50%,
    var(--grad-dark-mid) 78%,
    var(--grad-dark-start) 100%
  );
  padding:var(--section-gap) 0;
}
#games{padding:var(--section-gap) 0;}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
.feature-card{
  background: var(--bg);
  border:1px solid var(--border);
  border-radius:6px;
  padding:18px 16px;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:14px;
}
.feature-icon{
  width:40px; height:40px;
  flex-shrink:0;
  border-radius:4px;
  background:transparent;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.feature-icon img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  max-width:none;
}
.feature-body{
  flex:1;
  min-width:0;
  text-align:left;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:40px;
}
.feature-label{
  font-size:12px;
  font-weight:600;
  color:var(--text-muted);
  margin-bottom:2px;
  line-height:1.2;
}
.feature-stat{
  font-size:16px;
  font-weight:700;
  line-height:1.2;
  color:var(--brand-light);
  letter-spacing:-.01em;
}
.game-catalog{
  --game-banner-width:230px;
  --game-banner-height:600px;
  --game-row-height:58px;
  display:flex;
  align-items:stretch;
  min-height:var(--game-banner-height);
  border:1px solid var(--border);
  border-radius:6px;
  overflow:hidden;
  background:var(--surface);
}
.game-categories{
  display:flex;
  flex-direction:column;
  flex:0 0 var(--game-banner-width);
  width:var(--game-banner-width);
  min-width:var(--game-banner-width);
  max-width:var(--game-banner-width);
  height:var(--game-banner-height);
  min-height:var(--game-banner-height);
  max-height:var(--game-banner-height);
  box-sizing:border-box;
  background:var(--surface-panel);
  border-right:1px solid var(--border);
}
.game-categories__title{
  flex-shrink:0;
  height:var(--game-row-height);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--brand);
  border-bottom:1px solid var(--border);
  background:var(--grad-row);
  user-select:none;
  pointer-events:none;
}
.game-categories__list{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;
}
.game-categories-slider{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;
  min-width:0;
}
.game-categories-slider .nav-menu-arrow{display:none;}
.game-categories-track{
  flex:1;
  min-height:0;
  min-width:0;
  display:flex;
  flex-direction:column;
}
.game-cat-btn{
  display:flex;
  align-items:center;
  gap:10px;
  height:var(--game-row-height);
  padding:0 20px;
  box-sizing:border-box;
  border:none;
  background:transparent;
  color:var(--text-muted);
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:background .2s, color .2s;
}
.game-cat-btn__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  flex-shrink:0;
  line-height:0;
}
.game-cat-btn__icon img{
  width:22px;
  height:22px;
  object-fit:contain;
  display:block;
}
.game-cat-btn:hover:not(.active){
  color:var(--text);
  background:linear-gradient(
    180deg,
    var(--surface-card) 0%,
    var(--grad-panel-mid) 50%,
    var(--surface-card) 100%
  );
}
.game-cat-btn__label{text-transform:uppercase;}
.game-cat-btn.active{
  background:linear-gradient(
    180deg,
    rgba(var(--brand-brown-rgb), .14) 0%,
    rgba(var(--brand-rgb), .24) 50%,
    rgba(var(--brand-brown-rgb), .14) 100%
  );
  color:var(--brand-light);
  font-weight:700;
}
.game-catalog__main{
  flex:1;
  min-width:0;
  min-height:var(--game-banner-height);
  padding:0;
  display:flex;
  flex-direction:column;
  border-right:1px solid var(--border);
}
.game-catalog__banner{
  flex:0 0 var(--game-banner-width);
  width:var(--game-banner-width);
  min-width:var(--game-banner-width);
  max-width:var(--game-banner-width);
  height:var(--game-banner-height);
  min-height:var(--game-banner-height);
  max-height:var(--game-banner-height);
  box-sizing:border-box;
  background:linear-gradient(180deg,var(--surface-raised),var(--surface-panel));
  display:flex;
}
.game-banner-link{
  display:block;
  width:var(--game-banner-width);
  height:var(--game-banner-height);
  text-decoration:none;
}
.game-banner-img{
  display:block;
  width:var(--game-banner-width);
  height:var(--game-banner-height);
  max-width:var(--game-banner-width);
  max-height:var(--game-banner-height);
  object-fit:cover;
  object-position:center top;
}
.game-providers-box{
  border:none;
  border-bottom:1px solid var(--border);
  border-radius:0;
  background:var(--grad-row);
  height:var(--game-row-height);
  padding:0 12px;
  margin:0;
  flex-shrink:0;
  display:flex;
  align-items:center;
  box-sizing:border-box;
}
.game-providers{
  display:flex;
  flex-wrap:nowrap;
  gap:8px;
  width:100%;
  height:calc(var(--game-row-height) - 18px);
}
.game-providers--single{
  justify-content:flex-start;
}
.game-provider-btn{
  flex:1 1 0;
  min-width:0;
  height:100%;
  padding:0 10px;
  border-radius:6px;
  border:1px solid var(--border);
  background:var(--nav-bg);
  color:var(--text-muted);
  font-size:13px;
  font-weight:600;
  text-align:center;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  cursor:pointer;
  transition:all .2s;
}
.game-provider-btn__logo{
  display:block;
  height:22px;
  width:auto;
  max-width:100%;
  max-height:22px;
  object-fit:contain;
  object-position:center;
  flex-shrink:1;
}
.game-provider-btn__label{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
}
.game-provider-btn--logo-only .game-provider-btn__label{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.game-provider-btn:hover{
  border-color:var(--brand);
  color:var(--text);
  background:var(--surface-footer);
}
.game-provider-btn.active{
  border-color:var(--brand);
  color:var(--brand);
  background:var(--surface-card);
}
.game-providers--single .game-provider-btn{
  flex:0 0 calc((100% - 16px) / 3);
  width:calc((100% - 16px) / 3);
  max-width:calc((100% - 16px) / 3);
  min-width:0;
  padding:0 8px;
}
.game-showcase{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  padding:20px;
  flex:1;
  align-content:center;
  align-items:start;
}
.game-tile{
  position:relative;
  display:flex;
  flex-direction:column;
  width:100%;
  height:auto;
  align-self:start;
  text-align:center;
  color:inherit;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:6px;
  overflow:hidden;
  transition:border-color .2s;
}
.game-tile.is-inactive{display:none;}
.game-tile__mobile-link{display:none;}
.game-tile:hover{border-color:var(--brand);}
.game-tile__thumb{
  position:relative;
  aspect-ratio:1;
  flex-shrink:0;
  background:var(--surface);
}
.game-tile__thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.game-tile__placeholder{
  display:block;
  width:100%;
  height:100%;
  background:var(--surface-panel);
}
.game-tile__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(var(--overlay-rgb), .58);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}
.game-tile:hover .game-tile__overlay{
  opacity:1;
  pointer-events:auto;
}
.game-tile__play{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 28px;
  border-radius:6px;
  background:linear-gradient(180deg, var(--brand-light), var(--brand-dark));
  color:var(--white);
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  line-height:1;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 4px 14px rgba(var(--black-rgb), .35);
  transition:background .2s ease;
}
.game-tile__play:hover{
  background:linear-gradient(180deg, var(--brand-dark), var(--brand-light));
}
.game-tile__name{
  margin:0;
  padding:10px 8px;
  min-height:0;
  display:block;
  font-size:12px;
  font-weight:600;
  line-height:1.3;
  color:var(--text);
  border-top:1px solid var(--footer-border);
  background:var(--surface-footer-bar);
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.articles{
  background:var(--surface);
  border-top:1px solid var(--border);
  padding:32px 0;
}
.article-content{width:100%;}
.article-content h1{
  font-size:32px;
  line-height:1.25;
  margin-bottom:16px;
  color:var(--text);
}
.article-content p{
  font-size:15px;
  line-height:1.7;
  color:var(--text-muted);
}
.article-content a{
  color:var(--brand);
  font-weight:600;
  text-decoration:none;
  transition:color .2s;
}
.article-content a:hover{
  color:var(--brand-light);
}
.cta-strip{
  text-align:center;
  padding:70px 24px;
  background:
    radial-gradient(ellipse 38% 110% at 50% 50%, var(--cta-mid) 0%, var(--cta-mid-dark) 38%, var(--cta-edge) 72%),
    linear-gradient(90deg, var(--cta-outer) 0%, var(--cta-edge) 50%, var(--cta-outer) 100%);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.cta-strip__title{
  font-size:32px;
  font-weight:700;
  margin-bottom:8px;
  line-height:1.15;
  color:var(--text);
  text-transform:uppercase;
}
.cta-strip__desc{color:var(--text-muted); margin-bottom:18px;}
footer{
  padding:36px 0 24px;
  font-size:14px;
  border-top:1px solid var(--border);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap:32px;
  padding-bottom:28px;
  border-bottom:1px solid var(--border);
}
.footer-brand p{color:var(--text-muted); font-size:13.5px; margin:14px 0 18px; max-width:260px;}
.footer-logo{display:inline-flex; align-items:center;}
.footer-logo__img{
  display:block;
  height:44px;
  width:auto;
  max-width:none;
  max-height:none;
  object-fit:contain;
  flex-shrink:0;
}
.social-row{display:flex; gap:10px;}
.social-row a{
  width:28px; height:28px; border-radius:7px;
  border:none;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  transition:opacity .2s;
}
.social-row a:hover{opacity:.8;}
.social-row img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  max-width:none;
}
.footer-col h4{font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:var(--brand); margin-bottom:16px;}
.footer-col li{margin-bottom:11px;}
.footer-col a{color:var(--text-muted); transition:color .2s;}
.footer-col a:hover{color:var(--text);}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:18px; flex-wrap:wrap; gap:14px;
}
.footer-bottom p{color:var(--text-muted); font-size:12.5px;}
.payment-icons{display:flex; flex-wrap:wrap; gap:10px;}
.payment-icons span{
  font-size:10.5px;
  border:1px solid var(--border);
  padding:5px 9px; border-radius:6px; color:var(--text-muted);
  cursor:default;
  transition:border-color .2s, color .2s;
}
@media (hover: hover){
  .payment-icons span:hover{
    border-color:var(--brand);
    color:var(--brand-light);
  }
}
.disclaimer{
  font-size:11.5px; color:var(--footer-muted); margin-top:18px; line-height:1.6;
}
.age-badge{
  display:inline-flex; align-items:center; justify-content:center;
  width:26px; height:26px; border-radius:50%;
  border:1px solid var(--border); font-size:11px; font-weight:700; color:var(--brand);
  margin-right:8px;
}
@media (min-width: 1025px){
  .nav-links{
    overflow:visible;
  }
  .nav-links a{
    flex:1 1 0;
    min-width:0;
    padding:0 2px;
    font-size:clamp(9px, 0.82vw, 12px);
  }
}
@media (min-width: 1025px) and (max-width: 1200px){
  .nav-links a{
    font-size:10.5px;
  }
}
@media (max-width: 980px){
  .feature-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr; row-gap:32px;}
}
@media (max-width: 1024px){
  :root{
    --mobile-nav-height:64px;
    --mobile-bottom-nav-height:58px;
  }
  body{
    padding-bottom:calc(var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px));
  }
  .mobile-bottom-nav{
    display:flex;
    position:fixed;
    top:auto;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:auto;
    z-index:218;
    padding-bottom:env(safe-area-inset-bottom, 0px);
    background:var(--surface-mobile);
    border-top:1px solid var(--border);
    border-bottom:none;
    backdrop-filter:none;
    box-sizing:border-box;
  }
  .mobile-bottom-nav__list{
    height:var(--mobile-bottom-nav-height);
  }
  .site-nav{
    height:var(--mobile-nav-height);
    z-index:220;
    position:sticky;
  }
  .topbar{display:none;}
  .nav-inner{
    position:static;
    height:var(--mobile-nav-height);
    justify-content:flex-end;
    align-items:center;
  }
  .mobile-overlay,
  .mobile-drawer{
    top:var(--mobile-nav-height);
    bottom:var(--mobile-bottom-nav-height);
    height:auto;
  }
  .mobile-drawer{
    width:62vw;
  }
  .hero{
    border-bottom:none;
  }
  .mobile-cta-bar{
    display:flex;
    width:100%;
  }
  .mobile-game-menu{
    display:block;
  }
  .logo{
    position:absolute;
    left:0;
    right:0;
    top:50%;
    width:max-content;
    max-width:none;
    margin-inline:auto;
    transform:translateY(-50%);
    z-index:1;
    padding-right:0;
    pointer-events:auto;
  }
  .logo-img{
    height:42px;
    width:auto;
    max-width:none;
    max-height:none;
    object-fit:contain;
  }
  .nav-inner .nav-menu-slider{display:none;}
  .menu-toggle{display:flex;}
  .nav-actions{
    position:relative;
    z-index:2;
    margin-right:-8px;
  }
  .feature-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }
  .feature-card{
    padding:12px 10px;
    gap:8px;
  }
  .feature-icon{
    width:32px;
    height:32px;
  }
  .feature-body{min-height:32px;}
  .feature-label{font-size:10px;}
  .feature-stat{font-size:13px;}
  .game-catalog{
    flex-direction:column;
    min-height:0;
  }
  .game-categories{
    flex:none;
    flex-direction:row;
    width:100%;
    min-width:0;
    max-width:none;
    height:auto;
    min-height:0;
    max-height:none;
    border-right:none;
    border-bottom:1px solid var(--border);
  }
  .game-categories__title{display:none;}
  .game-categories-slider{
    flex-direction:row;
    align-items:stretch;
    width:100%;
    height:auto;
  }
  .game-categories-slider .nav-menu-arrow{
    display:flex;
    width:20px;
    font-size:20px;
    background:transparent;
  }
  .game-categories-slider .nav-menu-arrow:hover,
  .game-categories-slider .nav-menu-arrow:focus,
  .game-categories-slider .nav-menu-arrow:focus-visible{
    background:transparent;
    color:var(--brand-light);
    outline:none;
  }
  .game-categories-track{
    flex:1;
    min-width:0;
    display:block;
    overflow:hidden;
  }
  .game-categories__list{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    width:100%;
    flex:none;
    min-height:0;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
  }
  .game-categories__list::-webkit-scrollbar{display:none;}
  .game-catalog{--game-row-height:auto;}
  .game-cat-btn{
    flex:0 0 25%;
    width:25%;
    max-width:25%;
    min-width:25%;
    flex-direction:column;
    justify-content:center;
    height:auto;
    padding:10px 4px;
    gap:5px;
    font-size:10px;
    scroll-snap-align:start;
  }
  .game-cat-btn__label{
    max-width:100%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .game-cat-btn__icon{
    width:20px;
    height:20px;
  }
  .game-cat-btn__icon img{
    width:20px;
    height:20px;
  }
  .game-catalog__main{padding:0; min-height:0;}
  .game-providers-box{
    height:auto;
    padding:10px 12px;
  }
  .game-providers{
    height:auto;
    gap:6px;
  }
  .game-provider-btn{
    height:auto;
    min-height:36px;
    padding:8px 6px;
    font-size:10px;
  }
  .game-provider-btn__logo{
    height:18px;
    max-height:18px;
  }
  .game-providers--single .game-provider-btn{
    flex:0 0 calc((100% - 12px) / 3);
    width:calc((100% - 12px) / 3);
    max-width:calc((100% - 12px) / 3);
    padding:8px 6px;
  }
  .game-catalog__banner{display:none;}
  .game-showcase{
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    padding:12px;
  }
  .game-tile__name{
    display:block;
    font-size:9px;
    padding:6px 4px;
    min-height:0;
    line-height:1.2;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    word-break:normal;
    text-align:center;
  }
  .game-tile__play{
    padding:8px 18px;
    font-size:10px;
    letter-spacing:.08em;
  }
  .game-tile__overlay{display:none;}
  .game-tile__mobile-link{
    display:block;
    position:absolute;
    inset:0;
    z-index:2;
    border-radius:6px;
  }
  section{padding:56px 0;}
  :root{--section-gap:18px;}
  .features{padding:var(--section-gap) 0;}
  #games{padding:var(--section-gap) 0;}
  .article-content h1{font-size:24px; margin-bottom:12px;}
  .article-content p{font-size:14px; line-height:1.65;}
  .articles{padding:24px 0;}
  .footer-grid{grid-template-columns:1fr;}
  footer{padding:28px 0 20px;}
  .footer-bottom{flex-direction:column; align-items:flex-start;}
  .cta-strip{
    padding:48px 16px;
    background-color:var(--surface-deepest);
    background-image:radial-gradient(
      circle clamp(175px, 52vw, 230px) at 50% 50%,
      var(--cta-glow-1) 0%,
      var(--cta-glow-2) 22%,
      var(--cta-mid-dark) 42%,
      var(--cta-glow-4) 62%,
      var(--cta-glow-5) 82%,
      var(--surface-deepest) 100%
    );
  }
  .cta-strip__title{font-size:24px;}
}
@media (min-width: 1025px){
  .mobile-overlay,
  .mobile-drawer,
  .mobile-game-menu,
  .mobile-bottom-nav{display:none !important;}
  .nav-actions{display:none;}
}
.info-page{
  background:var(--surface);
  border-top:1px solid var(--border);
  padding:24px 0;
}
.info-page__layout{
  display:grid;
  grid-template-columns:250px minmax(0, 1fr);
  gap:16px;
  align-items:start;
}
.info-sidebar{
  display:flex;
  flex-direction:column;
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  overflow:hidden;
}
.info-sidebar__heading{
  display:block;
  padding:14px 16px;
  background:var(--surface-dark);
  color:var(--brand);
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.info-sidebar__link{
  display:block;
  padding:14px 16px;
  background:var(--surface-panel);
  color:var(--text);
  font-size:14px;
  transition:background .2s, color .2s;
}
.info-sidebar__link:hover{color:var(--brand-light);}
.info-sidebar__link.is-active{
  background:rgba(var(--brand-rgb), .24);
  color:var(--brand-light);
  font-weight:600;
}
.info-panel{
  border:1px solid var(--border);
  background:var(--surface-raised);
  min-height:360px;
}
.info-panel__title{
  margin:0;
  padding:14px 20px;
  background:var(--surface-dark);
  border-bottom:1px solid var(--border);
  font-size:16px;
  font-weight:700;
  color:var(--text);
  letter-spacing:normal;
}
.info-panel__body{
  padding:24px 22px 28px;
  color:var(--text-muted);
  font-size:15px;
  line-height:1.75;
}
.info-panel__body h2{
  margin:28px 0 12px;
  font-size:15px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text);
  font-weight:700;
}
.info-panel__body > h2:first-child{
  margin:0 0 14px;
}
.info-panel__body p{margin:0 0 14px;}
.info-panel__body strong{color:var(--text);}
.info-panel__body a:not(.button){
  color:var(--brand);
  font-weight:600;
  text-decoration:none;
}
.info-panel__body a:not(.button):hover{color:var(--brand-light);}
.info-panel__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:4px 0 8px;
}
.info-panel__actions .button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:128px;
  height:40px;
  padding:0 16px;
  border-radius:8px;
  box-sizing:border-box;
  white-space:nowrap;
}
.info-panel__actions .button img{
  width:14px;
  height:14px;
  object-fit:contain;
  flex-shrink:0;
}
.info-panel__social{
  margin:4px 0 8px;
}
.info-panel__social a{
  width:32px;
  height:32px;
  border-radius:8px;
}
.aff-hero{
  margin:0 0 28px;
  padding-bottom:24px;
  border-bottom:1px solid var(--border);
  text-align:center;
}
.info-panel__body .aff-hero__title{
  margin:0 0 8px;
  font-size:28px;
  font-weight:700;
  letter-spacing:normal;
  text-transform:none;
  color:var(--brand);
  line-height:1.3;
}
.aff-hero__subtitle{
  margin:0 0 22px;
  font-size:16px;
  color:var(--text);
}
.aff-structure{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  margin:0 0 22px;
  flex-wrap:wrap;
}
.aff-tree{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  min-width:180px;
}
.aff-tree__row{
  display:flex;
  justify-content:center;
  gap:10px;
}
.aff-tree__node{
  width:22px;
  height:22px;
  border-radius:50%;
  background:rgba(var(--white-rgb), .82);
  box-shadow:0 0 0 2px rgba(var(--brand-rgb), .25);
  position:relative;
}
.aff-tree__node::before{
  content:"";
  position:absolute;
  left:50%;
  top:4px;
  width:8px;
  height:8px;
  margin-left:-4px;
  border-radius:50%;
  background:rgba(var(--black-rgb), .35);
}
.aff-tree__node::after{
  content:"";
  position:absolute;
  left:50%;
  top:12px;
  width:14px;
  height:8px;
  margin-left:-7px;
  border-radius:8px 8px 0 0;
  background:rgba(var(--black-rgb), .35);
}
.aff-tree__node--you{
  width:34px;
  height:34px;
  background:linear-gradient(180deg, var(--brand-light), var(--brand-dark));
  box-shadow:0 0 0 3px rgba(var(--brand-rgb), .35);
}
.aff-tree__node--you::before{
  width:12px;
  height:12px;
  margin-left:-6px;
  top:6px;
  background:rgba(var(--black-rgb), .28);
}
.aff-tree__node--you::after{
  width:20px;
  height:11px;
  margin-left:-10px;
  top:18px;
  background:rgba(var(--black-rgb), .28);
}
.aff-tiers{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:160px;
}
.aff-tier{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:8px 16px;
  border-radius:8px;
  font-size:14px;
  font-weight:700;
  color:var(--white);
  background:linear-gradient(180deg, var(--brand-light), var(--brand-dark));
  border:1px solid var(--brand-border);
  text-align:center;
}
.aff-tier--you{
  background:var(--surface-dark);
  border-color:var(--border);
  color:var(--text);
}
.aff-hero__banner{
  width:100%;
  max-width:520px;
  margin:0 auto;
  text-align:center;
  white-space:normal;
  line-height:1.4;
  padding:14px 20px;
  border-radius:8px;
  font-size:14px;
  font-weight:700;
  color:var(--white);
  background:linear-gradient(180deg, var(--brand-light), var(--brand-dark));
  border:1px solid var(--brand-border);
  box-sizing:border-box;
}
.aff-howto{margin:0;}
.info-panel__body .aff-howto__title{
  margin:0 0 18px;
  font-size:22px;
  letter-spacing:normal;
  text-transform:none;
  color:#7ddea1;
  text-align:left;
}
.info-panel__body .faq-intro{
  margin:0 0 18px;
  font-size:18px;
  letter-spacing:normal;
  text-transform:none;
  color:var(--text);
}
.rg-list{
  margin:0 0 16px;
  padding-left:20px;
  color:var(--text-muted);
}
.rg-list li{
  margin:0 0 8px;
  line-height:1.7;
}
.faq-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq-item{
  margin:0;
  padding:16px 18px;
  border:1px solid var(--border);
  background:var(--surface-dark);
  border-radius:8px;
}
.faq-item h3{
  margin:0 0 10px;
  font-size:15px;
  font-weight:700;
  color:var(--brand);
  line-height:1.5;
}
.faq-item p{
  margin:0;
  color:var(--text-muted);
  font-size:14px;
  line-height:1.7;
}
.aff-steps{
  list-style:none;
  margin:0 0 20px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.aff-steps li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  color:var(--text);
  font-size:15px;
  line-height:1.65;
}
.aff-steps__num{
  flex-shrink:0;
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:700;
  color:var(--brand);
  background:linear-gradient(135deg, rgba(var(--brand-rgb), .18), transparent 70%);
  border-radius:8px;
  transform:skewX(-8deg);
}
.aff-note{
  margin:0;
  padding:16px 18px;
  border:1px solid var(--border);
  background:var(--surface-dark);
  border-radius:8px;
}
.aff-note__title{
  margin:0 0 10px;
  color:#7ddea1;
  font-size:15px;
  font-weight:700;
  line-height:1.5;
}
.aff-note__text{
  margin:0;
  color:var(--text-muted);
  font-size:13.5px;
  line-height:1.7;
}
@media (max-width: 1024px){
  .info-page{padding:16px 0 24px;}
  .info-page__layout{
    grid-template-columns:1fr;
    gap:12px;
    padding:0 12px;
    width:100%;
    max-width:none;
  }
  .info-panel__title{padding:12px 16px; font-size:15px;}
  .info-panel__body{
    padding:18px 16px 24px;
    font-size:14px;
    line-height:1.7;
  }
  .info-panel__body .aff-hero__title{font-size:22px;}
  .aff-hero__subtitle{font-size:14px;}
  .aff-structure{gap:18px;}
  .info-panel__body .aff-howto__title{font-size:18px;}
  .aff-steps li{font-size:14px;}
  .promo-card__meta{
    flex-direction:column;
    align-items:stretch;
  }
  .promo-card__actions{
    width:100%;
  }
  .promo-card__actions .button{width:100%;}
  .promo-card__banner{min-height:140px; font-size:22px;}
}

.promo-page{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:18px !important;
}
.promo-card{
  border:1px solid var(--border);
  background:var(--surface-dark);
  overflow:hidden;
  border-radius:8px;
}
.promo-card__banner{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:168px;
  padding:24px 20px;
  text-align:center;
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--brand-rgb), .28), transparent 45%),
    linear-gradient(135deg, #1a2235 0%, #0d121c 55%, #16120c 100%);
}
.promo-card__banner--slot{
  background:
    radial-gradient(circle at 80% 30%, rgba(var(--brand-rgb), .35), transparent 40%),
    linear-gradient(135deg, #1c2438, #10131b 60%, #1b150b);
}
.promo-card__banner--sports{
  background:
    radial-gradient(circle at 15% 70%, rgba(50, 160, 90, .28), transparent 42%),
    linear-gradient(135deg, #142018, #0e131b 55%, #1a1f18);
}
.promo-card__banner--referral{
  background:
    radial-gradient(circle at 70% 20%, rgba(80, 140, 255, .25), transparent 42%),
    linear-gradient(135deg, #151c2c, #0f121a 60%, #16131d);
}
.promo-card__banner--daily{
  background:
    radial-gradient(circle at 30% 40%, rgba(var(--brand-rgb), .32), transparent 45%),
    linear-gradient(135deg, #1d180f, #10131b 55%, #1a120c);
}
.promo-card__banner-title{
  font-size:clamp(20px, 3.2vw, 28px);
  font-weight:700;
  color:var(--brand-light);
  line-height:1.3;
  text-shadow:0 2px 16px rgba(var(--black-rgb), .45);
  max-width:18ch;
}
.promo-card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-top:1px solid var(--border);
}
.info-panel__body .promo-card__title{
  margin:0 0 6px;
  font-size:16px;
  font-weight:700;
  color:var(--text);
  letter-spacing:normal;
  text-transform:none;
  line-height:1.4;
}
.promo-card__date{
  margin:0;
  font-size:13px;
  color:var(--text-muted);
}
.promo-card__actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  flex-shrink:0;
}
.promo-card__actions .button{
  min-width:110px;
  height:38px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
}
.promo-card.is-open .promo-card__detail-btn{
  border-color:var(--brand);
  color:var(--brand-light);
}
.promo-card__detail{
  padding:0 18px 18px;
  border-top:1px solid var(--border);
  color:var(--text-muted);
  font-size:14px;
  line-height:1.7;
}
.promo-card__detail[hidden]{display:none !important;}
.promo-card__detail p{margin:14px 0 12px;}
.promo-card__terms-label{
  margin:16px 0 8px !important;
  color:var(--brand) !important;
  font-weight:700;
}
.promo-card__detail ul{
  margin:0;
  padding-left:18px;
}
.promo-card__detail li{margin:0 0 8px;}

.page-slots #games,
.page-hot-games #games,
.page-casino #games,
.page-lottery #games,
.page-sports #games,
.page-race #games,
.page-crash-game #games,
.page-arcade #games,
.page-poker #games,
.page-e-sports #games{
  padding-top:24px;
}
/* Category pages: larger banner, same ratio 230:600 (= 276:720), tiles fill width as squares */
.game-catalog--no-sidebar{
  --game-banner-width:276px;
  --game-banner-height:720px;
  height:var(--game-banner-height);
  min-height:var(--game-banner-height);
  max-height:var(--game-banner-height);
}
.game-catalog--no-sidebar .game-catalog__main{
  border-right:1px solid var(--border);
  min-height:0;
  height:100%;
  overflow:hidden;
}
.game-catalog--no-sidebar .game-showcase{
  min-height:0;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  justify-content:stretch;
  align-content:center;
  align-items:start;
  gap:16px;
  padding:16px;
}
.game-catalog--no-sidebar .game-tile{
  width:100%;
  height:auto;
}
.game-catalog--no-sidebar .game-tile__thumb{
  aspect-ratio:1;
  flex-shrink:0;
  width:100%;
}
@media (max-width: 1024px){
  .page-slots #games,
  .page-hot-games #games,
  .page-casino #games,
  .page-lottery #games,
  .page-sports #games,
  .page-race #games,
  .page-crash-game #games,
  .page-arcade #games,
  .page-poker #games,
  .page-e-sports #games{
    padding-top:var(--section-gap);
  }
  .game-catalog--no-sidebar{
    --game-banner-width:230px;
    --game-banner-height:600px;
    height:auto;
    min-height:0;
    max-height:none;
  }
  .game-catalog--no-sidebar .game-catalog__main{
    border-right:none;
    height:auto;
    overflow:visible;
  }
  .game-catalog--no-sidebar .game-showcase{
    grid-template-columns:repeat(3, 1fr);
    gap:8px;
    padding:12px;
  }
}

