:root{
  --gz-bg:#0a2a7a;
  --gz-bg2:#071f5c;

  --gz-card: rgba(255,255,255,.08);
  --gz-card2: rgba(255,255,255,.10);
  --gz-line: rgba(255,255,255,.14);

  --gz-text:#f5f8ff;
  --gz-muted: rgba(245,248,255,.75);

  --gz-yellow:#ffd23a;
  --gz-orange:#ff8a1f;
  --gz-green:#32e26d;
  --gz-green2:#12b84a;

  --gz-radius: 18px;
  --gz-radius-lg: 26px;

  --gz-shadow: 0 24px 78px rgba(0,0,0,.45);
  --gz-shadow-sm: 0 14px 44px rgba(0,0,0,.32);

  --gz-container: 1240px;

  /* заметно другой набор ощущений/шрифтов */
  --gz-font: ui-sans-serif, "Fredoka", "Baloo 2", "Trebuchet MS", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  --gz-head: ui-sans-serif, "Fredoka", "Arial Black", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html,body{ height:100%; }
body{
  font-family: var(--gz-font);
  color: var(--gz-text);
  background:
    radial-gradient(900px 560px at 18% -10%, rgba(255,210,58,.18), transparent 62%),
    radial-gradient(900px 560px at 90% 20%, rgba(50,226,109,.12), transparent 62%),
    radial-gradient(900px 560px at 55% 110%, rgba(255,138,31,.10), transparent 62%),
    linear-gradient(180deg, var(--gz-bg) 0%, var(--gz-bg2) 100%);
}

/* container */
.container{ width: min(var(--gz-container), calc(100% - 40px)); margin-inline:auto; }

/* Decorative plants in corners (SVG data, no images) */
.gz-corners{
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index: 0;
  opacity:.9;
}
.gz-corners::before,
.gz-corners::after{
  content:"";
  position:absolute;
  width: 260px;
  height: 260px;
  background-repeat:no-repeat;
  background-size: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
  opacity:.95;
}
.gz-corners::before{
  top: -18px; left: -18px;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'>\
<defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'>\
<stop offset='0' stop-color='%2332e26d'/><stop offset='1' stop-color='%23ffd23a'/>\
</linearGradient></defs>\
<path d='M20 190c10-60 70-130 150-150-10 60-70 130-150 150Z' fill='url(%23g)' opacity='.9'/>\
<path d='M35 185c18-48 60-96 125-125-18 48-60 96-125 125Z' fill='%230a2a7a' opacity='.25'/>\
<circle cx='60' cy='70' r='18' fill='%23ff8a1f' opacity='.9'/>\
</svg>");
}
.gz-corners::after{
  bottom: -22px; right: -22px;
  transform: scaleX(-1);
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'>\
<defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'>\
<stop offset='0' stop-color='%2332e26d'/><stop offset='1' stop-color='%23ffd23a'/>\
</linearGradient></defs>\
<path d='M20 190c10-60 70-130 150-150-10 60-70 130-150 150Z' fill='url(%23g)' opacity='.9'/>\
<path d='M35 185c18-48 60-96 125-125-18 48-60 96-125 125Z' fill='%230a2a7a' opacity='.25'/>\
<circle cx='60' cy='70' r='18' fill='%23ff8a1f' opacity='.9'/>\
</svg>");
}

@media (max-width: 560px){
  .gz-corners::before,.gz-corners::after{ width: 170px; height:170px; opacity:.65; }
}

/* ---------- header ---------- */
.gz-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(8,24,68,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.gz-header__row{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.gz-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 190px;
}
.custom-logo-link{ display:flex; align-items:center; text-decoration:none; }
.custom-logo{ max-height: 34px; width:auto; height:auto; }

.gz-logo{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.gz-logo__mark{
  width: 30px; height: 30px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 55%),
    linear-gradient(135deg, rgba(255,210,58,.95), rgba(255,138,31,.92));
  box-shadow: 0 18px 44px rgba(0,0,0,.42);
}
.gz-logo__txt{
  font-family: var(--gz-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
  font-size: 12px;
  line-height: 1.0;
}
.gz-logo__txt b{ display:block; }

.gz-nav{ display:flex; align-items:center; }
.gz-nav__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 10px;
  align-items:center;
}
.gz-nav__list a{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  color: rgba(245,248,255,.90);
  transition: transform .14s ease, background .18s ease, border-color .18s ease;
}
.gz-nav__list a:hover{
  transform: translateY(-1px);
  border-color: rgba(255,210,58,.22);
  background: rgba(255,255,255,.06);
}

.gz-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.gz-flag{
  width: 22px;
  height: 16px;
  border-radius: 4px;
  overflow:hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.14);
}

.gz-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 950;
  font-size: 13px;
  cursor:pointer;
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.gz-btn:active{ transform: translateY(1px); }

.gz-btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: rgba(245,248,255,.92);
}
.gz-btn--ghost:hover{ border-color: rgba(50,226,109,.22); box-shadow: 0 16px 40px rgba(0,0,0,.28); }

.gz-btn--cta{
  color: #1a1200;
  background: linear-gradient(180deg, var(--gz-yellow) 0%, #ffb52a 100%);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 22px 60px rgba(255,210,58,.16);
}
.gz-btn--cta:hover{ box-shadow: 0 28px 76px rgba(255,210,58,.20); }

.gz-burger{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* ---------- mobile offcanvas ---------- */
.gz-drawer{
  position: fixed;
  inset: 0;
  z-index: 80;
  display:none;
}
.gz-drawer.is-open{ display:block; }
.gz-drawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}
.gz-drawer__panel{
  position:absolute;
  top: 0; left: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: rgba(8,24,68,.92);
  backdrop-filter: blur(14px);
  border-right: 1px solid rgba(255,255,255,.10);
  padding: 14px;
  box-shadow: 0 24px 78px rgba(0,0,0,.55);
  transform: translateX(-102%);
  transition: transform .22s ease;
}
.gz-drawer.is-open .gz-drawer__panel{ transform: translateX(0); }

.gz-drawer__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.gz-drawer__close{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(245,248,255,.92);
  cursor:pointer;
}

.gz-drawer__links{
  display:grid;
  gap: 10px;
}
.gz-drawer__links a{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  text-decoration:none;
  font-weight: 900;
}
.gz-drawer__links a span{ font-size: 18px; }

@media (max-width: 980px){
  .gz-nav{ display:none; }
  .gz-burger{ display:inline-flex; }
}

/* ---------- home ---------- */
.gz-home{
  position: relative;
  z-index: 1; /* above corners */
  padding: 16px 0 34px;
}

/* hero carousel */
.gz-hero{
  border-radius: var(--gz-radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: var(--gz-shadow);
  overflow:hidden;
  position: relative;
}

/* hero inner “cartoon panel” */
.gz-hero__frame{
  padding: 14px;
  background:
    radial-gradient(900px 360px at 20% 0%, rgba(255,210,58,.20), transparent 62%),
    radial-gradient(900px 420px at 90% 20%, rgba(50,226,109,.14), transparent 62%),
    rgba(255,255,255,.02);
}

.gz-carousel{
  position: relative;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.gz-slides{
  display:flex;
  overflow:hidden;
}
.gz-slide{
  min-width: 100%;
  padding: 18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
  align-items:center;

  /* playful background per slide */
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(255,210,58,.18), transparent 62%),
    radial-gradient(900px 520px at 85% 20%, rgba(50,226,109,.12), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.gz-slide__kicker{
  font-family: var(--gz-head);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,248,255,.82);
  margin-bottom: 8px;
}
.gz-slide__title{
  margin:0 0 10px;
  font-family: var(--gz-head);
  font-size: clamp(26px, 3.0vw, 44px);
  line-height: 1.03;
}
.gz-slide__title b{ color: rgba(255,210,58,.95); }
.gz-slide__text{
  margin:0 0 14px;
  color: rgba(245,248,255,.78);
  line-height: 1.7;
}

.gz-hero__ctaRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
.gz-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(245,248,255,.82);
  font-weight: 900;
  font-size: 12px;
}

.gz-slide__art{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  min-height: 220px;
}
.gz-artCard{
  width: min(380px, 100%);
  height: 240px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(240px 160px at 30% 30%, rgba(255,255,255,.20), transparent 62%),
    radial-gradient(240px 160px at 70% 40%, rgba(255,138,31,.18), transparent 72%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 22px 70px rgba(0,0,0,.40);
  position: relative;
  overflow:hidden;
}
.gz-artCard::after{
  content:"🧙‍♂️🎰🪙";
  position:absolute;
  right: 12px;
  bottom: 12px;
  font-size: 28px;
  opacity:.85;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
}

/* dots */
.gz-dots{
  position:absolute;
  left: 18px;
  bottom: 14px;
  display:flex;
  gap: 8px;
  z-index: 3;
}
.gz-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  box-shadow: 0 0 0 6px rgba(255,255,255,.05);
}
.gz-dot.is-active{ background: rgba(255,210,58,.95); box-shadow: 0 0 0 6px rgba(255,210,58,.12); }

/* arrows */
.gz-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  cursor:pointer;
  display:grid;
  place-items:center;
  color: rgba(245,248,255,.92);
}
.gz-arrow--prev{ left: 10px; }
.gz-arrow--next{ right: 10px; }

@media (max-width: 980px){
  .gz-slide{ grid-template-columns: 1fr; }
  .gz-slide__art{ justify-content:flex-start; }
  .gz-artCard{ height: 200px; }
}

/* ---------- slots block (ONE) ---------- */
.gz-sec{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.gz-sec__title{
  margin:0;
  font-family: var(--gz-head);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gz-sec__link{
  color: rgba(245,248,255,.75);
  font-weight: 900;
  font-size: 12px;
  text-decoration:none;
}
.gz-sec__link:hover{ text-decoration: underline; text-underline-offset: 3px; }

.gz-slider{
  margin-top: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--gz-shadow-sm);
  padding: 12px;
  position: relative;
  overflow:hidden;
}
.gz-track{
  display:flex;
  gap: 12px;
  overflow-x:auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,210,58,.30) transparent;
}
.gz-track::-webkit-scrollbar{ height: 7px; }
.gz-track::-webkit-scrollbar-thumb{ background: rgba(255,210,58,.18); border-radius: 999px; }
.gz-track::-webkit-scrollbar-track{ background: transparent; }

.gz-game{
  min-width: 210px;
  max-width: 210px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 16px 44px rgba(0,0,0,.34);
  position: relative;
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
}
.gz-game:hover{
  transform: translateY(-4px);
  border-color: rgba(50,226,109,.22);
  box-shadow: 0 26px 70px rgba(0,0,0,.44);
  filter: saturate(1.06);
}

.gz-game__media{
  display:block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(255,210,58,.14), rgba(50,226,109,.10));
  position: relative;
}
.gz-game__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.03);
  transition: transform .26s ease, filter .26s ease;
}
.gz-game:hover .gz-game__media img{
  transform: scale(1.10);
  filter: saturate(1.12) contrast(1.05);
}

/* hover play overlay */
.gz-game__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(420px 220px at 50% 0%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
  opacity: 0;
  transition: opacity .2s ease;
}
.gz-game:hover .gz-game__overlay{ opacity: 1; }

.gz-play{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 36px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, var(--gz-green) 0%, var(--gz-green2) 100%);
  color: #06210f;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.gz-game:hover .gz-play{ transform: translateY(0); opacity: 1; }

.gz-game__meta{
  padding: 10px 10px 12px;
}
.gz-game__title{
  margin:0;
  font-weight: 950;
  font-size: 13px;
  line-height: 1.25;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
  min-height: calc(1.25em * 2);
}
.gz-game__sub{
  color: rgba(245,248,255,.62);
  font-size: 12px;
  margin-top: 6px;
}

/* ---------- FAQ ---------- */
.gz-faq{ margin-top: 16px; }
.gz-faq__title{
  margin: 0 0 10px;
  font-family: var(--gz-head);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gz-faq__list{ display:grid; gap: 10px; }
.gz-faq details{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
  overflow:hidden;
}
.gz-faq summary{
  cursor:pointer;
  padding: 12px 14px;
  font-weight: 950;
  list-style:none;
  position: relative;
}
.gz-faq summary::-webkit-details-marker{ display:none; }
.gz-faq summary::after{
  content:"+";
  position:absolute;
  right: 14px;
  top: 10px;
  width: 28px; height: 28px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,210,58,.12);
}
.gz-faq details[open] summary::after{ content:"–"; }
.gz-faq__a{
  padding: 0 14px 14px;
  color: rgba(245,248,255,.74);
  line-height: 1.7;
  font-size: 13px;
}

/* ---------- SEO block ---------- */
.gz-seo{ margin-top: 16px; }
.gz-seo__box{
  border-radius: var(--gz-radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(760px 260px at 12% 0%, rgba(255,210,58,.12), transparent 60%),
    radial-gradient(760px 260px at 90% 10%, rgba(50,226,109,.08), transparent 60%),
    rgba(255,255,255,.02);
  box-shadow: var(--gz-shadow-sm);
  padding: 16px;
}
.gz-seo__box :where(h1,h2){ margin: 6px 0 10px; font-size: 22px; }
.gz-seo__box :where(h3){ margin: 16px 0 8px; font-size: 16px; }
.gz-seo__box :where(p){ margin: 0 0 12px; color: rgba(245,248,255,.78); line-height: 1.75; }
.gz-seo__box :where(ul,ol){ margin: 0 0 12px 18px; color: rgba(245,248,255,.78); line-height: 1.75; }
.gz-seo__box :where(a){ color: rgba(255,210,58,.95); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- chat widget ---------- */
.gz-chat{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
}
.gz-chat__btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,24,68,.82);
  backdrop-filter: blur(12px);
  color: rgba(245,248,255,.92);
  font-weight: 950;
  cursor:pointer;
  box-shadow: 0 18px 44px rgba(0,0,0,.34);
}
.gz-chat__btn i{ font-style: normal; font-size: 18px; }
.gz-chat__panel{
  width: min(320px, 86vw);
  margin-top: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,24,68,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.44);
  padding: 12px;
  display:none;
}
.gz-chat.is-open .gz-chat__panel{ display:block; }
.gz-chat__title{ font-weight: 950; margin-bottom: 6px; }
.gz-chat__text{ color: rgba(245,248,255,.75); font-size: 13px; line-height: 1.6; }
@media (max-width: 560px){
  .gz-chat__btn span{ display:none; }
}

/* ---------- footer ---------- */
.gz-footer{
  margin-top: 18px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.gz-footer__row{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.gz-footer__brand{
  font-family: var(--gz-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 950;
}
.gz-footer__muted{
  margin-top: 8px;
  color: rgba(245,248,255,.62);
  font-size: 12px;
  line-height: 1.65;
  max-width: 54ch;
}
.gz-footer__links{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gz-footer__link{
  display:inline-flex;
  align-items:center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  color: rgba(245,248,255,.78);
}
.gz-footer__link:hover{ border-color: rgba(255,210,58,.22); color: rgba(245,248,255,.92); }

.gz-payments{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
.gz-pay{
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: rgba(245,248,255,.78);
  font-weight: 900;
  font-size: 12px;
}
.gz-pay svg{ width: 26px; height: 16px; opacity:.95; }

/* lite page */
.gz-lite{ padding: 16px 0 34px; }
.gz-bc{ font-size: 12px; color: rgba(245,248,255,.66); }
.gz-bc a{ color: rgba(50,226,109,.92); text-decoration:none; }
.gz-bc a:hover{ text-decoration: underline; text-underline-offset: 3px; }
.gz-lite__title{ margin: 8px 0 0; font-size: 28px; }