:root {
  --vs-bg: #06060c;
  --vs-bg-soft: #0c0c17;
  --vs-panel: rgba(23, 21, 39, 0.78);
  --vs-panel-strong: #17162a;
  --vs-text: #f5f2ff;
  --vs-muted: #b6add0;
  --vs-purple: #7a4dff;
  --vs-pink: #ff3eb5;
  --vs-cyan: #53e7ff;
  --vs-line: rgba(255,255,255,0.1);
  --vs-shadow: 0 25px 70px rgba(0,0,0,0.5);
}

html {
  scroll-behavior: smooth;
}

body.vice-six-theme {
  background:
    radial-gradient(circle at 12% 10%, rgba(122,77,255,0.28), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255,62,181,0.22), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(83,231,255,0.08), transparent 24%),
    linear-gradient(180deg, #07070d 0%, #05050a 100%);
  color: var(--vs-text);
}

.wp-site-blocks {
  overflow-x: clip;
}

.vs-shell {
  width: min(100%, 1280px);
  padding-left: clamp(16px, 3vw, 28px);
  padding-right: clamp(16px, 3vw, 28px);
  box-sizing: border-box;
  margin: 0 auto;
}

.vs-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6, 6, 12, 0.62);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vs-section {
  padding: 78px 0;
  position: relative;
}

.vs-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--vs-cyan);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.vs-title {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.vs-subtitle {
  margin: 0;
  color: var(--vs-muted);
  font-size: 1.03rem;
  line-height: 1.75;
  max-width: 760px;
}

.vs-gradient {
  background: linear-gradient(90deg, var(--vs-purple), var(--vs-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vs-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 52px 0 36px;
}

.vs-hero-layout,
.vs-grid-2,
.vs-grid-3,
.vs-grid-4,
.vs-slider-track,
.vs-post-grid {
  display: grid;
  gap: 24px;
}

.vs-hero-layout {
  grid-template-columns: 1.06fr 0.94fr;
  align-items: end;
}

.vs-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vs-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vs-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vs-post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.vs-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--vs-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  backdrop-filter: blur(16px);
  box-shadow: var(--vs-shadow);
  overflow: hidden;
}

.vs-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(122,77,255,0.22), transparent 60%);
  pointer-events: none;
}

.vs-pill-row,
.vs-actions,
.vs-meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vs-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.035);
  color: var(--vs-muted);
  font-size: 0.85rem;
}

.vs-button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.vs-button-primary,
.wp-block-button.is-style-fill .wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: linear-gradient(90deg, var(--vs-purple), var(--vs-pink)) !important;
  color: #fff !important;
  box-shadow: 0 16px 40px rgba(122,77,255,0.34);
}

.vs-button-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--vs-text);
  background: rgba(255,255,255,0.03);
}

.vs-button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.vs-feature-panel {
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
}

.vs-meta-split {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--vs-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.vs-map-stage,
#vice-six-map {
  min-height: 350px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.vs-map-stage {
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(122,77,255,0.34), transparent 24%),
    radial-gradient(circle at 70% 60%, rgba(255,62,181,0.28), transparent 26%),
    #0d0c16;
  background-size: 40px 40px, 40px 40px, auto, auto, auto;
  position: relative;
}

.vs-map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--vs-pink);
  box-shadow: 0 0 0 10px rgba(255,62,181,0.12);
  animation: vsPulse 2.5s infinite;
}

.vs-news-card h3,
.vs-post-card h3,
.vs-shop-card h3 {
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.vs-creator {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
}

.vs-avatar {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--vs-purple), var(--vs-pink));
  box-shadow: 0 18px 36px rgba(122,77,255,0.3);
}

.vs-discussion-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vs-discussion-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.vs-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  white-space: nowrap;
}

.vs-marquee-track {
  display: inline-block;
  min-width: 100%;
  animation: vsMarquee 20s linear infinite;
  color: var(--vs-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.vs-fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.vs-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vs-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0 50px;
  color: var(--vs-muted);
}

.vice-six-theme .woocommerce ul.products li.product,
.vice-six-theme .woocommerce div.product,
.vice-six-theme #bbpress-forums {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 22px;
}

.vice-six-theme .woocommerce ul.products li.product a,
.vice-six-theme .woocommerce div.product p,
.vice-six-theme #bbpress-forums a {
  color: var(--vs-text);
}

.vice-six-theme input,
.vice-six-theme textarea,
.vice-six-theme select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--vs-text);
  border-radius: 14px;
}

@keyframes vsPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.16); opacity: 0.65; }
}

@keyframes vsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .vs-fade-up {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .vs-hero-layout,
  .vs-grid-2,
  .vs-grid-3,
  .vs-grid-4,
  .vs-slider-track,
  .vs-post-grid {
    grid-template-columns: 1fr;
  }

  .vs-feature-panel {
    min-height: auto;
  }
}


body.vice-six-theme,
body.vice-six-theme * {
  box-sizing: border-box;
}

img,
svg,
iframe,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.vs-shell,
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.vs-card,
.vs-feature-panel,
.vs-map-stage,
#vice-six-map {
  max-width: 100%;
}

.vs-title,
.vs-subtitle,
h1,h2,h3,p {
  overflow-wrap: anywhere;
}

.vs-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vs-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--vs-muted);
  font-size: 0.9rem;
}

.vs-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.vs-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.vs-detail-hero {
  padding-top: 36px;
}

.vs-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.vs-sidebar-card {
  position: sticky;
  top: 100px;
}

.vice-six-theme .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vice-six-theme .woocommerce ul.products::before,
.vice-six-theme .woocommerce ul.products::after {
  display: none !important;
}

.vice-six-theme .woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

@media (max-width: 1100px) {
  .vs-shop-grid,
  .vs-stat-row,
  .vice-six-theme .woocommerce ul.products {
    grid-template-columns: 1fr 1fr;
  }

  .vs-detail-layout {
    grid-template-columns: 1fr;
  }

  .vs-sidebar-card {
    position: static;
  }
}

@media (max-width: 980px) {
  .vs-shell {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 720px) {
  .vs-shop-grid,
  .vs-stat-row,
  .vice-six-theme .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .vs-card {
    padding: 20px;
    border-radius: 22px;
  }

  .vs-section {
    padding: 56px 0;
  }

  .vs-title {
    line-height: 0.96;
  }
}


:root {
  --vs-container-max: 1280px;
  --vs-gutter: clamp(16px, 3vw, 30px);
}

.vs-shell {
  width: 100%;
  max-width: var(--vs-container-max);
  margin: 0 auto;
  padding-left: var(--vs-gutter);
  padding-right: var(--vs-gutter);
}

.wp-site-blocks,
main,
header,
footer,
section {
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

.vice-six-theme .alignwide,
.vice-six-theme .alignfull,
.vice-six-theme .wp-block-group,
.vice-six-theme .wp-block-columns,
.vice-six-theme .wp-block-column,
.vice-six-theme .wp-block-cover,
.vice-six-theme .wp-block-image,
.vice-six-theme .wp-block-post-featured-image {
  max-width: 100%;
}

.vs-legal-card,
.vs-ad-slot,
.vs-table-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--vs-shadow);
}

.vs-ad-slot {
  text-align: center;
  color: var(--vs-muted);
  min-height: 120px;
  display: grid;
  place-items: center;
}

.vs-ad-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--vs-cyan);
}

.vs-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.vs-feature-list li {
  list-style: none;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
}

.vs-article-table {
  width: 100%;
  border-collapse: collapse;
}

.vs-article-table th,
.vs-article-table td {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  padding: 12px 10px;
}

.vs-hero-layout,
.vs-grid-2,
.vs-grid-3,
.vs-grid-4,
.vs-slider-track,
.vs-post-grid,
.vs-shop-grid,
.vs-stat-row,
.vs-detail-layout {
  min-width: 0;
}

@media (max-width: 640px) {
  :root {
    --vs-gutter: 14px;
  }

  .vs-header .vs-shell {
    padding-left: 14px;
    padding-right: 14px;
  }
}
