@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;900&family=Open+Sans:wght@400;600;700&display=swap");

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

:root {
  --bg-main: #1d1f2b;
  --bg-header: #282c38;
  --bg-card: #22253a;
  --bg-card2: #1a1c28;
  --color-login: #262c3b;
  --color-gold: #fab308;
  --color-gold-hover: #e0a007;
  --color-text: #e2e4ee;
  --color-text-muted: #9299b0;
  --color-border: #353849;
  --color-green: #1db954;
  --color-red: #e53e3e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg-main);
  color: var(--color-text);
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-gold-hover);
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}

.vst-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.xp7r2-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}
.btn-login {
  background: var(--color-login);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-login:hover {
  background: #2f364a;
  color: var(--color-text);
  box-shadow: 0 0 0 2px var(--color-border);
}
.btn-reg {
  background: var(--color-gold);
  color: #111;
  font-weight: 700;
}
.btn-reg:hover {
  background: var(--color-gold-hover);
  color: #111;
  box-shadow: 0 4px 18px rgba(250, 179, 8, 0.35);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 14px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}
.btn-outline:hover {
  background: var(--color-gold);
  color: #111;
}

header.vst-header {
  background: var(--bg-header);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.vst-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: 68px;
}
.vst-logo img {
  height: 44px;
  width: auto;
}
.vst-logo {
  display: flex;
  align-items: center;
}

.vst-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
.vst-nav ul li a {
  color: var(--color-text-muted);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition);
}
.vst-nav ul li a:hover {
  background: rgba(250, 179, 8, 0.1);
  color: var(--color-gold);
}

.vst-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vst-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  background: rgba(29, 31, 43, 0.7);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
}
.vst-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 6px var(--color-green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.vst-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}
.vst-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.vst-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.vst-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.vst-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.vst-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 22, 32, 0.97);
  z-index: 800;
  padding: 80px 24px 32px;
  flex-direction: column;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.vst-mobile-nav.is-open {
  transform: translateX(0);
}
.vst-mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vst-mobile-nav ul li a {
  display: block;
  color: var(--color-text);
  padding: 12px 16px;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: background var(--transition);
}
.vst-mobile-nav ul li a:hover {
  background: var(--bg-card);
}
.vst-mobile-nav-btns {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.vst-mobile-nav-btns .btn {
  flex: 1;
  padding: 13px;
}

section.vst-section {
  padding: 60px 0;
}
section.vst-section + section.vst-section {
  padding-top: 0;
}

.vst-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-balance: true;
}
.vst-section-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}
.vst-section-head {
  margin-bottom: 36px;
}

.vst-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-header);
}
.vst-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vst-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.vst-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(29, 31, 43, 0.97) 40%,
    rgba(29, 31, 43, 0.2) 100%
  );
}
.vst-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.vst-hero-label {
  display: inline-block;
  background: rgba(250, 179, 8, 0.15);
  border: 1px solid rgba(250, 179, 8, 0.4);
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.vst-hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.vst-hero h1 span {
  color: var(--color-gold);
}
.vst-hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.vst-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.vst-hero-bonus {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.vst-hero-bonus strong {
  color: var(--color-gold);
  font-size: 1rem;
}

.vst-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vst-pros-col,
.vst-cons-col {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.vst-pros-col {
  border-top: 3px solid var(--color-green);
}
.vst-cons-col {
  border-top: 3px solid var(--color-red);
}
.vst-pc-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vst-pc-title .ico {
  font-size: 1.3rem;
}
.vst-pc-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.94rem;
  align-items: start;
}
.vst-pc-list li:last-child {
  border-bottom: none;
}
.vst-pc-ico {
  font-size: 1rem;
  margin-top: 2px;
}

.vst-winners {
  background: var(--bg-card2);
}
.vst-winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.vst-winner-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.vst-winner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}
.vst-winner-rank {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  text-align: center;
}
.vst-winner-card.top3 .vst-winner-rank {
  color: var(--color-gold);
}
.vst-winner-nick {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.vst-winner-game {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.vst-winner-sum {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-gold);
  text-align: right;
  white-space: nowrap;
}

.vst-app-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: start;
}
.vst-app-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.vst-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 300px;
}
table.vst-table th,
table.vst-table td {
  text-align: left;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  font-size: 0.93rem;
}
table.vst-table th {
  background: var(--bg-card);
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
table.vst-table td {
  background: var(--bg-card2);
  color: var(--color-text);
}
table.vst-table tr:hover td {
  background: rgba(250, 179, 8, 0.04);
}

.vst-app-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vst-app-desc {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.vst-app-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vst-dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
  text-decoration: none;
  color: var(--color-text);
}
.vst-dl-btn:hover {
  background: var(--bg-header);
  border-color: var(--color-gold);
  color: var(--color-text);
  transform: translateX(4px);
}
.vst-dl-btn-ico {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.vst-dl-btn-text small {
  display: block;
  font-size: 0.73rem;
  color: var(--color-text-muted);
  line-height: 1;
}
.vst-dl-btn-text strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.vst-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--color-border);
}
.vst-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.vst-demo-wrap {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/9;
  background: #0d0f1a;
  border: 1px solid var(--color-border);
  position: relative;
}
.vst-demo-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.vst-demo-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  border: 1px solid rgba(250, 179, 8, 0.3);
  pointer-events: none;
}

.vst-review-section {
  background: var(--bg-card2);
}
.vst-author-box {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 32px;
  border: 1px solid var(--color-border);
}
.vst-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fab308, #e07b00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: #111;
  flex-shrink: 0;
}
.vst-author-name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.vst-author-role {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.vst-author-link {
  font-size: 0.82rem;
  color: var(--color-gold);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vst-content-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}
.vst-content-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 12px;
}
.vst-content-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 24px 0 10px;
}
.vst-content-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 18px 0 8px;
}
.vst-content-body p {
  margin-bottom: 16px;
}
.vst-content-body ul,
.vst-content-body ol {
  margin: 0 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vst-content-body ul {
  list-style: disc;
}
.vst-content-body ol {
  list-style: decimal;
}
.vst-content-body li {
  color: var(--color-text);
  padding-left: 4px;
}
.vst-content-body strong,
.vst-content-body b {
  color: #fff;
  font-weight: 700;
}
.vst-content-body em,
.vst-content-body i {
  color: var(--color-text-muted);
}
.vst-content-body a {
  color: var(--color-gold);
  text-decoration: underline;
}
.vst-content-body a:hover {
  color: var(--color-gold-hover);
}
.vst-content-body table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}
.vst-content-body table th,
.vst-content-body table td {
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  text-align: left;
  font-size: 0.93rem;
}
.vst-content-body table th {
  background: var(--bg-card);
  color: var(--color-text-muted);
  font-size: 0.83rem;
  text-transform: uppercase;
}
.vst-content-body table td {
  background: var(--bg-card2);
}
.vst-content-body blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 12px 20px;
  background: rgba(250, 179, 8, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: var(--color-text-muted);
  font-style: italic;
}

.vst-faq {
  background: var(--bg-main);
}
.vst-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vst-faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.vst-faq-question {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.vst-faq-question:hover {
  background: rgba(250, 179, 8, 0.05);
}
.vst-faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.vst-faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(250, 179, 8, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.3s;
}
.vst-faq-arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 2.5;
  transition: transform 0.3s;
}
.vst-faq-item.is-open .vst-faq-arrow {
  background: var(--color-gold);
}
.vst-faq-item.is-open .vst-faq-arrow svg {
  stroke: #111;
  transform: rotate(180deg);
}
.vst-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vst-faq-item.is-open .vst-faq-answer {
  max-height: 600px;
}
.vst-faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.96rem;
}
.vst-faq-answer-inner a {
  color: var(--color-gold);
}

footer.vst-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
}
.vst-footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.vst-footer-logo img {
  height: 42px;
  margin-bottom: 14px;
}
.vst-footer-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.vst-footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.vst-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.vst-footer-col ul li a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.vst-footer-col ul li a:hover {
  color: var(--color-gold);
}
.vst-footer-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 24px 0;
}
.vst-footer-payments,
.vst-footer-providers {
  margin-bottom: 20px;
}
.vst-footer-payments h5,
.vst-footer-providers h5 {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-weight: 600;
}
.vst-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.vst-logo-badge {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.3px;
}
.vst-footer-legal {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 16px;
}
.vst-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.vst-footer-copyright {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.vst-footer-license {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.vst-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #1a1c2b, #262c3b);
  border-top: 2px solid var(--color-gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slide-widget 0.6s 0.8s forwards;
}
@keyframes slide-widget {
  to {
    transform: translateY(0);
  }
}
.vst-widget-text {
  font-size: 0.9rem;
  color: var(--color-text);
  flex: 1;
}
.vst-widget-text strong {
  color: var(--color-gold);
  font-size: 1.1rem;
  display: block;
  line-height: 1.2;
}
.vst-widget-bonus-tag {
  display: inline-block;
  background: rgba(250, 179, 8, 0.15);
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 3px;
}
.vst-widget-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.2rem;
  padding: 4px 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition);
}
.vst-widget-close:hover {
  color: #fff;
}
.vst-widget-btn {
  background: var(--color-gold);
  color: #111;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.vst-widget-btn:hover {
  background: var(--color-gold-hover);
  color: #111;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(250, 179, 8, 0.4);
}
.vst-widget.is-hidden {
  display: none;
}

.vst-block-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  margin: 0 4px;
}
.vst-separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 0;
}
.vst-separator::before,
.vst-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.vst-separator span {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.bf3k9-hidden {
  display: none !important;
}
.wp-post-image {
  max-width: 100%;
}
.entry-content {
  width: 100%;
}
.wp-block-group {
  display: block;
}
.has-text-align-center {
  text-align: center;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  max-width: 100%;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.vst-anim-fade {
  animation: fadeIn 0.6s ease both;
}
.vst-anim-up {
  animation: fadeInUp 0.6s ease both;
}
.vst-anim-up-d1 {
  animation-delay: 0.1s;
}
.vst-anim-up-d2 {
  animation-delay: 0.2s;
}
.vst-anim-up-d3 {
  animation-delay: 0.3s;
}

.qz8m1-spacer {
  height: 60px;
}
.rn4v6-divider {
  border-top: 1px dashed var(--color-border);
  margin: 40px 0;
}

@media (max-width: 1024px) {
  .vst-app-grid {
    grid-template-columns: 1fr;
  }
  .vst-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vst-footer-grid > :first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .vst-header-inner {
    grid-template-columns: auto auto;
  }
  .vst-nav {
    display: none;
  }
  .vst-burger {
    display: flex;
  }
  .vst-online-badge {
    display: none;
  }
  .vst-mobile-nav {
    display: flex;
  }
  .vst-hero h1 {
    font-size: 1.9rem;
  }
  .vst-pros-cons {
    grid-template-columns: 1fr;
  }
  .vst-winners-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vst-footer-grid {
    grid-template-columns: 1fr;
  }
  section.vst-section {
    padding: 40px 0;
  }
  .vst-section-title {
    font-size: 1.4rem;
  }
  .vst-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .vst-widget-text {
    flex: 100%;
  }
}
@media (max-width: 480px) {
  .vst-winners-grid {
    grid-template-columns: 1fr;
  }
  .vst-hero h1 {
    font-size: 1.6rem;
  }
  .vst-block-card {
    padding: 20px;
  }
  .vst-widget {
    padding: 10px 14px;
  }
  .vst-widget-btn {
    width: 100%;
    justify-content: center;
  }
}
