﻿:root{
  --bg: #0A0E17;
  --surface: #121826;
  --surface-2: #171f31;
  --line: #232c40;
  --gold: #E3B23C;
  --gold-2: #f4d78a;
  --gold-deep: #c89428;
  --teal: #1F8A70;
  --crimson: #E4483B;
  --text: #F5F1E8;
  --muted: #8B93A7;
  --radius: 14px;
  --maxw: 1180px;
  --section-gap-y: 24px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background: var(--bg);
  color: var(--text);
  font-family:sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}
img, svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
.eyebrow{
  font-family:monospace;
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
}
h1,h2,h3{font-family:serif; font-weight:600; letter-spacing:-.01em;}
.mono{font-family:monospace;}


.topbar{
  background:#060810;
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:44px;
}
.topbar-actions{
  display:flex;
  align-items:center;
  gap:8px;
}
.topbar-actions .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  min-width:96px;
  padding:4px 10px;
  font-size:11px;
  font-weight:600;
  border-radius:4px;
  white-space:nowrap;
  text-align:center;
}
.topbar-actions .btn svg{
  width:14px;
  height:14px;
  flex-shrink:0;
}
.topbar-actions .btn-ghost{
  border-color:rgba(255,255,255,.45);
}
.topbar-actions .btn-login{
  background:linear-gradient(180deg, #7a7a7a, #3a3a3a);
  border-color:#5a5a5a;
  color:#ffffff;
}
.topbar-actions .btn-login:hover{
  background:linear-gradient(180deg, #3a3a3a, #7a7a7a);
  border-color:#5a5a5a;
  color:#ffffff;
}
.topbar-actions .btn-line{
  border-color:#06C755;
  color:#06C755;
}
.topbar-actions .btn-line:hover{
  background:rgba(6,199,85,.12);
  border-color:#06C755;
  color:#06C755;
}
.topbar-actions .btn-gold{
  background:linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  border-color:#c9a033;
  color:#191204;
}
.topbar-actions .btn-gold:hover{
  background:linear-gradient(180deg, var(--gold-deep), var(--gold-2));
  border-color:#c9a033;
  color:#191204;
  filter:none;
  transform:none;
}


.site-nav{
  position:sticky; top:0; z-index:202;
  background:rgba(10,14,23,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.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;
}
.logo-text{
  font-family:serif;
  font-size:24px;
  font-weight:700;
  display:flex; align-items:center; gap:8px;
  letter-spacing:.01em;
}
.logo-text .dot{
  width:9px; height:9px; border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.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(--gold-2);
  font-size:25px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  transition:color .2s, background .2s;
  padding:0;
}
.nav-menu-arrow:hover:not(:disabled){
  color:#fff0c8;
  background:rgba(227,178,60,.12);
}
.nav-menu-arrow:disabled{
  color:var(--gold-2);
  opacity:1;
  cursor:default;
}
.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:#A8A8A8;
  transition:background-color .2s, color .2s;
  text-align:center;
  font-size:12px;
  font-weight:600;
  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;
}
.nav-links a:hover{
  background-color:#1a2033;
  color:var(--text);
  z-index:2;
}
.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,
.menu-icon{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
}
.nav-actions{display:flex; align-items:center; gap:14px;}
.btn{
  font-family:sans-serif;
  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;
}
.btn-ghost{
  color:var(--text);
  border-color: var(--line);
  background:transparent;
}
.btn-ghost:hover{border-color:var(--gold); color:var(--gold);}
.btn-gold{
  background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  color:#191204;
}
.btn-gold:hover{filter:brightness(1.08); transform:translateY(-1px);}
.btn-lg{padding:15px 32px; font-size:15.5px;}
.burger{
  display:none;
  flex-direction:column; gap:3px;
  background:none; border:none; cursor:pointer;
  padding:2px;
  z-index:1;
}
.burger span{
  width:18px;
  height:2px;
  background:var(--text);
  transition:transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1){transform:translateY(5px) rotate(45deg);}
.burger.is-open span:nth-child(2){opacity:0;}
.burger.is-open span:nth-child(3){transform:translateY(-5px) rotate(-45deg);}
.mobile-overlay{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,.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;
}
.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 .btn{
  width:100%;
  text-align:center;
  padding:12px 16px;
  font-size:14px;
  border-radius:6px;
  margin:0;
}
.mobile-drawer-actions .btn-gold{
  background:linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  border-color:#c9a033;
  color:#191204;
}
.mobile-drawer-actions .btn-gold:hover{
  background:linear-gradient(180deg, var(--gold-deep), var(--gold-2));
  border-color:#c9a033;
  color:#191204;
  filter:none;
  transform:none;
}
.mobile-drawer-actions .btn-login{
  background:linear-gradient(180deg, #7a7a7a, #3a3a3a);
  border-color:#5a5a5a;
  color:#ffffff;
}
.mobile-drawer-actions .btn-login:hover{
  background:linear-gradient(180deg, #3a3a3a, #7a7a7a);
  border-color:#5a5a5a;
  color:#ffffff;
}
.mobile-drawer-nav{
  display:flex;
  flex-direction:column;
  background:var(--surface);
  border-top:1px solid var(--line);
}
.drawer-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:15px 16px;
  border-bottom:1px solid var(--line);
  background:var(--surface);
  color:var(--text);
  font-size:14.5px;
  font-weight:500;
  transition:background .2s;
}
.drawer-item:hover,
.drawer-item:focus{
  background:rgba(255,255,255,.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;
}
.drawer-item-chevron{
  color:var(--muted);
  font-size:20px;
  line-height:1;
}

.hero{
  width:100%;
  border-bottom:1px solid var(--line);
  background:var(--bg);
  overflow:hidden;
  line-height:0;
}
.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 .btn{
  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 .btn-login{
  background:linear-gradient(180deg, #7a7a7a, #3a3a3a);
  color:#ffffff;
  border-right:1px solid rgba(0,0,0,.25);
}
.mobile-cta-bar .btn-login:hover{
  background:linear-gradient(180deg, #3a3a3a, #7a7a7a);
  color:#ffffff;
}
.mobile-cta-bar .btn-gold{
  background:linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  color:#ffffff;
}
.mobile-cta-bar .btn-gold:hover{
  background:linear-gradient(180deg, var(--gold-deep), var(--gold-2));
  color:#ffffff;
  filter:none;
  transform:none;
}


.mobile-game-menu{
  display:none;
  background:rgba(10,14,23,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.mobile-game-menu .nav-menu-slider{
  display:flex;
  height:84px;
  width:100%;
}
.mobile-game-menu .nav-links{
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.mobile-game-menu .nav-links::-webkit-scrollbar{
  display:none;
}
.mobile-game-menu .nav-links a{
  flex:0 0 84px;
  width:84px;
  min-width:84px;
  padding:10px 4px;
  gap:5px;
  font-size:10.5px;
  font-weight:600;
  justify-content:center;
}
.mobile-game-menu .nav-link-icon{
  width:28px;
  height:28px;
}
.mobile-game-menu .nav-link-icon img,
.mobile-game-menu .menu-icon{
  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:#7c7c7c;
  font-size:11px;
  font-weight:600;
  line-height:1.25;
  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;
  transition:filter .2s;
}
.mobile-bottom-nav__link.active{
  color:var(--gold);
}
.mobile-bottom-nav__link.active .mobile-bottom-nav__icon img{
  filter:brightness(0) saturate(100%) invert(72%) sepia(58%) saturate(497%) hue-rotate(357deg) brightness(95%) contrast(91%);
}
@media (max-width: 1024px){
  .hero-banner{
    aspect-ratio:1280 / 598;
  }
}

section{padding:88px 0;}
.features{
  border-top:1px solid var(--line);
  background:linear-gradient(
    180deg,
    #080a0e 0%,
    #10141d 22%,
    #1a1f2a 50%,
    #10141d 78%,
    #080a0e 100%
  );
  padding:var(--section-gap-y) 0;
}
.section-head{
  max-width:600px;
  margin-bottom:48px;
}
.section-head h2{font-size:36px; margin-top:12px;}
.section-head p{color:var(--muted); margin-top:12px; font-size:15.5px;}


#games{padding:var(--section-gap-y) 0;}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
.feature-card{
  background: var(--bg);
  border:1px solid var(--line);
  border-radius:6px;
  padding:18px 16px;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:14px;
  transition: border-color .2s;
}
.feature-card:hover{border-color:var(--gold);}
.feature-icon{
  width:40px; height:40px;
  flex-shrink:0;
  border-radius:4px;
  background: rgba(227,178,60,.12);
  display:flex; align-items:center; justify-content:center;
}
.feature-icon svg{stroke:var(--gold); width:20px; height:20px;}
.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(--muted);
  margin-bottom:2px;
  line-height:1.2;
}
.feature-stat{
  font-size:16px;
  font-weight:700;
  line-height:1.2;
  color:var(--gold-2);
  letter-spacing:-.01em;
}


.game-catalog{
  --game-side-w:230px;
  --game-side-h:600px;
  --game-row-h:58px;
  display:flex;
  align-items:stretch;
  min-height:var(--game-side-h);
  border:1px solid var(--line);
  border-radius:6px;
  overflow:hidden;
  background:var(--surface);
}
.game-categories{
  display:flex;
  flex-direction:column;
  flex:0 0 var(--game-side-w);
  width:var(--game-side-w);
  min-width:var(--game-side-w);
  max-width:var(--game-side-w);
  height:var(--game-side-h);
  min-height:var(--game-side-h);
  max-height:var(--game-side-h);
  box-sizing:border-box;
  background:#0d1119;
  border-right:1px solid var(--line);
}
.game-categories__title{
  flex-shrink:0;
  height:var(--game-row-h);
  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(--gold);
  border-bottom:1px solid var(--line);
  background:linear-gradient(
    180deg,
    #0c1016 0%,
    #161c28 50%,
    #0c1016 100%
  );
  user-select:none;
  pointer-events:none;
}
.game-categories__list{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;
}
.game-cat-btn{
  display:flex;
  align-items:center;
  gap:10px;
  height:var(--game-row-h);
  padding:0 20px;
  box-sizing:border-box;
  border:none;
  background:transparent;
  color:var(--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,
    #0e1118 0%,
    #161b24 50%,
    #0e1118 100%
  );
}
.game-cat-btn__label{text-transform:uppercase;}
.game-cat-btn.active{
  background:linear-gradient(
    180deg,
    rgba(140,100,20,.14) 0%,
    rgba(227,178,60,.24) 50%,
    rgba(140,100,20,.14) 100%
  );
  color:var(--gold-2);
  font-weight:700;
}
.game-catalog__main{
  flex:1;
  min-width:0;
  min-height:var(--game-side-h);
  padding:0;
  display:flex;
  flex-direction:column;
  border-right:1px solid var(--line);
}
.game-catalog__banner{
  flex:0 0 var(--game-side-w);
  width:var(--game-side-w);
  min-width:var(--game-side-w);
  max-width:var(--game-side-w);
  height:var(--game-side-h);
  min-height:var(--game-side-h);
  max-height:var(--game-side-h);
  box-sizing:border-box;
  background:linear-gradient(180deg,#171f31,#0d1119);
  display:flex;
}
.game-banner-link{
  display:block;
  width:var(--game-side-w);
  height:var(--game-side-h);
  text-decoration:none;
}
.game-banner-img{
  display:block;
  width:var(--game-side-w);
  height:var(--game-side-h);
  max-width:var(--game-side-w);
  max-height:var(--game-side-h);
  object-fit:cover;
  object-position:center top;
}
.game-providers-box{
  border:none;
  border-bottom:1px solid var(--line);
  border-radius:0;
  background:linear-gradient(
    180deg,
    #0c1016 0%,
    #161c28 50%,
    #0c1016 100%
  );
  height:var(--game-row-h);
  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-h) - 18px);
}
.game-providers--single{
  justify-content:flex-start;
}
.game-provider-btn{
  flex:1 1 0;
  min-width:0;
  height:100%;
  padding:0 8px;
  border-radius:6px;
  border:1px solid var(--line);
  background:#0a0d12;
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  text-align:center;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  cursor:pointer;
  transition:all .2s;
}
.game-provider-btn:hover{
  border-color:var(--gold);
  color:var(--text);
  background:#0c0f14;
}
.game-provider-btn.active{
  border-color:var(--gold);
  color:var(--gold);
  background:#0e1118;
}
.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(--line);
  border-radius:6px;
  overflow:hidden;
  transition:border-color .2s;
}
.game-tile__mobile-link{display:none;}
.game-tile:hover{border-color:var(--gold);}
.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__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(5,8,14,.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(--gold-2), var(--gold-deep));
  color:#fff;
  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(0,0,0,.35);
  transition:background .2s ease;
}
.game-tile__play:hover{
  background:linear-gradient(180deg, var(--gold-deep), var(--gold-2));
}
.game-tile__name{
  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 #22262e;
  background:#161a20;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}


.articles{
  background:var(--surface);
  border-top:1px solid var(--line);
  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(--muted);
}
.article-content a{
  color:var(--gold);
}
.article-content a:hover{
  color:var(--gold-2);
}


.cta-strip{
  text-align:center;
  padding:70px 24px;
  background:
    radial-gradient(ellipse 38% 110% at 50% 50%, #222836 0%, #171d28 38%, #0a0d14 72%),
    linear-gradient(90deg, #05070b 0%, #0a0d14 50%, #05070b 100%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cta-strip__title{
  font-size:32px;
  font-weight:700;
  margin-bottom:8px;
  line-height:1.15;
  color:var(--text);
}
.cta-strip__desc{color:var(--muted); margin-bottom:18px;}


footer{padding:36px 0 24px; font-size:14px;}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap:32px;
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
}
.footer-brand p{color:var(--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;}
.social-row{display:flex; gap:10px;}
.social-row a{
  width:34px; height:34px; border-radius:8px;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.social-row a:hover{border-color:var(--gold);}
.social-row svg{width:16px; height:16px; stroke:var(--muted);}
.footer-col h4{font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:var(--gold); margin-bottom:16px;}
.footer-col li{margin-bottom:11px;}
.footer-col a{color:var(--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(--muted); font-size:12.5px;}
.payment-icons{display:flex; gap:10px;}
.payment-icons span{
  font-family:monospace;
  font-size:10.5px;
  border:1px solid var(--line);
  padding:5px 9px; border-radius:6px; color:var(--muted);
}
.disclaimer{
  font-size:11.5px; color:#5a6376; 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(--line); font-size:11px; font-weight:700; color:var(--gold);
  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(10px, 0.85vw, 12px);
  }
}
@media (min-width: 1025px) and (max-width: 1200px){
  .nav-links a{
    font-size:11px;
  }
}
@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:#0b0e15;
    border-top:1px solid var(--line);
    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;
  }
  .topbar{display:none;}
  .nav-inner{
    position:relative;
    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:50%;
    top:50%;
    transform:translate(-50%, -50%);
  }
  .logo-img{
    height:42px;
  }
  .nav-inner .nav-menu-slider{display:none;}
  .burger{display:flex;}
  .nav-actions{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-icon svg{
    width:16px;
    height:16px;
  }
  .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(--line);
  }
  .game-categories__title{display:none;}
  .game-categories__list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    width:100%;
    flex:1;
    min-height:0;
    overflow:visible;
  }
  .game-catalog{--game-row-h:auto;}
  .game-cat-btn{
    flex:none;
    width:100%;
    min-width:0;
    flex-direction:column;
    justify-content:center;
    height:auto;
    padding:10px 4px;
    gap:5px;
    font-size:10px;
  }
  .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-cat-btn.active{
    background:linear-gradient(
      180deg,
      rgba(140,100,20,.14) 0%,
      rgba(227,178,60,.24) 50%,
      rgba(140,100,20,.14) 100%
    );
    color:var(--gold-2);
  }
  .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 4px;
    font-size:10px;
  }
  .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 4px;
  }
  .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-y:18px;}
  .features{padding:var(--section-gap-y) 0;}
  #games{padding:var(--section-gap-y) 0;}
  .section-head h2{font-size:28px;}
  .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:#06080c;
    background-image:radial-gradient(
      circle clamp(175px, 52vw, 230px) at 50% 50%,
      #272d3c 0%,
      #1f2533 22%,
      #171d28 42%,
      #0f131c 62%,
      #090b12 82%,
      #06080c 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;}
}