*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body,
h1, h2, h3, h4,
p, ul, ol, figure, dl, dd { margin: 0; }

ul, ol { padding: 0; list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

:root {
  --vz-bg: #ffffff;
  --vz-surface: #faf5f8;
  --vz-text: #1b141a;
  --vz-muted: #6d6470;
  --vz-accent: #a82a86;
  --vz-accent-deep: #7d1e63;
  --vz-border: #e9dbe4;
  --vz-font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --vz-container: 1080px;
  --vz-radius: 10px;
  --vz-gap: 16px;
}

body {
  background: var(--vz-bg);
  color: var(--vz-text);
  font-family: var(--vz-font);
  font-size: 17px;
  line-height: 1.62;
}

a {
  color: var(--vz-accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover { color: var(--vz-accent); }

h1, h2, h3 {
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.15rem; }

p + p,
p + ul,
p + ol,
ul + p,
ol + p,
p + figure,
figure + p,
p + table { margin-top: 14px; }

li + li { margin-top: 8px; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

th, td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--vz-border);
  vertical-align: top;
}

th {
  font-weight: 600;
  white-space: nowrap;
}

.vz-shell {
  width: 100%;
  max-width: var(--vz-container);
  margin: 0 auto;
  padding: 0 18px;
}

.vz-head {
  border-bottom: 1px solid var(--vz-border);
  background: var(--vz-bg);
}

.vz-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 12px;
}

.vz-head__logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vz-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.vz-head__logo span { color: var(--vz-accent); }

.vz-head__toggle {
  border: 1px solid var(--vz-border);
  background: var(--vz-bg);
  color: var(--vz-text);
  border-radius: 8px;
  padding: 7px 11px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.vz-nav { display: none; }

.vz-nav.is-open {
  display: block;
  padding-bottom: 14px;
}

.vz-nav__list li + li { margin-top: 0; }

.vz-nav__list a {
  display: block;
  padding: 9px 0;
  color: var(--vz-text);
  text-decoration: none;
  border-bottom: 1px solid var(--vz-border);
  font-size: 0.98rem;
}

.vz-hero {
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--vz-border);
}

.vz-hero__kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--vz-accent);
  font-weight: 600;
}

.vz-hero h1 { margin: 12px 0 14px; }

.vz-hero__lead {
  color: var(--vz-muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.vz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.vz-btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: var(--vz-radius);
  background: var(--vz-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--vz-accent);
}

.vz-btn:hover {
  background: var(--vz-accent-deep);
  color: #fff;
}

.vz-btn--ghost {
  background: transparent;
  color: var(--vz-accent-deep);
  border-color: var(--vz-border);
}

.vz-btn--ghost:hover {
  background: var(--vz-surface);
  color: var(--vz-accent-deep);
}

.vz-section { padding: 34px 0; }

.vz-section--tint {
  background: var(--vz-surface);
  border-top: 1px solid var(--vz-border);
  border-bottom: 1px solid var(--vz-border);
}

.vz-section__head { margin-bottom: 20px; }

.vz-section__head p {
  color: var(--vz-muted);
  margin-top: 8px;
  max-width: 68ch;
}

.vz-checks {
  display: grid;
  gap: var(--vz-gap);
}

.vz-checks__item {
  background: var(--vz-bg);
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
  padding: 16px 18px;
}

.vz-checks__item h3 { margin-bottom: 6px; }

.vz-checks__item p {
  color: var(--vz-muted);
  font-size: 0.94rem;
}

.vz-featured {
  display: grid;
  gap: 20px;
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
  padding: 18px;
}

.vz-featured img {
  border-radius: 8px;
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  object-position: top center;
}

.vz-featured__meta {
  color: var(--vz-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.vz-featured h3 {
  font-size: 1.35rem;
  margin: 10px 0 10px;
}

.vz-featured h3 a {
  color: var(--vz-text);
  text-decoration: none;
}

.vz-featured h3 a:hover { color: var(--vz-accent); }

.vz-featured p { color: var(--vz-muted); }

.vz-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.vz-filter__btn {
  border: 1px solid var(--vz-border);
  background: var(--vz-bg);
  color: var(--vz-muted);
  border-radius: 999px;
  padding: 7px 14px;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.vz-filter__btn.is-active {
  border-color: var(--vz-accent);
  color: var(--vz-accent-deep);
  font-weight: 600;
}

.vz-list { display: grid; gap: 14px; }

.vz-list__item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
  align-items: start;
}

.vz-list__item.is-hidden { display: none; }

.vz-list__thumb {
  border-radius: 8px;
  width: 84px;
  height: 84px;
  object-fit: cover;
}

.vz-list__cat {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--vz-accent);
  font-weight: 600;
}

.vz-list__item h3 { margin: 6px 0 6px; }

.vz-list__item h3 a {
  color: var(--vz-text);
  text-decoration: none;
}

.vz-list__item h3 a:hover { color: var(--vz-accent); }

.vz-list__item p {
  color: var(--vz-muted);
  font-size: 0.93rem;
}

.vz-list__date {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--vz-muted);
}

.vz-scroll {
  overflow-x: auto;
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
}

.vz-scroll table { min-width: 620px; }

.vz-scroll th {
  background: var(--vz-surface);
  font-size: 0.85rem;
}

.vz-game {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.vz-game img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.vz-note {
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--vz-muted);
}

.vz-faq__item {
  border-bottom: 1px solid var(--vz-border);
  padding: 6px 0;
}

.vz-faq__item summary {
  cursor: pointer;
  padding: 12px 0;
  font-weight: 600;
  list-style: none;
}

.vz-faq__item summary::-webkit-details-marker { display: none; }

.vz-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--vz-accent);
  font-weight: 700;
}

.vz-faq__item[open] summary::after { content: "\2212"; }

.vz-faq__item p {
  padding-bottom: 14px;
  color: var(--vz-muted);
  font-size: 0.95rem;
}

.vz-crumbs {
  padding: 16px 0 0;
  font-size: 0.85rem;
  color: var(--vz-muted);
}

.vz-crumbs a { color: var(--vz-muted); }

.vz-article { padding: 10px 0 36px; }

.vz-article h1 { margin: 14px 0 12px; }

.vz-article__meta {
  color: var(--vz-muted);
  font-size: 0.86rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--vz-border);
}

.vz-article__lead {
  font-size: 1.08rem;
  margin: 18px 0;
}

.vz-article h2 {
  margin: 30px 0 12px;
  padding-top: 6px;
}

.vz-article h3 { margin: 22px 0 10px; }

.vz-article ul li,
.vz-article ol li { padding-left: 18px; position: relative; }

.vz-article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vz-accent);
}

.vz-article ol { counter-reset: vz; }

.vz-article ol li { padding-left: 26px; }

.vz-article ol li::before {
  counter-increment: vz;
  content: counter(vz) ".";
  position: absolute;
  left: 0;
  color: var(--vz-accent);
  font-weight: 700;
}

.vz-shots {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.vz-shots figure {
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
  padding: 10px;
}

.vz-shots img {
  border-radius: 6px;
  width: 100%;
  height: auto;
}

.vz-shots figcaption {
  font-size: 0.8rem;
  color: var(--vz-muted);
  margin-top: 8px;
}

.vz-callout {
  border-left: 3px solid var(--vz-accent);
  background: var(--vz-surface);
  padding: 14px 16px;
  border-radius: 0 var(--vz-radius) var(--vz-radius) 0;
  margin: 22px 0;
  font-size: 0.96rem;
}

.vz-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 6px;
}

.vz-related {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--vz-border);
}

.vz-related ul { margin-top: 12px; }

.vz-legal { padding: 10px 0 40px; }

.vz-legal h1 { margin: 14px 0 16px; }

.vz-legal h2 {
  margin: 26px 0 10px;
  font-size: 1.2rem;
}

.vz-legal p + h2 { margin-top: 26px; }

.vz-foot {
  border-top: 1px solid var(--vz-border);
  background: var(--vz-surface);
  padding: 30px 0 24px;
  font-size: 0.92rem;
}

.vz-foot__cols {
  display: grid;
  gap: 22px;
}

.vz-foot h2 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--vz-muted);
  margin-bottom: 10px;
}

.vz-foot a {
  color: var(--vz-text);
  text-decoration: none;
}

.vz-foot a:hover { color: var(--vz-accent); }

.vz-foot li + li { margin-top: 7px; }

.vz-foot__bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--vz-border);
  color: var(--vz-muted);
  font-size: 0.86rem;
}

.vz-foot__bottom p + p { margin-top: 8px; }

.vz-cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--vz-bg);
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
  padding: 16px;
  box-shadow: 0 2px 10px rgba(27, 20, 26, .12);
  font-size: 0.9rem;
  z-index: 20;
}

.vz-cookie.is-hidden { display: none; }

.vz-cookie p { color: var(--vz-muted); }

.vz-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.vz-cookie__btn {
  border: 1px solid var(--vz-border);
  background: var(--vz-bg);
  color: var(--vz-text);
  border-radius: 8px;
  padding: 8px 14px;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.vz-cookie__btn--main {
  background: var(--vz-accent);
  border-color: var(--vz-accent);
  color: #fff;
  font-weight: 600;
}

.vz-404 {
  padding: 60px 0;
  text-align: left;
}

.vz-404 p {
  color: var(--vz-muted);
  margin: 12px 0 20px;
  max-width: 56ch;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (min-width: 700px) {
  body { font-size: 18px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  .vz-hero { padding: 54px 0 46px; }
  .vz-section { padding: 48px 0; }
  .vz-checks { grid-template-columns: repeat(3, 1fr); }
  .vz-featured { grid-template-columns: 250px 1fr; align-items: start; }
  .vz-featured img { max-height: 320px; }
  .vz-list__item { grid-template-columns: 110px 1fr; }
  .vz-list__thumb { width: 110px; height: 110px; }
  .vz-shots { grid-template-columns: repeat(3, 1fr); }
  .vz-foot__cols { grid-template-columns: repeat(4, 1fr); }
  .vz-cookie {
    left: auto;
    right: 20px;
    bottom: 20px;
    max-width: 420px;
  }
}

@media (min-width: 940px) {
  .vz-head__toggle { display: none; }
  .vz-head .vz-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
  }
  .vz-head__row { min-height: 66px; }
  .vz-nav {
    display: block;
    padding-bottom: 0;
  }
  .vz-nav__list {
    display: flex;
    gap: 22px;
  }
  .vz-nav__list li + li { margin-top: 0; }

.vz-nav__list a {
    padding: 0;
    border-bottom: 0;
    font-size: 0.95rem;
  }
  .vz-nav__list a:hover { color: var(--vz-accent); }
  .vz-article { padding-bottom: 56px; }
  .vz-article__body { max-width: 74ch; }
}

.vz-404__title {
  margin-top: 34px;
  font-size: 1.2rem;
}

.vz-404__links {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.vz-order { display: grid; gap: 14px; margin: 26px 0 10px; }

.vz-order__row { display: grid; gap: 6px; }

.vz-order label { font-size: 0.88rem; font-weight: 600; }

.vz-order input,
.vz-order select,
.vz-order textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--vz-border);
  border-radius: 10px;
  background: var(--vz-bg);
  color: var(--vz-text);
  font: inherit;
  font-size: 0.95rem;
}

.vz-order input:focus,
.vz-order select:focus,
.vz-order textarea:focus { outline: 2px solid var(--vz-accent); outline-offset: 1px; }

.vz-order textarea { resize: vertical; min-height: 96px; }

.vz-order button[disabled] { opacity: .6; cursor: default; }

.vz-order__status { font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }

.vz-order__note { font-size: 0.85rem; color: var(--vz-muted); }

.vz-buy {
  border: 1px solid var(--vz-border);
  border-radius: 10px;
  padding: 20px;
  background: var(--vz-surface);
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.vz-buy__price { font-size: 1.9rem; font-weight: 700; color: var(--vz-accent-deep); letter-spacing: -0.5px; }

.vz-buy__price span { font-size: 0.85rem; font-weight: 400; color: var(--vz-muted); letter-spacing: 0; }

.vz-buy dl { display: grid; gap: 10px; margin: 0; }

.vz-buy dt { font-size: 0.75rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--vz-muted); }

.vz-buy dd { margin: 2px 0 0; font-size: 0.94rem; }

.vz-inside { display: grid; gap: 14px; margin: 22px 0; }

.vz-inside__item { border-top: 1px solid var(--vz-border); padding-top: 14px; }

.vz-inside__item h3 { margin-bottom: 6px; }

.vz-inside__item p { color: var(--vz-muted); font-size: 0.94rem; }

.vz-promo {
  border: 1px solid var(--vz-border);
  border-radius: 10px;
  padding: 22px;
  background: var(--vz-surface);
  display: grid;
  gap: 12px;
}

.vz-promo h3 { font-size: 1.2rem; }

.vz-promo p { color: var(--vz-muted); }

.vz-promo__row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.vz-promo__tag { font-weight: 700; color: var(--vz-accent-deep); }

@media (min-width: 700px) {
  .vz-buy { grid-template-columns: 200px 1fr; align-items: start; }
  .vz-inside { grid-template-columns: repeat(2, 1fr); }
}
