:root{
  --vd-bg:#070913;
  --vd-bg2:#0b0f1c;

  --vd-surface: rgba(255,255,255,.04);
  --vd-surface2: rgba(255,255,255,.06);
  --vd-line: rgba(255,255,255,.10);

  --vd-text:#f2f4ff;
  --vd-muted: rgba(242,244,255,.70);

  --vd-green:#3cff8f;
  --vd-green2:#19c96a;

  --vd-gold:#f4d06a;
  --vd-orange:#ff8b2a;

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

  --vd-shadow: 0 24px 76px rgba(0,0,0,.58);
  --vd-shadow-sm: 0 14px 44px rgba(0,0,0,.42);

  --vd-container: 1240px;

  /* стиль отличается от других: “casino ui / vegas” */
  --vd-font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  --vd-head: ui-sans-serif, "Arial Black", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html,body{ height:100%; }
body{
  font-family: var(--vd-font);
  color: var(--vd-text);
  background:
    radial-gradient(900px 520px at 18% -10%, rgba(244,208,106,.10), transparent 62%),
    radial-gradient(900px 560px at 86% 20%, rgba(255,139,42,.08), transparent 62%),
    radial-gradient(900px 560px at 45% 120%, rgba(60,255,143,.06), transparent 62%),
    linear-gradient(180deg, var(--vd-bg) 0%, var(--vd-bg2) 100%);
}

/* star specks */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  opacity:.18;
  background:
    radial-gradient(1px 1px at 12% 20%, rgba(255,255,255,.24), transparent 60%),
    radial-gradient(1px 1px at 28% 66%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(1px 1px at 54% 38%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(1px 1px at 78% 72%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,.14), transparent 60%);
  mix-blend-mode: overlay;
}

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

/* ---------- header ---------- */
.vd-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(7,9,19,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vd-header__row{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.vd-left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
}
.vd-burger{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.custom-logo-link{ display:flex; align-items:center; text-decoration:none; }
.custom-logo{ max-height: 34px; width:auto; height:auto; }

.vd-logo{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.vd-logo__mark{
  width: 32px; height: 32px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.30), transparent 55%),
    linear-gradient(135deg, rgba(244,208,106,.95), rgba(255,139,42,.85));
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
}
.vd-logo__txt{
  font-family: var(--vd-head);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 950;
  font-size: 12px;
  line-height: 1;
}
.vd-logo__txt b{ display:block; letter-spacing:.12em; }
.vd-logo__txt span{ opacity:.78; }

.vd-nav{ display:flex; align-items:center; }
.vd-nav__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 14px;
  align-items:center;
}
.vd-nav__list a{
  text-decoration:none;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(242,244,255,.84);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.vd-nav__list a:hover{
  color: rgba(242,244,255,.98);
  border-bottom-color: rgba(60,255,143,.55);
}

.vd-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  justify-content:flex-end;
}

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

.vd-icon-btn{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.vd-btn{
  height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .14s ease, box-shadow .18s ease, filter .18s ease;
}
.vd-btn:active{ transform: translateY(1px); }

.vd-btn--ghost{
  color: rgba(242,244,255,.92);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.vd-btn--ghost:hover{ box-shadow: 0 18px 54px rgba(0,0,0,.35); }

.vd-btn--green{
  color: #06140b;
  background: linear-gradient(180deg, var(--vd-green) 0%, var(--vd-green2) 100%);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 20px 70px rgba(60,255,143,.12);
}
.vd-btn--green:hover{ filter:saturate(1.05); }

/* drawer */
.vd-drawer{
  position: fixed;
  inset: 0;
  z-index: 80;
  display:none;
}
.vd-drawer.is-open{ display:block; }
.vd-drawer__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.55); }
.vd-drawer__panel{
  position:absolute;
  top:0; left:0;
  width: min(360px, 90vw);
  height: 100%;
  background: rgba(10,12,18,.92);
  backdrop-filter: blur(14px);
  border-right: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 90px rgba(0,0,0,.65);
  transform: translateX(-102%);
  transition: transform .22s ease;
  padding: 14px;
}
.vd-drawer.is-open .vd-drawer__panel{ transform: translateX(0); }
.vd-drawer__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.vd-drawer__close{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(242,244,255,.92);
  cursor:pointer;
}
.vd-drawer__links{
  display:grid;
  gap: 10px;
}
.vd-drawer__links a{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  font-weight: 950;
  color: rgba(242,244,255,.92);
}
.vd-drawer__links a span{ font-size: 18px; }

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

/* ---------- home ---------- */
.vd-home{ position: relative; z-index: 1; padding: 14px 0 34px; }

/* hero (wide) */
.vd-hero{
  border-radius: var(--vd-radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--vd-shadow);
  overflow:hidden;
  position: relative;
  min-height: 240px;
}
.vd-hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(244,208,106,.14), transparent 62%),
    radial-gradient(900px 520px at 85% 20%, rgba(60,255,143,.08), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  opacity: .75;
}
.vd-hero__shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.55) 100%);
}
.vd-hero__inner{
  position: relative;
  padding: 20px 18px;
  min-height: 260px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items:center;
}
.vd-hero__kicker{
  font-family: var(--vd-head);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(242,244,255,.78);
  margin-bottom: 10px;
}
.vd-hero__title{
  margin:0 0 12px;
  font-family: var(--vd-head);
  text-transform: uppercase;
  font-size: clamp(28px, 3.0vw, 52px);
  line-height: 1.02;
}
.vd-hero__title b{ color: rgba(244,208,106,.95); }
.vd-hero__text{
  margin:0 0 14px;
  color: rgba(242,244,255,.78);
  line-height: 1.7;
  max-width: 62ch;
}
.vd-hero__cta{ display:flex; gap: 10px; flex-wrap: wrap; align-items:center; }
.vd-pill{
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(242,244,255,.80);
  font-weight: 900;
  font-size: 12px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}

.vd-hero__right{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}
.vd-hero__chipbar{
  width: min(520px, 100%);
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.vd-chip{
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  color: rgba(242,244,255,.86);
  font-weight: 950;
  font-size: 12px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}
.vd-chip:hover{ border-color: rgba(60,255,143,.18); }

@media (max-width: 980px){
  .vd-hero__inner{ grid-template-columns: 1fr; }
  .vd-hero__right{ justify-content:flex-start; }
}

/* rows area */
.vd-rows{
  margin-top: 14px;
}

/* row heading */
.vd-rowHead{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.vd-rowHead__title{
  margin:0;
  font-family: var(--vd-head);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 13px;
}
.vd-rowHead__right{
  display:flex;
  align-items:center;
  gap: 10px;
}
.vd-rowHead__link{
  color: rgba(242,244,255,.72);
  font-weight: 900;
  font-size: 12px;
  text-decoration:none;
}
.vd-rowHead__link:hover{ text-decoration: underline; text-underline-offset: 3px; }
.vd-arrow{
  width: 38px; height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(242,244,255,.90);
  cursor:pointer;
  display:grid;
  place-items:center;
}

/* games track */
.vd-slider{
  margin-top: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--vd-shadow-sm);
  padding: 12px;
}
.vd-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(244,208,106,.30) transparent;
}
.vd-track::-webkit-scrollbar{ height: 7px; }
.vd-track::-webkit-scrollbar-thumb{ background: rgba(244,208,106,.18); border-radius: 999px; }
.vd-track::-webkit-scrollbar-track{ background: transparent; }

/* slot card */
.vd-card{
  min-width: 240px;
  max-width: 240px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.42);
  position: relative;
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
}
.vd-card:hover{
  transform: translateY(-4px);
  border-color: rgba(244,208,106,.20);
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
  filter: saturate(1.06);
}
.vd-card__media{
  display:block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(244,208,106,.10), rgba(255,255,255,.03));
  position: relative;
}
.vd-card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .26s ease, filter .26s ease;
}
.vd-card:hover .vd-card__media img{
  transform: scale(1.08);
  filter: saturate(1.10) contrast(1.05);
}

/* hover play overlay */
.vd-ov{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.46));
  opacity: 0;
  transition: opacity .2s ease;
}
.vd-card:hover .vd-ov{ opacity: 1; }

.vd-play{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 40px;
  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,.18);
  background: linear-gradient(180deg, var(--vd-green) 0%, var(--vd-green2) 100%);
  color: #06140b;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.vd-card:hover .vd-play{ transform: translateY(0); opacity: 1; }

.vd-card__meta{
  padding: 10px 12px 12px;
}
.vd-card__title{
  margin:0;
  font-weight: 950;
  font-size: 13px;
}
.vd-card__sub{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(242,244,255,.62);
}

/* SEO block */
.vd-seo{ margin-top: 16px; }
.vd-seo__box{
  border-radius: var(--vd-radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--vd-shadow-sm);
  padding: 16px;
}
.vd-seo__box :where(h1,h2){ margin: 6px 0 10px; font-size: 22px; }
.vd-seo__box :where(h3){ margin: 16px 0 8px; font-size: 16px; }
.vd-seo__box :where(p){ margin: 0 0 12px; color: rgba(242,244,255,.78); line-height: 1.75; }
.vd-seo__box :where(ul,ol){ margin: 0 0 12px 18px; color: rgba(242,244,255,.78); line-height: 1.75; }
.vd-seo__box :where(a){ color: rgba(244,208,106,.92); text-decoration: underline; text-underline-offset: 2px; }

/* footer */
.vd-footer{
  margin-top: 18px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
}
.vd-footer__row{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.vd-footer__brand{
  font-family: var(--vd-head);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 950;
}
.vd-footer__muted{
  margin-top: 8px;
  color: rgba(242,244,255,.60);
  font-size: 12px;
  line-height: 1.65;
  max-width: 54ch;
}
.vd-footer__links{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vd-footer__link{
  display:inline-flex;
  align-items:center;
  height: 36px;
  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(242,244,255,.78);
}
.vd-footer__link:hover{ border-color: rgba(244,208,106,.22); color: rgba(242,244,255,.92); }

/* lite page + breadcrumbs */
.vd-lite{ padding: 14px 0 34px; position: relative; z-index:1; }
.vd-bc{ font-size: 12px; color: rgba(242,244,255,.66); }
.vd-bc a{ color: rgba(244,208,106,.92); text-decoration:none; }
.vd-bc a:hover{ text-decoration: underline; text-underline-offset: 3px; }

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
}