/* ===========================
   PokerSPro UI (clean, GG-like)
   =========================== */

:root{
  --brand:#D20000;
  --brand-dark:#8F0000;
  --gold:#D7B46A;

  --dark:#0B0D10;
  --dark2:#11141A;
  --gray:#1A1F28;
  --light:#FFFFFF;

  --txt:#FFFFFF;
  --txt2:rgba(255,255,255,.82);
  --txt3:rgba(255,255,255,.68);
  --txt4:rgba(255,255,255,.52);

  --txt-dark:#0B0D10;
  --txt-dark2:rgba(11,13,16,.78);

  --line:rgba(255,255,255,.12);
  --line-dark:rgba(11,13,16,.14);

  --r12:12px;
  --r16:16px;
  --r20:20px;
  --r24:24px;
  --r999:999px;

  --shadow1:0 10px 30px rgba(0,0,0,.35);
  --shadow2:0 20px 60px rgba(0,0,0,.55);

  --container:1200px;
  --headerH:78px;
}

*{box-sizing:border-box}
html,body{height:100%}
body.pkr{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--dark);
  color:var(--txt);
}

/* disable link underline on hover globally */
a{color:inherit;text-decoration:none}
a:hover{text-decoration:none}

/* layout */
.container{width:min(var(--container), calc(100% - 2rem)); margin:0 auto}
.center{text-align:center}
.mt-24{margin-top:24px}
img{max-width:100%;display:block}

/* ================= FIXED HEADER (NOT STICKY) ================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  height:var(--headerH);
  z-index:999;
  background:var(--dark);
  border-bottom:1px solid var(--line);
}
.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  gap:16px;
}
body.pkr{padding-top:var(--headerH);} /* offset content under fixed header */

.brand{display:flex;align-items:center}
.brand-logo{height:34px;width:auto}

.nav-desktop{display:flex; gap:18px; margin-left:10px}
.nav-link{
  color:var(--txt2);
  font-weight:700;
  padding:10px 10px;
  border-radius:12px;
}
.nav-link:hover{background:rgba(255,255,255,.06); color:#fff}

.header-cta{margin-left:auto}

/* button */
.btn{
  appearance:none;
  border:1px solid transparent;
  border-radius:var(--r999);
  padding:12px 16px;
  font-weight:900;
  letter-spacing:.01em;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  user-select:none;
  transition:transform 120ms ease, background 120ms ease, border-color 120ms ease, opacity 120ms ease;
}
.btn:active{transform:translateY(1px) scale(.99)}
.btn:focus-visible{outline:none; box-shadow:0 0 0 3px rgba(210,0,0,.25)}
.btn-primary{
  background:linear-gradient(180deg, var(--brand), var(--brand-dark));
  color:#fff;
}
.btn-primary:hover{background:linear-gradient(180deg, #E00000, var(--brand-dark))}
.btn-secondary{
  background:transparent;
  border-color:rgba(255,255,255,.18);
  color:#fff;
}
.btn-secondary:hover{background:rgba(255,255,255,.06)}
.btn-sm{padding:9px 14px;font-size:13px}
.btn-ico{display:grid;place-items:center}

/* burger */
.burger{
  display:none;
  margin-left:auto;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px;
  width:18px;
  margin:4px auto;
  background:#fff;
  border-radius:999px;
}

/* Lang switcher */
.lang{position:relative}
.lang-btn{
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  color:#fff;
  border-radius:14px;
  height:44px;
  padding:0 12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:900;
}
.lang-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:210px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:var(--dark);
  box-shadow:var(--shadow2);
  overflow:hidden;
}
.lang-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  cursor:pointer;
  color:var(--txt2);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.lang-item:last-child{border-bottom:0}
.lang-item:hover{background:rgba(255,255,255,.06); color:#fff}
.lang-code{font-weight:900}
.lang-name{color:var(--txt3); font-weight:700}

/* mobile menu */
.mobile-menu{
  display:none;
  position:fixed;
  inset:var(--headerH) 0 auto 0;
  background:rgba(0,0,0,.55);
  border-top:1px solid rgba(255,255,255,.10);
  z-index:998;
}
.mobile-menu__panel{
  padding:14px;
  background:var(--dark);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.nav-mobile{display:grid; gap:10px}
.mobile-actions{display:flex; gap:10px; margin-top:14px; align-items:center}

/* ================= SECTIONS: clean blocks ================= */
.section{padding:48px 0}
.section--dark{background:var(--dark); border-bottom:1px solid rgba(255,255,255,.08)}
.section--gray{background:var(--gray); border-bottom:1px solid rgba(255,255,255,.08)}
.section--light{background:var(--light); border-bottom:1px solid rgba(11,13,16,.10)}

/* headings centered */
.sec-head{text-align:center; margin-bottom:22px}
.sec-title{
  margin:0 0 10px;
  font-size:32px;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.15;
  color:#fff;
}
.sec-title--red{color:var(--brand)}
.sec-subtitle{
  color:var(--txt-dark2);
  font-weight:600;
}
.section--dark .sec-subtitle,
.section--gray .sec-subtitle{color:var(--txt2)}
.sec-subtitle--light{color:var(--txt2)}

/* INTRO */
.section-intro{padding-top:26px}
.intro-grid{
  display:grid;
  grid-template-columns: 500px 1fr;
  gap:26px;
  align-items:center;
}
.intro-media__frame{
  border-radius:var(--r24);
  border:1px solid rgba(255,255,255,.18);
  background:var(--dark2);
  padding:14px;
  box-shadow:var(--shadow1);
}
.intro-content{display:flex; flex-direction:column}
.intro-title{
  text-align:center;
  font-size:42px;
  letter-spacing:.08em;
  font-weight:900;
  margin-bottom:14px;
}
.intro-actions{display:flex; gap:12px; margin-bottom:16px}
.intro-actions .btn{flex:1}

/* intro table (nice borders) */
.intro-table{
  border-radius:var(--r20);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background:var(--dark2);
}
.intro-table__row{
  display:grid;
  grid-template-columns: 170px 1fr;
  gap:12px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  align-items:center;
}
.intro-table__row:last-child{border-bottom:0}
.intro-table__k{color:var(--txt3); font-weight:900}
.intro-table__v{color:#fff; font-weight:700}
.kv-apps{height:26px;width:auto;opacity:.95}

/* badges below table */
.intro-badges{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:12px;
}
.pill{
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  border-radius:999px;
  padding:10px 12px;
  text-align:center;
  color:var(--txt2);
  font-weight:900;
}
.pill-brand{
  border-color:rgba(210,0,0,.45);
  background:rgba(210,0,0,.12);
  color:#fff;
}

/* In-page nav */
.page-nav{
  margin-top:22px;
  display:flex;
  gap:8px;
  overflow:auto;
  padding:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
}
.page-nav__item{
  flex:0 0 auto;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  color:var(--txt3);
  font-weight:900;
  white-space:nowrap;
}
.page-nav__item:hover{background:rgba(255,255,255,.06); color:#fff}
.page-nav__item.is-active{
  background:rgba(210,0,0,.16);
  border-color:rgba(210,0,0,.40);
  color:#fff;
}

/* Richtext */
.rt{border-radius:var(--r24); padding:18px 18px; line-height:1.6}
.rt--light{background:#fff; color:var(--txt-dark); border:1px solid rgba(11,13,16,.10)}
.rt--dark{background:var(--dark2); border:1px solid rgba(255,255,255,.12)}
.rt h3{margin:18px 0 8px; font-size:20px}
.rt p{margin:0 0 12px}
.rt ul{margin:10px 0 0; padding-left:18px}
.rt--dark ul{color:var(--txt2)}
.rt--light ul{color:var(--txt-dark2)}
.muted-dark{color:var(--txt-dark2)}

/* Games */
.subsection{margin-top:28px}
.game-list{display:grid; gap:14px}
.section--light .game-row{
  background:#fff;
  border:1px solid rgba(11,13,16,.10);
}
.game-row{
  display:grid;
  grid-template-columns: 384px 1fr;
  gap:16px;
  align-items:center;
  padding:14px;
  border-radius:var(--r20);
}
.game-img img{
  border-radius:var(--r16);
  border:1px solid rgba(11,13,16,.12);
  background:#f3f3f3;
}

/* Bonuses */
.bonus-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.bonus-card{
  display:flex;
  flex-direction:column;
  border-radius:var(--r20);
  border:1px solid rgba(255,255,255,.16);
  background:var(--dark2);
  overflow:hidden;
  min-height:100%;
}
.section--gray .bonus-card{background:var(--dark2)}
.bonus-img{position:relative; overflow:hidden}
.bonus-img img{
  width:100%;
  height:auto;
  transform:scale(1);
  transition:transform 520ms ease;
}
.bonus-card:hover .bonus-img img{transform:scale(1.05)}
.bonus-body{padding:14px; display:flex; flex-direction:column; gap:8px; flex:1}
.h4{margin:0 0 6px;font-size:18px;font-weight:900}
.muted{color:var(--txt3)}

/* Slider: must fit 3 full slides */
.slider{
  margin-top:18px;
  position:relative;
  display:grid;
  grid-template-columns: 48px 1fr 48px;
  gap:10px;
  align-items:center;
}
.slider-viewport{overflow:hidden}
.slider-track{
  display:flex;
  gap:14px;
  transform:translateX(0);
  transition:transform 420ms ease;
  will-change:transform;
}
.slide{flex:0 0 auto}
.slide-card{
  position:relative;
  border-radius:var(--r20);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background:var(--dark2);
  box-shadow:var(--shadow1);
}
.slide-card img{display:block}
.slide-titlebar{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:10px 12px;
  background:rgba(11,13,16,.92);
  color:#fff;
  font-weight:900;
  letter-spacing:.02em;
}
.slide-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  transition:opacity 220ms ease;
  display:flex;
  align-items:flex-end;
  padding:14px;
}
.slide-overlay ul{
  margin:0;
  padding-left:18px;
  color:#fff;
  font-weight:600;
}
.slide-card:hover .slide-overlay{opacity:1}

.slider-btn{
  width:48px;height:48px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  color:#fff;
  cursor:pointer;
  font-size:28px;
  line-height:1;
}
.slider-btn:hover{background:rgba(255,255,255,.06)}
.slider-btn:disabled{opacity:.45; cursor:not-allowed}

/* WHY cards: icon top, heading below */
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:10px;
}
.why-card{
  border-radius:var(--r20);
  border:1px solid rgba(11,13,16,.10);
  background:#fff;
  padding:16px;
  color:var(--txt-dark);
}
.why-ico{
  width:48px;height:48px;
  border-radius:16px;
  border:1px solid rgba(210,0,0,.25);
  background:rgba(210,0,0,.10);
  display:grid;
  place-items:center;
  margin:0 auto 12px; /* centered icon */
  color:var(--brand);
}
.why-card .h3{margin:0 0 8px; text-align:center}

/* Deposit */
.section-deposit{padding:0}
.deposit-wrap{
  padding:38px 0;
  background:var(--dark);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.deposit-grid{
  display:grid;
  grid-template-columns: 1fr 520px;
  gap:18px;
  align-items:stretch;
}
.deposit-copy{
  border-radius:var(--r24);
  border:1px solid rgba(255,255,255,.16);
  background:var(--dark2);
  padding:18px;
}
.deposit-title{font-size:30px;font-weight:900;line-height:1.15;margin-bottom:6px}
.deposit-gold{color:var(--gold);font-weight:900;letter-spacing:.03em;margin-bottom:10px}
.deposit-art{
  border-radius:var(--r24);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background:var(--dark2);
  position:relative;
}
.deposit-art img{width:100%; height:100%; object-fit:cover; opacity:.95}

/* FAQ */
.faq{margin-top:14px; display:grid; gap:10px}
.faq-item{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:var(--dark2);
  overflow:hidden;
}
.faq-q{
  width:100%;
  text-align:left;
  padding:14px 14px;
  background:transparent;
  border:0;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.faq-ico{
  width:30px;height:30px;
  border-radius:12px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  font-size:18px;
}
.faq-a{border-top:1px solid rgba(255,255,255,.08)}
.faq-a__inner{padding:12px 14px; color:var(--txt2); line-height:1.55}

/* Footer */
.site-footer{
  padding:34px 0 18px;
  background:var(--dark);
  border-top:1px solid rgba(255,255,255,.12);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap:18px;
  align-items:start;
}
.footer-logo{height:30px;width:auto;margin-bottom:10px}
.footer-note{color:var(--txt4); max-width:360px}
.footer-nav{display:grid; gap:10px}
.footer-nav a{color:var(--txt2); font-weight:800}
.footer-nav a:hover{color:#fff}
.footer-cta{display:grid; gap:12px; justify-items:start}
.footer-bonus{
  border:1px solid rgba(255,255,255,.14);
  background:var(--dark2);
  border-radius:18px;
  padding:12px 14px;
}
.footer-bonus__title{color:var(--txt3); font-weight:900}
.footer-bonus__value{color:#fff; font-weight:900}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--txt4);
  flex-wrap:wrap;
}
.footer-small{color:var(--txt4)}

/* To-top */
.to-top{
  position:fixed;
  right:18px;
  bottom:96px;
  width:54px;
  height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:var(--dark2);
  color:#fff;
  font-size:20px;
  cursor:pointer;
  z-index:997;
}
.to-top:hover{background:rgba(255,255,255,.06)}

/* Sticky CTA (bright, closable) */
.sticky-cta{
  position:fixed;
  left:0; right:0;
  bottom:0;
  z-index:996;
  padding:10px 0;
  background:linear-gradient(90deg, rgba(210,0,0,.22), rgba(17,20,26,.92) 35%, rgba(215,180,106,.14));
  border-top:1px solid rgba(255,255,255,.14);
}
.sticky-cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.sticky-cta__left{display:flex; align-items:center; gap:12px}
.sticky-cta__badge{
  background:linear-gradient(180deg, var(--brand), var(--brand-dark));
  color:#fff;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 26px rgba(210,0,0,.22);
}
.sticky-cta__text{color:#fff; font-weight:800}
.sticky-cta__small{display:block; font-weight:700; color:var(--txt2); font-size:13px; margin-top:2px}
.sticky-cta__right{display:flex; align-items:center; gap:10px}
.sticky-cta__close{
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(11,13,16,.72);
  color:#fff;
  cursor:pointer;
}
.sticky-cta__close:hover{background:rgba(255,255,255,.06)}

/* =================== Responsive =================== */
@media (max-width: 980px){
  .intro-grid{grid-template-columns: 1fr; gap:18px}
  .intro-media__frame{max-width:520px;margin:0 auto}
  .intro-badges{grid-template-columns:1fr}
  .intro-table__row{grid-template-columns: 140px 1fr}

  .bonus-grid{grid-template-columns: 1fr}
  .why-grid{grid-template-columns: 1fr}
  .game-row{grid-template-columns: 1fr}
  .deposit-grid{grid-template-columns: 1fr}
  .deposit-art{min-height:220px}

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

@media (max-width: 860px){
  :root{--headerH:72px}

  .nav-desktop{display:none}
  .lang{display:none}

  .header-cta{
    width:40%;
    margin-left:0;
    padding:10px 12px;
    justify-content:center;
  }
  .brand{width:40%}
  .brand-logo{width:100%; height:auto; max-height:34px; object-fit:contain}
  .burger{display:inline-block; width:10%}
  .mobile-menu{display:none}
}
/* ===================== Footer (ideal) ===================== */

.site-footer{
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.12);
}

/* TOP */
.footer-top{
  padding: 34px 0 22px;
  display: grid;
  grid-template-columns: 1.2fr .9fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer-brand{display:flex;flex-direction:column;gap:10px}
.footer-logo{height:30px;width:auto}
.footer-note{color:var(--txt4);max-width:420px;line-height:1.55}

.footer-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:fit-content;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(17,20,26,.75);
  color: var(--txt2);
  font-weight: 800;
}
.footer-pill__dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(210,0,0,.18);
}

/* NAV 2x2 */
.footer-nav{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content:start;
}
.footer-link{
  display:flex;
  align-items:center;
  justify-content:center;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(17,20,26,.65);
  color: var(--txt2);
  font-weight: 900;
  letter-spacing:.01em;
  transition: background 160ms ease, border-color 160ms ease, transform 120ms ease;
}
.footer-link:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.footer-link:active{transform: translateY(1px) scale(.99)}

/* OFFER block (custom CTA) */
.footer-offer{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(17,20,26,.92), rgba(11,13,16,.92));
  padding: 14px;
  box-shadow: var(--shadow1);
}
.footer-offer__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}
.footer-offer__title{color:var(--txt3);font-weight:900}
.footer-offer__value{color:#fff;font-weight:900}
.footer-offer__desc{color:var(--txt4);line-height:1.5;margin-bottom:12px}

.footer-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  height:46px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color:#fff;
  font-weight: 900;
  letter-spacing:.01em;
  box-shadow: 0 14px 30px rgba(210,0,0,.22);
  transition: transform 120ms ease, filter 160ms ease;
}
.footer-cta:hover{filter: brightness(1.05)}
.footer-cta:active{transform: translateY(1px) scale(.99)}
.footer-cta__icon{
  width:30px;height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.16);
}

/* LOGOS row */
.footer-logos{
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(17,20,26,.45);
}
.footer-logos__inner{
  padding: 14px 0;
  display:flex;
  flex-wrap:wrap;
  gap: 14px 26px;
  align-items:flex-end; /* выравнивание по нижней линии */
  justify-content: space-between;
}
.footer-logoimg{
  height: 28px;
  width: auto;
  opacity: .92;
  filter: grayscale(10%);
}
.footer-logoimg:hover{opacity:1}

/* BOTTOM disclaimer */
.footer-bottom{padding: 16px 0 20px}
.footer-bottom__inner{display:grid; gap:12px}

.footer-disclaimer{
  color: var(--txt4);
  line-height: 1.65;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(17,20,26,.55);
  border-radius: 18px;
  padding: 12px 14px;
}

.footer-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:center;
  color: var(--txt4);
  font-size: 13px;
}
.footer-meta__sep{opacity:.6}

/* responsive */
@media (max-width: 980px){
  .footer-top{grid-template-columns: 1fr; gap: 14px}
  .footer-logos__inner{justify-content:flex-start}
  .footer-logoimg{height:24px}
  .footer-meta{justify-content:flex-start}
}