@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap");

:root {
  --vc-void: #1b2033;
  --vc-panel: #242a3d;
  --vc-panel-2: #2e354a;
  --vc-cyan: #57f7d1;
  --vc-violet: #b58cff;
  --vc-muted: #7f8ca3;
  --vc-label: #9fb2d3;
  --vc-text: #c7d0e0;
  --vc-blue: #6ea8ff;
  --vc-danger: #ff6b8a;
  --vc-gold: #ffd166;
  --vc-white: #f6f8ff;

  --color-bg: var(--vc-void);
  --color-brighter-bg: var(--vc-panel);
  --color-text: var(--vc-white);
  --color-text-darker: var(--vc-text);
  --color-text-secondary: var(--vc-label);
  --color-primary: var(--vc-cyan);
  --color-primary-hover: var(--vc-violet);
  --color-primary-text: #111827;
  --color-primary-text-hover: #111827;
  --color-secondary: var(--vc-label);
  --color-secondary-hover: var(--vc-white);
  --color-secondary-text: #111827;
  --color-tertiary-hover: rgba(159, 178, 211, 0.13);
  --color-sale-banner-bg: var(--vc-cyan);
  --color-sale-banner-text: #111827;

  --widget-padding: 20px;
  --content-inner-width: 1180px;
  --sidebar-width: 302px;
  --vc-radius: 8px;
  --vc-border: rgba(159, 178, 211, 0.16);
  --vc-border-strong: rgba(87, 247, 209, 0.34);
  --vc-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

html {
  color-scheme: dark;
  background: var(--vc-void);
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--vc-text);
  background:
    linear-gradient(180deg, rgba(27, 32, 51, 0.94), rgba(27, 32, 51, 1) 430px),
    linear-gradient(120deg, rgba(87, 247, 209, 0.12), transparent 35%),
    linear-gradient(250deg, rgba(181, 140, 255, 0.14), transparent 38%),
    var(--vc-void);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(246, 248, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 248, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(rgba(0, 0, 0, 0.72), transparent 72%);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

img {
  border-radius: var(--vc-radius);
}

.btn-primary,
.btn-secondary,
.btn-tertiary,
.btn-glyph-text,
.btn-icon,
.quantity-field,
input,
select,
textarea {
  border-radius: var(--vc-radius);
}

.btn-primary {
  border: 1px solid var(--vc-cyan);
  background: var(--vc-cyan);
  color: #111827;
  font-weight: 900;
  box-shadow: 0 0 0 0 rgba(87, 247, 209, 0);
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--vc-violet);
  background: var(--vc-violet);
  color: #111827;
  box-shadow: 0 0 24px rgba(181, 140, 255, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(181, 140, 255, 0.42);
  background: rgba(181, 140, 255, 0.1);
  color: var(--vc-white);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(181, 140, 255, 0.2);
  box-shadow: 0 0 20px rgba(181, 140, 255, 0.18);
}

.btn-tertiary {
  color: var(--vc-label);
}

.btn-tertiary:hover,
.btn-tertiary:focus {
  color: var(--vc-white);
  background: rgba(159, 178, 211, 0.11);
}

.site-header {
  border-bottom: 1px solid var(--vc-border);
  background: rgba(27, 32, 51, 0.86);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  gap: 18px;
}

.site-title {
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-title a {
  color: var(--vc-violet);
}

.site-title a::first-letter {
  color: var(--vc-cyan);
}

.site-title img {
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.35));
}

.site-header-inner .info {
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  background: rgba(36, 42, 61, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.site-header-inner .info .image {
  border-radius: 6px;
  background: rgba(87, 247, 209, 0.1);
}

.site-header-inner .info .title {
  color: var(--vc-white);
  font-weight: 900;
}

.site-header-inner .info .action {
  color: var(--vc-cyan);
  font-weight: 800;
}

.site-sale-banner {
  margin: 0 auto 18px;
  width: min(var(--content-inner-width), calc(100% - (var(--content-padding) * 2)));
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-radius: var(--vc-radius);
  background: rgba(255, 209, 102, 0.13);
  color: var(--vc-gold);
  font-weight: 900;
}

.navigation-horizontal > ul,
.widget.site-navigation {
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  background: rgba(36, 42, 61, 0.82);
  box-shadow: var(--vc-shadow);
}

.navigation-horizontal .navigation-list > li > a,
.navigation-vertical .navigation-list > li > a {
  color: var(--vc-label);
  font-weight: 800;
  letter-spacing: 0;
}

.navigation-horizontal .navigation-list > li > a:hover,
.navigation-horizontal .navigation-list > li.active > a,
.navigation-horizontal .navigation-list > li > a.link-active,
.navigation-vertical .navigation-list > li > a:hover,
.navigation-vertical .navigation-list > li.active > a,
.navigation-vertical .navigation-list > li > a.link-active {
  color: var(--vc-cyan);
  background: rgba(87, 247, 209, 0.08);
}

.navigation-horizontal .has-children > ul {
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  background: rgba(27, 32, 51, 0.98);
  box-shadow: var(--vc-shadow);
}

.site-content,
.site-content-widgets {
  position: relative;
}

.site-home-text {
  margin-bottom: 26px;
}

.store-text,
.category-description,
.no-products,
.store-product,
.store-product-full,
.widget,
.store-category-tiered,
.basket,
.popup-content {
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  background: rgba(36, 42, 61, 0.86);
  box-shadow: var(--vc-shadow);
}

.store-text {
  overflow: hidden;
}

.store-text h1,
.store-text h2,
.store-text h3,
.category-description h1,
.category-description h2,
.category-description h3 {
  color: var(--vc-white);
  letter-spacing: 0;
}

.store-text h1,
.category-description h1 {
  color: var(--vc-cyan);
}

.store-text p,
.category-description p {
  color: var(--vc-text);
  line-height: 1.72;
}

.site-home-categories {
  gap: 16px;
}

.site-home-categories .category {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  background: rgba(36, 42, 61, 0.86);
  color: var(--vc-white);
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.site-home-categories .category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(87, 247, 209, 0.12), rgba(181, 140, 255, 0.1));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.site-home-categories .category:hover {
  border-color: var(--vc-border-strong);
  color: var(--vc-white);
  transform: translateY(-2px);
}

.site-home-categories .category:hover::before {
  opacity: 1;
}

.store-product {
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.store-products-list .store-product,
.store-products-images .store-product {
  background: rgba(36, 42, 61, 0.86);
}

.store-product:hover {
  transform: translateY(-3px);
  border-color: var(--vc-border-strong);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38);
}

.store-product .image-link {
  background: rgba(27, 32, 51, 0.7);
}

.store-product .image,
.media-slider .slider,
.media-slider .thumb,
.popup.popup-media-slider .thumb {
  border-radius: var(--vc-radius);
}

.store-product .image-default {
  background:
    linear-gradient(135deg, rgba(87, 247, 209, 0.18), rgba(181, 140, 255, 0.18)),
    var(--vc-panel-2);
}

.product-title,
.store-product-full .name,
.store-category-tiered-header h1 {
  color: var(--vc-white);
  font-weight: 900;
  letter-spacing: 0;
}

.product-title a:hover {
  color: var(--vc-cyan);
}

.store-product .price,
.store-product-full .price,
.basket-item .price,
.basket-second-header .total,
.widget .price {
  color: var(--vc-gold);
  font-weight: 900;
}

.discount,
.countdown {
  border-radius: 999px;
  background: rgba(255, 107, 138, 0.15);
  color: var(--vc-danger);
  font-weight: 900;
}

.widget {
  overflow: hidden;
}

.widget-title {
  color: var(--vc-cyan);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.widget .store-product {
  text-align: center;
  box-shadow: none;
}

.widget-server-status .status,
.widget-gift-card .gift-card-input,
.widget-goal .goal,
.widget-community-goal .goal {
  border-radius: var(--vc-radius);
}

.widget-top-donator .avatar {
  border: 2px solid var(--vc-cyan);
  border-radius: 50%;
}

.widget-community-goal .progress,
.widget-goal .progress {
  overflow: hidden;
  border-radius: 999px;
  background: rgba(27, 32, 51, 0.82);
}

.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vc-cyan), var(--vc-violet));
}

.store-product-tiered {
  border: 1px solid rgba(159, 178, 211, 0.12);
  border-radius: var(--vc-radius);
  background: rgba(27, 32, 51, 0.48);
}

.store-product-tiered:hover {
  border-color: var(--vc-border-strong);
}

.quantity-field {
  border: 1px solid var(--vc-border);
  background: rgba(27, 32, 51, 0.82);
}

.store-product .quantity-field input[type="number"] {
  color: var(--vc-white);
  border: none;
  background: transparent;
}

.basket-header,
.basket-second-header {
  border-color: var(--vc-border);
}

.basket-title,
.basket-item .title a {
  color: var(--vc-white);
}

.basket-item {
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  background: rgba(27, 32, 51, 0.56);
}

.basket-item .quantity {
  border-radius: var(--vc-radius);
  background: rgba(36, 42, 61, 0.9);
}

.toast {
  border: 1px solid var(--vc-border-strong);
  border-radius: var(--vc-radius);
  background: rgba(27, 32, 51, 0.96);
  color: var(--vc-white);
  box-shadow: var(--vc-shadow);
}

.toast-close,
.popup-close,
.media-slider .open-lightbox {
  border-radius: var(--vc-radius);
}

.popup-content {
  background: rgba(27, 32, 51, 0.98);
}

.username,
.login,
.options,
.checkout {
  border-radius: var(--vc-radius);
}

.options input,
.options select,
.options textarea,
.username input,
.login input,
.checkout input,
.checkout select,
.checkout textarea {
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  background: rgba(27, 32, 51, 0.84);
  color: var(--vc-white);
}

.options input:focus,
.options select:focus,
.options textarea:focus,
.username input:focus,
.login input:focus,
.checkout input:focus,
.checkout select:focus,
.checkout textarea:focus {
  border-color: var(--vc-cyan);
  outline: 2px solid rgba(87, 247, 209, 0.22);
}

.tebex-footer,
.tebex-legal-footer {
  border-top: 1px solid var(--vc-border);
  background: rgba(27, 32, 51, 0.94);
}

@media (width > 960px) {
  .navigation-horizontal > ul {
    border-radius: var(--vc-radius);
  }
}

@media (width <= 960px) {
  :root {
    --widget-padding: 16px;
  }

  .site-header-inner {
    align-items: center;
  }

  .widget.site-navigation {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .store-product:hover,
  .site-home-categories .category:hover {
    transform: none;
  }
}

