/* ============================================================
   VAVADA-style brand layout — custom styles
   Опирается на оригинальный сайт vavada.com (header/footer/cards)
   Шрифт: Manrope (≈ Muller). Фон: #212132. Акцент: #fe284a.
   ============================================================ */

:root {
  --v-bg: #212132;
  --v-bg-2: #1a1b2c;
  --v-surface: #2a2c3d;
  --v-surface-2: #2f3144;
  --v-line: rgba(255, 255, 255, 0.08);
  --v-text: #e8eaed;
  --v-muted: #9ea3b9;
  --v-muted-2: #646a87;
  --v-red: #fe284a;
  --v-red-shadow: #871628;
  --v-purple: #4d5a85;
  --v-purple-shadow: #2c3552;
}

* { box-sizing: border-box; }

html, body { background: var(--v-bg); color: var(--v-text); }

body {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }

/* =========================
   HEADER
   ========================= */

.v-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--v-bg);
  border-bottom: 1px solid var(--v-line);
}
.v-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 56px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (min-width: 640px) {
  .v-header__inner { padding: 0 20px; }
}

.v-logo { display: inline-flex; align-items: center; }
.v-logo img { height: 28px; width: auto; }
@media (min-width: 640px) { .v-logo img { height: 32px; } }

.v-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v-link-enter {
  display: none;
  align-items: center;
  height: 20px;
  border-bottom: 1px solid #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.v-link-enter:hover { opacity: 0.92; border-color: rgba(255,255,255,0.7); }
@media (min-width: 668px) { .v-link-enter { display: inline-flex; } }

/* Кнопка регистрации — match оригинала: #fe284a, 50px, 3D-shadow */
.v-btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  border-radius: 50px;
  background: var(--v-red);
  box-shadow: 0 3px 0 0 var(--v-red-shadow), 0 4px 4px 0 #000;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: box-shadow 0.12s ease, transform 0.12s ease;
}
.v-btn-register:hover {
  box-shadow: 0 3px 0 0 var(--v-red-shadow), 0 4px 4px 0 #000, inset 0 15px 15px -3px rgba(255,255,255,0.4);
}
.v-btn-register:active {
  box-shadow: inset 0 2px 0 0 var(--v-red-shadow), inset 0 0 0 15px rgba(0,0,0,0.2);
  transform: translateY(3px);
}
@media (max-width: 668px) {
  .v-btn-register { height: 36px; padding: 0 14px; font-size: 11px; }
}

.v-btn-help {
  display: none;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(100,106,135,0.55);
  background: transparent;
  cursor: pointer;
}
.v-btn-help svg { width: 16px; height: 16px; }
@media (min-width: 1024px) { .v-btn-help { display: inline-flex; } }

/* =========================
   MAIN
   ========================= */

.v-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 12px 20px;
}
@media (min-width: 640px) { .v-main { padding: 14px 20px 28px; } }

/* =========================
   CAROUSEL
   ========================= */

.v-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -12px;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .v-carousel { margin-top: -14px; margin-bottom: 12px; }
}
.v-carousel__viewport {
  width: 100%;
  aspect-ratio: 4256 / 556;
  overflow: hidden;
  background: var(--v-surface);
}
.v-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}
.v-carousel__slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.v-carousel__slide picture { position: absolute; inset: 0; }
.v-carousel__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.v-carousel__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 60px 16px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.55);
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
@media (min-width: 668px) {
  .v-carousel__caption { font-size: 16px; padding-top: 70px; }
}
.v-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 4px;
}
.v-carousel__dots .v-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.v-carousel__dots .v-dot[aria-current="true"] {
  width: 22px;
  background: rgba(255,255,255,0.95);
}

/* =========================
   CATEGORIES
   ========================= */

.v-cats { margin-top: 14px; }
.v-cats__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 480px)  { .v-cats__list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 768px)  { .v-cats__list { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1100px) { .v-cats__list { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px; } }

.v-cat {
  --cat-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 70px;
  padding: 14px 18px;
  border-radius: 10px;
  overflow: hidden;
  color: var(--cat-color);
  background-color: #1f2238;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 9px
  );
  border: 1px solid transparent;
  transition: transform 0.15s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.v-cat:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--cat-color) 50%, transparent);
  background-color: #232746;
}

.v-cat--slots       { --cat-color: #4fc3cc; }
.v-cat--live        { --cat-color: #e96b47; }
.v-cat--sports      { --cat-color: #8b7ae0; }
.v-cat--crash       { --cat-color: #79c843; }
.v-cat--tournaments { --cat-color: #c9b934; }

.v-cat__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 38px;
  color: var(--cat-color);
}
.v-cat__icon svg { width: 100%; height: 100%; display: block; }

.v-cat__label {
  color: var(--cat-color);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 359px) { .v-cat__label { font-size: 15px; } }

/* =========================
   TOOLBAR (provider + sort + search)
   ========================= */

.v-toolbar {
  margin-top: 14px;
  padding: 8px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: 12px;
}

.v-toolbar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--v-bg-2);
  color: #fff;
  border: 1px solid var(--v-line);
  border-radius: 8px;
  padding: 8px 28px 8px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%239ea3b9' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  max-width: 220px;
}
.v-select:focus { outline: none; border-color: var(--v-red); }

.v-sort {
  list-style: none;
  margin: 0;
  padding: 0 0 0 8px;
  border-left: 1px solid var(--v-line);
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.v-sort a {
  display: inline-flex;
  width: 32px; height: 36px;
  align-items: flex-end;
  justify-content: center;
  opacity: 0.95;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.v-sort a:hover,
.v-sort a:focus-visible { opacity: 1; transform: translateY(-1px); }
.v-sort a.is-active {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
}
.v-sort a:focus-visible {
  outline: 2px solid var(--v-red);
  outline-offset: 2px;
  border-radius: 6px;
}
.v-sort svg { width: 28px; height: auto; }

.v-search {
  position: relative;
  flex: 1 1 220px;
  max-width: 280px;
}
.v-search__icon {
  position: absolute; left: 10px; top: 50%;
  width: 16px; height: 16px;
  color: rgba(255,255,255,0.4);
  transform: translateY(-50%);
  pointer-events: none;
}
.v-search__input {
  width: 100%;
  padding: 9px 12px 9px 32px;
  background: var(--v-bg-2);
  color: #fff;
  border: 1px solid var(--v-line);
  border-radius: 8px;
  font: inherit;
  font-size: 12px;
}
.v-search__input::placeholder { color: rgba(255,255,255,0.4); }
.v-search__input:focus { outline: none; border-color: var(--v-red); }

/* =========================
   GAME GRID
   ========================= */

.v-games { margin-top: 16px; }

.v-games__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
}
@media (min-width: 668px) { .v-games__list { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; } }
@media (min-width: 1024px) { .v-games__list { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; } }
@media (min-width: 1280px) { .v-games__list { grid-template-columns: repeat(6, minmax(0,1fr)); gap: 12px; } }

.v-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--v-surface);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.v-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}

.v-card__window {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.v-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.v-card__hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(33, 33, 50, 0.78);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}
.v-card:hover .v-card__hover,
.v-card:focus-visible .v-card__hover { opacity: 1; }

.v-card__play,
.v-card__demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 30px;
  padding: 0 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.v-card__play {
  background: #4dd433;
  color: #102b09;
  box-shadow: 0 3px 0 0 #2f8a1f, 0 4px 4px 0 #000;
}
.v-card__demo {
  background: transparent;
  color: #fff;
  border-bottom: 1px solid #fff;
  height: 18px;
  border-radius: 0;
}

.v-card__title {
  padding: 8px 8px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--v-text);
  line-height: 1.25;
  text-align: center;
  background: var(--v-surface);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 668px) { .v-card__title { font-size: 12px; padding: 10px 8px 12px; } }

.v-games__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.v-show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 30px;
  border-radius: 50px;
  background: var(--v-purple);
  box-shadow: 0 3px 0 0 var(--v-purple-shadow), 0 4px 4px 0 #000;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: box-shadow 0.12s ease, transform 0.12s ease;
}
.v-show-more:hover {
  box-shadow: 0 3px 0 0 var(--v-purple-shadow), 0 4px 4px 0 #000, inset 0 15px 15px -3px rgba(255,255,255,0.4);
}
.v-show-more:active {
  box-shadow: inset 0 2px 0 0 var(--v-purple-shadow), inset 0 0 0 15px rgba(0,0,0,0.2);
  transform: translateY(3px);
}

/* =========================
   FOOTER
   ========================= */

.v-footer {
  margin-top: 32px;
  padding: 28px 12px 18px;
  background: var(--v-bg-2);
  border-top: 1px solid var(--v-line);
}
@media (min-width: 640px) { .v-footer { padding: 36px 24px 22px; } }

.v-footer__main {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
@media (min-width: 1024px) {
  .v-footer__main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.v-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  font-size: 12px;
  color: var(--v-muted);
}
.v-footer__links a:hover { color: #fff; }

.v-footer__apps {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v-app {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--v-line);
  background: rgba(0,0,0,0.25);
  color: #fff;
  transition: border-color 0.15s ease;
}
.v-app:hover { border-color: rgba(255,255,255,0.25); }
.v-app svg { width: 22px; height: 22px; }
.v-app__txt { display: flex; flex-direction: column; line-height: 1.15; font-size: 11px; }
.v-app__txt > span:first-child { color: rgba(255,255,255,0.6); }
.v-app__os { font-weight: 700; }
.v-app--android { border-color: rgba(76,212,51,0.35); background: rgba(76,212,51,0.08); }
.v-app--android:hover { border-color: rgba(76,212,51,0.55); }
.v-app--ios { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04); }
.v-app--ios:hover { border-color: rgba(255,255,255,0.35); }

.v-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.v-footer__social a {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: opacity 0.15s ease;
}
.v-footer__social a:hover { opacity: 0.85; }
.v-footer__social img { width: 32px; height: 32px; }

.v-footer__second {
  max-width: 1440px;
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--v-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 1024px) {
  .v-footer__second {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
}

.v-footer__legal {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 auto;
}
.v-footer__cert img { width: 40px; height: 40px; }
.v-footer__legal-text { display: flex; flex-direction: column; gap: 8px; }
.v-footer__license,
.v-footer__warning {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--v-muted);
}
.v-footer__warning { color: rgba(255,255,255,0.55); }

/* Лангсвитчер с флагом-картинкой */
.v-footer__lang { position: relative; flex-shrink: 0; }
.v-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--v-line);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  min-width: 180px;
}
.v-lang-btn:hover { border-color: rgba(255,255,255,0.2); }
.v-lang-flag { width: 22px; height: 16px; border-radius: 2px; object-fit: cover; }
.v-lang-chev { width: 10px; height: 10px; margin-left: auto; color: var(--v-muted); }

.v-lang-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 6px);
  z-index: 60;
  list-style: none;
  margin: 0; padding: 6px;
  min-width: 220px;
  max-height: 320px;
  overflow-y: auto;
  background: #1a1b2c;
  border: 1px solid var(--v-line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.v-lang-menu[hidden] { display: none; }
.v-lang-menu li { margin: 0; }
.v-lang-menu a,
.v-lang-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--v-text);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
}
.v-lang-menu a:hover,
.v-lang-menu button:hover { background: rgba(255,255,255,0.06); }
.v-lang-menu [aria-current="true"] { background: rgba(255,255,255,0.08); font-weight: 700; }
.v-lang-menu img { width: 22px; height: 16px; border-radius: 2px; object-fit: cover; }

.v-footer__brand-note {
  max-width: 1440px;
  margin: 18px auto 0;
  padding-top: 12px;
  border-top: 1px solid var(--v-line);
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}

/* =========================
   ARTICLE / CONTENT PAGES
   (bonus-code, no-deposit, etc.)
   ========================= */

.v-article {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 14px 32px;
}
@media (min-width: 640px) { .v-article { padding: 24px 24px 48px; } }

.v-breadcrumbs {
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--v-muted);
}
.v-breadcrumbs ol {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.v-breadcrumbs li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--v-muted-2);
}
.v-breadcrumbs a { color: var(--v-muted); }
.v-breadcrumbs a:hover { color: #fff; }
.v-breadcrumbs [aria-current="page"] { color: #fff; }

.v-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v-red);
}

.v-h1 {
  margin: 0 0 14px;
  font-size: clamp(26px, 4.6vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}

.v-h2 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.v-lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--v-text);
}
.v-lead b { color: #fff; }

.v-promo-hero {
  display: grid;
  gap: 20px;
  padding: 22px;
  margin: 0 0 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(254,40,74,0.18), transparent 55%),
    linear-gradient(180deg, #2a2c3d 0%, #1f2238 100%);
  border: 1px solid var(--v-line);
}
@media (min-width: 720px) {
  .v-promo-hero {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 28px 32px;
  }
}

.v-promo-hero__text > *:last-child { margin-bottom: 0; }

.v-code-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 220px;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fe284a 0%, #c91536 100%);
  box-shadow: 0 6px 0 0 #871628, 0 14px 28px rgba(254,40,74,0.25);
  color: #fff;
  text-align: center;
}
.v-code-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}
.v-code-card__code {
  font-size: clamp(34px, 6vw, 46px);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
}
.v-code-card__hint {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.95;
}

.v-code-card--soft {
  background: linear-gradient(180deg, #2f3144 0%, #20222e 100%);
  box-shadow: 0 6px 0 0 #16182a, 0 14px 28px rgba(0,0,0,0.35);
  border: 1px solid var(--v-line);
}
.v-code-card__code--small {
  letter-spacing: 0.06em;
  font-size: clamp(28px, 5vw, 38px);
}

/* Mirror status card */
.v-status-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1f2238 0%, #181a2c 100%);
  border: 1px solid rgba(121, 200, 67, 0.35);
  box-shadow: 0 6px 0 0 #14162a, 0 14px 28px rgba(0,0,0,0.3);
  color: #fff;
}
.v-status-card__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #79c843;
  box-shadow: 0 0 0 4px rgba(121,200,67,0.18), 0 0 14px rgba(121,200,67,0.6);
  animation: v-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes v-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(121,200,67,0.18), 0 0 14px rgba(121,200,67,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(121,200,67,0.10), 0 0 18px rgba(121,200,67,0.8); }
}
.v-status-card__text { display: flex; flex-direction: column; gap: 2px; }
.v-status-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v-muted);
}
.v-status-card__value { font-size: 16px; font-weight: 800; color: #fff; }
.v-status-card__hint { font-size: 12px; color: var(--v-muted); }

/* Alert / security warning block */
.v-alert {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(254, 201, 52, 0.3);
  background:
    linear-gradient(180deg, rgba(254,201,52,0.06) 0%, rgba(254,201,52,0.02) 100%),
    rgba(255,255,255,0.025);
  border-left: 3px solid #fec934;
}
.v-alert > p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--v-text);
}
.v-alert ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
}
.v-alert li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--v-text);
}
.v-alert li::before {
  content: "!";
  position: absolute;
  left: 0; top: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: #fec934;
  color: #1a1b2c;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  line-height: 16px;
}

.v-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--v-red);
  box-shadow: 0 3px 0 0 var(--v-red-shadow), 0 6px 16px rgba(0,0,0,0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.v-btn-primary:hover {
  box-shadow: 0 3px 0 0 var(--v-red-shadow), 0 6px 16px rgba(0,0,0,0.35), inset 0 14px 14px -3px rgba(255,255,255,0.25);
}
.v-btn-primary:active {
  transform: translateY(2px);
  box-shadow: inset 0 2px 0 0 var(--v-red-shadow);
}

.v-section {
  margin: 0 0 28px;
}
.v-section p {
  margin: 0 0 12px;
  color: var(--v-text);
  font-size: 15px;
  line-height: 1.6;
}
.v-section p:last-child { margin-bottom: 0; }

.v-checklist {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 10px;
}
.v-checklist li {
  position: relative;
  padding: 12px 14px 12px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--v-line);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.v-checklist li::before {
  content: "";
  position: absolute;
  left: 12px; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--v-red);
  box-shadow: 0 0 0 3px rgba(254,40,74,0.18);
}
.v-checklist li::after {
  content: "";
  position: absolute;
  left: 17px; top: 19px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.v-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.v-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--v-line);
  background: rgba(255,255,255,0.025);
}
.v-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--v-red);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 3px 0 0 var(--v-red-shadow);
}
.v-step__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.v-steps p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--v-text); }

.v-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--v-line);
  border-radius: 12px;
  overflow: hidden;
  font-size: 14px;
}
.v-info-table th,
.v-info-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--v-line);
}
.v-info-table tr:last-child th,
.v-info-table tr:last-child td { border-bottom: 0; }
.v-info-table th {
  width: 42%;
  background: rgba(255,255,255,0.03);
  color: var(--v-muted);
  font-weight: 600;
}
.v-info-table td { color: #fff; font-weight: 600; }

.v-info-table-wrap {
  margin: 4px 0 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.v-info-table--compare {
  min-width: 560px;
  table-layout: fixed;
}
.v-info-table--compare thead th {
  background: linear-gradient(180deg, rgba(254, 40, 74, 0.16) 0%, rgba(254, 40, 74, 0.05) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 16px;
  width: auto;
  border-bottom: 2px solid rgba(254, 40, 74, 0.32);
}
.v-info-table--compare tbody td {
  padding: 13px 16px;
  font-size: 14px;
}
.v-info-table--compare tbody td:first-child {
  color: var(--v-muted);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.025);
  width: 32%;
}
.v-info-table--compare tbody td:nth-child(2) { color: #ffd9e0; }
.v-info-table--compare tbody td:nth-child(3) { color: #d4d6e2; }

.v-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--v-red);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 13px;
}

.v-faq {
  display: grid;
  gap: 10px;
}
.v-faq details {
  border: 1px solid var(--v-line);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  padding: 0 16px;
  overflow: hidden;
}
.v-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 24px 14px 0;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.v-faq summary::-webkit-details-marker { display: none; }
.v-faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--v-red);
}
.v-faq details[open] summary::after { content: "−"; }
.v-faq details p {
  margin: 0 0 14px;
  color: var(--v-text);
  font-size: 14px;
  line-height: 1.55;
}

.v-verdict {
  display: grid;
  gap: 14px;
}
@media (min-width: 720px) {
  .v-verdict { grid-template-columns: 1fr 1fr; }
}
.v-verdict__col {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--v-line);
  background: rgba(255,255,255,0.025);
}
.v-verdict__col--pro { border-left: 3px solid #79c843; }
.v-verdict__col--con { border-left: 3px solid #c9b934; }
.v-verdict__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.v-verdict__col--pro .v-verdict__title { color: #79c843; }
.v-verdict__col--con .v-verdict__title { color: #c9b934; }
.v-verdict ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
}
.v-verdict li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--v-text);
}
.v-verdict li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.6;
}
.v-verdict__col--pro li { color: var(--v-text); }
.v-verdict__col--pro li::before { background: #79c843; opacity: 1; }
.v-verdict__col--con li::before { background: #c9b934; opacity: 1; }

.v-disclaimer {
  margin: 26px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--v-red);
  background: rgba(254,40,74,0.06);
  font-size: 12px;
  color: var(--v-muted);
  border-radius: 0 8px 8px 0;
}

.v-cta-row {
  margin: 22px 0 0;
  text-align: center;
}

/* Footer internal nav (site links) */
.v-footer__nav {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  font-size: 12px;
}
.v-footer__nav a { color: #fff; font-weight: 700; }
.v-footer__nav a:hover { color: var(--v-red); }
.v-footer__nav-title {
  width: 100%;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v-muted);
  margin-bottom: 4px;
}

/* ===== Home SEO review block ============================================== */
.v-seo {
  max-width: 920px;
  margin: 72px auto 32px;
  padding: 40px 44px 36px;
  color: #d4d6e2;
  font-size: 16px;
  line-height: 1.72;
  background:
    radial-gradient(120% 60% at 0% 0%, rgba(254, 40, 74, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #262638 0%, #1d1d2c 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.v-seo__head {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.v-seo__eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v-red);
  background: rgba(254, 40, 74, 0.10);
  border: 1px solid rgba(254, 40, 74, 0.30);
  border-radius: 999px;
}
.v-seo__h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -0.015em;
}
.v-seo__lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #b6b9cb;
  max-width: 70ch;
}

.v-seo__section { margin-top: 48px; }
.v-seo__section + .v-seo__section { margin-top: 56px; }

.v-seo__h2 {
  position: relative;
  margin: 0 0 18px;
  padding-left: 16px;
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.01em;
}
.v-seo__h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--v-red) 0%, #ff7a36 100%);
  box-shadow: 0 0 12px rgba(254, 40, 74, 0.5);
}

.v-seo p {
  margin: 0 0 14px;
  color: #d4d6e2;
}
.v-seo p:last-child { margin-bottom: 0; }
.v-seo a {
  color: #ff8d9f;
  text-decoration: none;
  border-bottom: 1px solid rgba(254, 40, 74, 0.55);
  font-weight: 600;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.v-seo a:hover { color: var(--v-red); border-bottom-color: var(--v-red); }
.v-seo b, .v-seo strong { color: #fff; font-weight: 700; }
.v-seo i { color: #c9ccdb; }

.v-seo__list {
  list-style: none;
  margin: 14px 0 6px;
  padding: 16px 18px;
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
.v-seo__list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.55;
}
.v-seo__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--v-red);
  box-shadow: 0 0 0 3px rgba(254, 40, 74, 0.18);
}

.v-seo__table-wrap {
  margin: 18px 0 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
}
.v-seo__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.v-seo__table thead th {
  text-align: left;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, rgba(254, 40, 74, 0.18) 0%, rgba(254, 40, 74, 0.08) 100%);
  padding: 14px 18px;
  border-bottom: 2px solid rgba(254, 40, 74, 0.35);
  white-space: nowrap;
}
.v-seo__table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  vertical-align: middle;
  line-height: 1.45;
}
.v-seo__table tbody tr:last-child td { border-bottom: 0; }
.v-seo__table tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.025); }
.v-seo__table tbody tr:hover td { background: rgba(254, 40, 74, 0.06); }
.v-seo__table tbody td:first-child { font-weight: 700; color: #fff; }
.v-seo__table tbody td:not(:first-child) {
  color: #c9ccdb;
  font-weight: 600;
  white-space: nowrap;
}

.v-seo__note {
  margin-top: 10px;
  font-size: 13px;
  color: #9499aa;
  font-style: italic;
  line-height: 1.55;
}

.v-seo .v-verdict { margin-top: 18px; }
.v-seo .v-verdict__col { padding: 18px 22px; }
.v-seo .v-verdict__title { font-size: 14px; margin-bottom: 12px; }
.v-seo .v-verdict li { font-size: 15px; line-height: 1.55; padding-left: 22px; }
.v-seo .v-verdict li::before { width: 9px; height: 9px; top: 9px; }

.v-seo .v-faq { margin-top: 18px; gap: 12px; }
.v-seo .v-faq details { padding: 0 20px; }
.v-seo .v-faq summary {
  font-size: 16px;
  padding: 18px 28px 18px 0;
  letter-spacing: -0.005em;
}
.v-seo .v-faq summary::after { font-size: 22px; width: 26px; height: 26px; }
.v-seo .v-faq details p { font-size: 15px; line-height: 1.65; padding-bottom: 4px; }

.v-seo__disclaimer {
  margin-top: 40px;
  padding: 16px 20px;
  border-left: 4px solid var(--v-red);
  background: rgba(254, 40, 74, 0.07);
  font-size: 13.5px;
  color: #c9ccdb;
  border-radius: 0 10px 10px 0;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .v-seo {
    margin: 48px 12px 24px;
    padding: 28px 20px 24px;
    border-radius: 14px;
    font-size: 15px;
  }
  .v-seo__head { margin-bottom: 28px; padding-bottom: 20px; }
  .v-seo__section { margin-top: 36px; }
  .v-seo__section + .v-seo__section { margin-top: 40px; }
  .v-seo__h2 {
    font-size: 20px;
    padding-left: 12px;
  }
  .v-seo__h2::before { width: 3px; }
  .v-seo__lead { font-size: 15.5px; }
  .v-seo__list { padding: 14px 14px; }
  .v-seo__table { min-width: 480px; font-size: 13.5px; }
  .v-seo__table thead th,
  .v-seo__table tbody td { padding: 12px 14px; }
}
