/* ==========================================================================
   VEXORA SMP Tebex store skin
   works as long as the
   "store.css" field in Design > Customizer is empty (leave it blank/unset).
   got a palette from the Vexora SMP logo:
     Neon   #FF5CFF  Magenta   #D003F7
     Purple #36005D  Navy      #121833
     White  #F3F5F6
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;900&family=Space+Grotesk:wght@400;500;600;700&family=Press+Start+2P&display=swap');

:root {
  /* ---- Core theme variables (read by shared.css and by main.js for the
     Tebex checkout iframe colors IF UR EDITING, keep these as solid hex, not grads) */
  --color-primary: #ff5cff;
  --color-primary-hover: #ffffff;
  --color-primary-text: #121833;
  --color-primary-text-hover: #121833;

  --color-secondary: #d003f7;
  --color-secondary-hover: #e64bff;
  --color-secondary-text: #f3f5f6;
  --color-secondary-text-hover: #f3f5f6;

  --color-tertiary-hover: rgba(255, 92, 255, 0.14);

  --color-text: #f3f5f6;
  --color-text-darker: #d9cdea;
  --color-text-secondary: #b9a9d6;
  --color-text-dark: #121833;

  --color-bg: #0a0614;
  --color-brighter-bg: #1a0e2e;

  --color-removed: #ff5c7a;
  --color-sale-banner-bg: linear-gradient(90deg, #ff5cff, #d003f7);
  --color-sale-banner-text: #121833;

  /* signature ambient background (used by shared.css body::before) */
  --bg-image:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(255, 92, 255, 0.28), transparent 60%),
    radial-gradient(ellipse 55% 40% at 100% 5%, rgba(208, 3, 247, 0.22), transparent 60%),
    var(--color-bg);

  /* extra brand tokens used ONLY this file */
  --vx-purple: #36005d;
  --vx-ink: #121833;
  --vx-glow-sm: 0 0 12px rgba(255, 92, 255, 0.4);
  --vx-glow-md: 0 0 26px rgba(255, 92, 255, 0.5);
  --vx-bevel: 4px 4px 0 var(--vx-ink);
  --vx-font-display: 'Orbitron', sans-serif;
  --vx-font-pixel: 'Press Start 2P', monospace;
}

body {
  font-family: 'Space Grotesk', sans-serif;
}

/* faint voxel grid texture layered behind everything & on top of the glow */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(#ff5cff 1px, transparent 1px),
    linear-gradient(90deg, #ff5cff 1px, transparent 1px);
  background-size: 34px 34px;
}

h1, h2, h3, h4, h5, h6,
.site-title,
.product-title,
.basket-title,
.widget-title,
.store-product-tiered .product-title {
  font-family: var(--vx-font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* buttons-------- */

.btn-primary,
.btn-secondary,
.btn-tertiary {
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-primary {
  box-shadow: var(--vx-bevel);
}
.btn-primary:hover, .btn-primary:focus {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--vx-ink), var(--vx-glow-md);
}
.btn-primary:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--vx-ink);
}

.btn-secondary {
  background-color: transparent !important;
  color: var(--color-text) !important;
  border: 1px solid var(--color-primary);
  box-shadow: var(--vx-bevel);
}
.btn-secondary:hover, .btn-secondary:focus {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--vx-ink);
  background-color: rgba(255, 92, 255, 0.1) !important;
}

.btn-tertiary:hover, .btn-tertiary:focus {
  box-shadow: 0 0 0 1px rgba(255, 92, 255, 0.4) inset;
}

.log-in.btn-tertiary {
  border: 1px solid rgba(243, 245, 246, 0.25);
  border-radius: 6px;
}

.quantity-field {
  border-radius: 6px;
  border-color: rgba(255, 92, 255, 0.3);
  background: var(--color-bg);
}
.quantity-field input[type="number"] {
  background: transparent;
}

/* head */

.site-header-inner .site-title img {
  filter: drop-shadow(0 0 14px rgba(255, 92, 255, 0.5));
}

.site-header-inner .info .image {
  border-radius: 8px;
  background: rgba(255, 92, 255, 0.08);
  padding: 6px;
}

.site-header-inner .info .action {
  color: var(--color-primary);
}
.site-header-inner .info:hover .action {
  color: var(--color-primary-hover);
}

.site-header-inner .info .value {
  border-radius: 4px;
  border-color: rgba(255, 92, 255, 0.3);
  background: rgba(255, 92, 255, 0.1);
  color: var(--color-text);
}

.site-sale-banner {
  border-radius: 8px;
  font-family: var(--vx-font-display);
  font-weight: 700;
  box-shadow: var(--vx-glow-sm);
}

/* nav */

@media (width > 960px) {
  .navigation-horizontal > ul {
    border-radius: 8px;
    background: var(--color-brighter-bg);
    border: 1px solid rgba(255, 92, 255, 0.15);
  }
  .navigation-horizontal .has-children > ul {
    border-radius: 8px;
    border: 1px solid rgba(255, 92, 255, 0.2);
  }
  .navigation-horizontal a.link-active {
    color: var(--color-primary) !important;
  }
  .navigation-horizontal li li a:hover,
  .navigation-horizontal li li a.link-active {
    color: var(--vx-ink) !important;
    background-color: var(--color-primary) !important;
  }
}

.navigation-vertical a.link-active,
.site-navigation a.active {
  color: var(--color-primary) !important;
}

/* home cats */

.site-home-categories .category {
  border-radius: 8px;
  padding: 20px var(--widget-padding);
  background: linear-gradient(180deg, rgba(255, 92, 255, 0.06), var(--color-brighter-bg));
  border: 1px solid rgba(255, 92, 255, 0.12);
  box-shadow: var(--vx-bevel);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.site-home-categories .category:hover {
  color: var(--color-text);
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--vx-bevel), var(--vx-glow-sm);
}
.site-home-categories .category .image-default::before {
  background-color: var(--color-primary);
  opacity: 0.6;
}

/* txt pages / cms */

.category-description,
.store-text,
.no-products,
.store-product-full,
.store-category-tiered {
  border-radius: 8px;
  background: var(--color-brighter-bg);
  border: 1px solid rgba(255, 92, 255, 0.1);
}

.store-text h1, .store-text h2, .store-text h3,
.store-text h4, .store-text h5, .store-text h6 {
  text-align: center;
  color: var(--color-primary);
}

.no-products {
  color: var(--color-text-secondary);
  font-family: var(--vx-font-display);
}

/* product cards, grid and list */

.store-products-list .store-product,
.store-products-images .store-product {
  border-radius: 8px;
  background: var(--color-brighter-bg);
  border: 1px solid rgba(255, 92, 255, 0.1);
  box-shadow: var(--vx-bevel);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.store-products-list .store-product:hover,
.store-products-images .store-product:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--vx-bevel), var(--vx-glow-sm);
}

.store-products-images .store-product {
  text-align: center;
}

.store-product .product-title a:hover {
  color: var(--color-primary);
}

.store-product .product-title .countdown {
  color: var(--color-primary);
  font-family: var(--vx-font-pixel);
  font-size: 0.6em;
  animation: vx-countdown-pulse 1.6s ease-in-out infinite;
}
.store-product .product-title .countdown::before {
  background-color: currentColor;
}

@keyframes vx-countdown-pulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(255, 92, 255, 0.7); }
}

.store-product .price strong {
  color: var(--color-primary);
}
.store-product .price .discount {
  color: var(--color-removed);
}

.store-product .quantity-field {
  border-radius: 6px;
  background: var(--color-bg);
}
.store-product .quantity-field input[type="number"] {
  border: none;
  color: var(--color-text);
}

.widget-title {
  text-align: center;
  color: var(--color-primary);
}

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

/* widgets */

.widget {
  border-radius: 8px;
  background: var(--color-brighter-bg);
  border: 1px solid rgba(255, 92, 255, 0.1);
}
@media (width <= 960px) {
  .widget.site-navigation {
    border-radius: 0;
    background: transparent;
    border: none;
  }
}

.widget-gift-card .gift-card-input {
  border-radius: 6px;
  border: 1px solid rgba(255, 92, 255, 0.2);
}

.widget-top-donator .avatar {
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 92, 255, 0.35);
}
.widget-top-donator .username {
  color: var(--color-primary);
}

.widget-recent .username {
  color: var(--color-primary);
}

.widget-community-goal .progress,
.widget-goal .progress {
  border-radius: 4px;
  background: var(--color-bg);
}
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 92, 255, 0.5);
}

.widget-server-status h6 {
  color: var(--color-primary);
}

/* popups and modals */

.popup-content {
  border-radius: 10px;
  border: 1px solid rgba(255, 92, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--vx-glow-sm);
}

.popup-close {
  border-radius: 0 10px 0 10px;
}
.popup-close:hover {
  background-color: rgba(255, 92, 255, 0.15);
}

.basket-popup-content,
.basket-popup-content .popup-close {
  border-radius: 0;
}

.basket .basket-header {
  background: linear-gradient(90deg, rgba(255, 92, 255, 0.1), transparent);
  border-bottom: 1px solid rgba(255, 92, 255, 0.15);
}
.basket .basket-title::before {
  background-color: var(--color-primary);
}

.basket-items {
  padding: var(--widget-padding) calc(var(--content-padding) - var(--widget-padding));
}

.basket-item {
  border-radius: 8px;
  border: 1px solid rgba(255, 92, 255, 0.1);
}
.basket-item .title {
  color: var(--color-text);
}
.basket-item .price {
  color: var(--color-primary);
}
.basket-item .trial {
  border-radius: 4px;
}
.basket-item .quantity {
  border-radius: 4px;
}

.basket-checkout .total {
  color: var(--color-primary);
}
.basket-checkout .checkout {
  box-shadow: var(--vx-bevel), var(--vx-glow-sm);
}

/* toasts */

.toast {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--vx-glow-sm);
}
.toast.toast-success { background: #1f9d55; }
.toast.toast-error { background: #d03434; }
.toast.toast-warning { background: #c99a00; }

.toast-close {
  border-radius: 4px;
}

/* tier price */

.store-category-tiered-header h1, .store-category-tiered-header h2,
.store-category-tiered-header h3, .store-category-tiered-header h4,
.store-category-tiered-header h5, .store-category-tiered-header h6 {
  text-align: center;
  color: var(--color-primary);
}

.store-product-tiered {
  --primary-color: rgba(255, 92, 255, 0.18);
  border-radius: 8px;
  background: rgba(26, 14, 46, 0.6);
  border: 1px solid rgba(255, 92, 255, 0.1);
}
.store-product-tiered .price strong {
  color: var(--color-primary);
}

/* media slide, light box */

.media-slider .slider,
.media-slider .thumb {
  border-radius: 8px;
}
.media-slider .thumb.active {
  box-shadow: 0 0 0 2px var(--color-primary);
}
.media-slider .open-lightbox {
  border-radius: 4px;
}

.popup.popup-media-slider .thumb {
  border-radius: 8px;
}
.popup.popup-media-slider .popup-close {
  border-radius: 8px;
}

/* scrollbar polish wkit */

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: var(--vx-purple);
  
  
  /* sidebar account / login / basket------- */

.sidebar-account {
  position: relative;
  width: 100%;
  margin: 0 0 22px;
  z-index: 50;
}

/* account card */

.sidebar-account-card {
  position: relative;
  width: 100%;
  box-sizing: border-box;

  padding: 16px;

  overflow: hidden;

  border-radius: 10px;
  border: 1px solid rgba(255, 92, 255, 0.22);

  background:
    linear-gradient(
      145deg,
      rgba(54, 0, 93, 0.96),
      rgba(18, 24, 51, 0.98)
    );

  box-shadow:
    4px 4px 0 rgba(18, 24, 51, 0.95),
    0 0 18px rgba(255, 92, 255, 0.12);

  isolation: isolate;
}

/* pink glow */

.sidebar-account-card::before {
  content: "";

  position: absolute;
  z-index: -1;

  width: 180px;
  height: 180px;

  top: -100px;
  right: -70px;

  border-radius: 50%;

  background: rgba(255, 92, 255, 0.2);

  filter: blur(45px);

  pointer-events: none;
}

/* purpley glow on bottom */

.sidebar-account-card::after {
  content: "";

  position: absolute;
  z-index: -1;

  width: 150px;
  height: 80px;

  left: 20px;
  bottom: -50px;

  border-radius: 50%;

  background: rgba(208, 3, 247, 0.25);

  filter: blur(35px);

  pointer-events: none;
}


/* header */

.sidebar-account-header {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 13px;
}

.sidebar-account-title {
  color: rgba(243, 245, 246, 0.45);

  font-family: var(--vx-font-display);
  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* online indicator */

.sidebar-account-status {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #8cffb5;

  font-family: var(--vx-font-display);
  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.sidebar-account-status-dot {
  display: block;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #67ff9b;

  box-shadow:
    0 0 6px #67ff9b,
    0 0 12px rgba(103, 255, 155, 0.6);

  animation: vx-sidebar-online 1.8s ease-in-out infinite;
}

@keyframes vx-sidebar-online {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.7);
  }
}


/* ign */

.sidebar-account-welcome {
  position: relative;

  color: var(--color-text-secondary);

  font-size: 11px;
  font-weight: 500;
}

.sidebar-account-username {
  position: relative;

  margin-top: 2px;
  margin-bottom: 14px;

  overflow: hidden;

  color: var(--color-text);

  font-family: var(--vx-font-display);
  font-size: 17px;
  font-weight: 700;

  line-height: 1.3;

  text-overflow: ellipsis;
  white-space: nowrap;

  text-shadow:
    0 0 10px rgba(255, 92, 255, 0.25);
}


/* main sidebar btn */

.sidebar-account-button {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  min-height: 60px;

  box-sizing: border-box;

  padding: 9px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;

  color: #fff !important;

  text-decoration: none !important;

  cursor: pointer;

  background:
    linear-gradient(
      135deg,
      #ff5cff 0%,
      #d003f7 55%,
      #8d00b5 100%
    );

  box-shadow:
    4px 4px 0 #121833,
    0 0 12px rgba(255, 92, 255, 0.3);

  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease;
}

/* moving shine */

.sidebar-account-button::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;
  left: -110%;

  width: 60%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.38),
      transparent
    );

  transform: skewX(-22deg);

  transition: left 0.55s ease;

  pointer-events: none;
}

.sidebar-account-button:hover::before {
  left: 140%;
}

.sidebar-account-button:hover {
  transform: translate(-2px, -2px);

  filter: brightness(1.08);

  box-shadow:
    6px 6px 0 #121833,
    0 0 24px rgba(255, 92, 255, 0.55);
}

.sidebar-account-button:active {
  transform: translate(2px, 2px);

  box-shadow:
    2px 2px 0 #121833,
    0 0 10px rgba(255, 92, 255, 0.3);
}


/* btn icons */

.sidebar-button-icon {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 40px;

  width: 40px;
  height: 40px;

  border-radius: 5px;

  color: #fff;

  background: rgba(18, 24, 51, 0.28);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.sidebar-button-icon svg {
  display: block;

  width: 21px;
  height: 21px;
}

.sidebar-account-button:hover .sidebar-button-icon {
  transform: scale(1.08) rotate(-4deg);

  background: rgba(18, 24, 51, 0.4);
}


/* btn text */

.sidebar-button-text {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  min-width: 0;

  margin-left: 10px;

  text-align: left;
}

.sidebar-button-label {
  color: rgba(255, 255, 255, 0.65);

  font-family: var(--vx-font-display);
  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-button-name {
  margin-top: 3px;

  color: #fff;

  font-family: var(--vx-font-display);
  font-size: 13px;
  font-weight: 900;

  letter-spacing: 0.02em;
  line-height: 1.2;

  text-transform: uppercase;
}


/* arrow */

.sidebar-button-arrow {
  position: relative;
  z-index: 2;

  flex: 0 0 auto;

  margin-left: auto;
  padding: 0 6px 0 8px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 20px;
  font-weight: 400;

  transition:
    transform 0.18s ease,
    color 0.18s ease;
}

.sidebar-account-button:hover .sidebar-button-arrow {
  color: #fff;
  transform: translateX(4px);
}


/* login states */

.sidebar-login-card {
  background:
    linear-gradient(
      145deg,
      rgba(54, 0, 93, 0.98),
      rgba(18, 24, 51, 0.98)
    );
}

/* login glow */

.sidebar-login-button {
  animation: vx-login-glow 2.8s ease-in-out infinite;
}

@keyframes vx-login-glow {
  0%,
  100% {
    box-shadow:
      4px 4px 0 #121833,
      0 0 12px rgba(255, 92, 255, 0.28);
  }

  50% {
    box-shadow:
      4px 4px 0 #121833,
      0 0 25px rgba(255, 92, 255, 0.58);
  }
}

.sidebar-login-button:hover {
  animation: none;
}

.sidebar-login-description {
  position: relative;

  margin-top: 4px;
  margin-bottom: 14px;

  color: var(--color-text-secondary);

  font-size: 10px;
  line-height: 1.5;
}


/* logout btn */

.sidebar-logout {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  width: 100%;
  height: 34px;

  margin-top: 11px;

  box-sizing: border-box;

  border: 1px solid transparent;
  border-radius: 5px;

  color: rgba(243, 245, 246, 0.42) !important;

  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;

  text-decoration: none !important;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.sidebar-logout-icon {
  display: flex;
  align-items: center;
}

.sidebar-logout-icon svg {
  width: 14px;
  height: 14px;
}

.sidebar-logout:hover {
  color: #ff6b8a !important;

  border-color: rgba(255, 92, 122, 0.22);

  background: rgba(255, 92, 122, 0.07);
}


/* mobile */

@media (max-width: 960px) {
  .sidebar-account {
    margin-bottom: 18px;
  }

  .sidebar-account-card {
    box-shadow:
      3px 3px 0 rgba(18, 24, 51, 0.95),
      0 0 15px rgba(255, 92, 255, 0.1);
  }
}

@media (max-width: 600px) {
  .sidebar-account-card {
    padding: 14px;
  }

  .sidebar-account-username {
    font-size: 16px;
  }

  .sidebar-account-button {
    min-height: 58px;
  }
}
  
  
  
  .sidebar-account {
    background: red !important;
    border: 10px solid lime !important;
    color: yellow !important;
}

.sidebar-account * {
    color: yellow !important;
}
  
  
  
  
  border-radius: 6px;
  border: 2px solid var(--color-bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

    .vexora-store {
      --panel: #121833;
      --text: #eee8df;
      --muted: #8f8982;
      --orange: #f5a623;
      --red: #ff3b3b;
      --blue: #315fd8;

      width: 100%;
      max-width: 920px;
      min-height: 420px;
      box-sizing: border-box;

      margin: 0 auto;
      padding: 32px 40px;

      background: var(--panel);
      border: 2px solid rgba(255,255,255,.05);
      border-radius: 9px;

      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
      position: relative;
      overflow: hidden;
    }

    /* Header */
    .vexora-store .store-title {
      margin: 0;
      font-size: 28px;
      font-weight: 800;
      letter-spacing: .3px;
      color: var(--orange);
      text-align: left;
    }

    .vexora-store .store-subtitle {
      margin: 10px 0 28px;
      font-size: 18px;
      font-weight: 700;
      color: #66615c;
    }

    /* Featured circles */
    .vexora-store .featured-area {
      position: absolute;
      top: -2px;
      right: 35px;
      width: 265px;
      height: 155px;
    }

    .vexora-store .circle {
      position: absolute;
      border-radius: 50%;
      background: #174d24;
      border: 4px solid #24d33e;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .vexora-store .circle-small {
      width: 112px;
      height: 112px;
      left: 0;
      top: 28px;
      z-index: 1;
      font-size: 35px;
    }

    .vexora-store .circle-middle {
      width: 62px;
      height: 62px;
      left: 72px;
      top: 85px;
      z-index: 2;
    }

    .vexora-store .circle-large {
      width: 160px;
      height: 160px;
      right: 0;
      top: 0;
      z-index: 3;
      flex-direction: column;
      text-align: center;
      padding: 25px;
    }

    .vexora-store .featured-label {
      font-size: 9px;
      font-weight: 500;
      margin-bottom: 24px;
    }

    .vexora-store .featured-name {
      font-size: 19px;
      line-height: 1.15;
      font-weight: 800;
    }

    .vexora-store .featured-price {
      margin-top: 12px;
      font-size: 13px;
      color: #ddd;
    }

    /* Welcome */
    .vexora-store .welcome {
      font-size: 17px;
      color: #aaa49e;
      margin-bottom: 10px;
    }

    /* Middle information */
    .vexora-store .info-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      margin-top: 5px;
      min-height: 105px;
    }

    /* Donation */
    .vexora-store .donation {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .vexora-store .progress-ring {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      border: 9px solid #5c5854;
      box-sizing: border-box;

      display: flex;
      align-items: center;
      justify-content: center;

      color: #d5d0ca;
      font-size: 13px;
      font-weight: 700;
    }

    .vexora-store .donation-text {
      font-size: 15px;
      font-weight: 800;
      color: var(--orange);
    }

    /* Recent customers */
    .vexora-store .customers {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-right: 150px;
    }

    .vexora-store .star {
      font-size: 58px;
      line-height: 1;
      color: var(--orange);
      text-shadow: 0 2px 3px rgba(0,0,0,.3);
    }

    .vexora-store .customer-content {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .vexora-store .customer-title {
      color: var(--orange);
      font-size: 15px;
      font-weight: 800;
      font-style: italic;
      white-space: nowrap;
    }

    .vexora-store .avatars {
      display: flex;
      gap: 7px;
    }

    .vexora-store .avatar {
      width: 28px;
      height: 28px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      background: #29251f;
      border: 1px solid rgba(255,255,255,.08);
    }

    /* Bottom boxes */
    .vexora-store .bottom-row {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 16px;
      margin-top: 28px;
    }

    .vexora-store .box {
      position: relative;
      min-height: 112px;
      box-sizing: border-box;
      border: 3px solid;
      border-radius: 20px;

      display: flex;
      align-items: center;
      justify-content: center;

      text-align: center;
      padding: 25px 28px 18px;

      color: #aaa6a2;
      font-size: 15.5px;
      line-height: 1.45;
      font-weight: 500;
    }

    .vexora-store .support-box {
      border-color: var(--red);
      background: rgba(80, 0, 0, .25);
    }

    .vexora-store .refund-box {
      border-color: var(--blue);
      background: rgba(20, 20, 80, .3);
    }

    .vexora-store .box-label {
      position: absolute;
      top: -17px;
      left: 50%;
      transform: translateX(-50%);

      padding: 7px 19px;
      border-radius: 18px;

      color: white;
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
    }

    .vexora-store .support-label {
      background: var(--red);
    }

    .vexora-store .refund-label {
      background: var(--blue);
    }

    .vexora-store .box strong {
      color: #ddd;
    }

    /* Responsive */
    @media (max-width: 760px) {
      .vexora-store {
        padding: 28px 24px;
      }

      .vexora-store .featured-area {
        position: relative;
        top: auto;
        right: auto;
        margin: 10px auto 25px;
        transform: scale(.85);
      }

      .vexora-store .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .vexora-store .customers {
        margin-right: 0;
      }
      
      
    }
    
    .basket-header {
  display: flex;
  align-items: center;
}

.basket-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.basket-currency {
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

#homepage-community-goal {
    width: 100%;
    margin: 30px 0;
}

#homepage-community-goal .widget-community-goal,
#homepage-community-goal .widget-goal {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid rgba(255, 92, 255, 0.15);
    background: var(--color-brighter-bg);
    box-shadow: var(--vx-bevel), var(--vx-glow-sm);
}

#homepage-community-goal .widget-title {
    color: var(--color-primary);
}

#homepage-community-goal .progress {
    background: var(--color-bg);
}

/* server nav */

.server-selector-link {
  cursor: pointer;
}


/* modal back */

.server-modal {
  position: fixed;
  inset: 0;

  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .2s ease,
    visibility .2s ease;
}


.server-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.server-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,.82);

  backdrop-filter: blur(8px);
}


/* modal box */

.server-modal-box {
  position: relative;
  z-index: 2;

  width: 460px;
  max-width: calc(100vw - 32px);

  padding: 36px;

  background:
    linear-gradient(
      145deg,
      rgba(25,25,32,.98),
      rgba(12,12,16,.98)
    );

  border: 1px solid rgba(255,92,255,.25);

  border-radius: 16px;

  box-shadow:
    0 25px 80px rgba(0,0,0,.75),
    0 0 35px rgba(255,92,255,.15);

  transform: translateY(20px) scale(.96);

  transition: transform .22s ease;
}


.server-modal.is-open .server-modal-box {
  transform: translateY(0) scale(1);
}


/* close btn */

.server-modal-close {
  position: absolute;

  top: 14px;
  right: 14px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);

  background: rgba(255,255,255,.05);

  color: white;

  font-size: 24px;

  cursor: pointer;
}


/* modal icon */

.server-modal-icon {
  width: 60px;
  height: 60px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* modal text */

.server-modal-box h2 {
  margin: 0;

  color: white;

  text-align: center;

  font-size: 26px;
}


.server-modal-description {
  margin: 12px 0 25px;

  text-align: center;

  color: rgba(255,255,255,.55);

  font-size: 14px;
}


/* server buttons */

.server-choice-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.server-choice {
  width: 100%;

  display: flex;
  align-items: center;

  padding: 15px;

  border-radius: 12px;

  border: 1px solid rgba(255,255,255,.10);

  background: rgba(255,255,255,.04);

  color: white;

  text-decoration: none;

  cursor: pointer;

  transition: .15s ease;
}


.server-choice:hover {
  transform: translateY(-2px);
}


.server-choice-lifesteal:hover {
  background: rgba(255,92,255,.10);
  border-color: rgba(255,92,255,.55);
}


.server-choice-ffa:hover {
  background: rgba(140,100,255,.12);
  border-color: rgba(140,100,255,.55);
}


/* server icons */

.server-choice-icon {
  width: 46px;
  height: 46px;

  margin-right: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.server-choice-icon img {
    max-width: 45px;
    max-height: 45px;
}


.server-choice-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}


.server-choice-content strong {
  color: white;
  font-size: 16px;
}


.server-choice-content small {
  color: rgba(255,255,255,.45);
  font-size: 12px;
}


.server-choice-arrow {
  color: rgba(255,255,255,.35);
  font-size: 22px;
}


.server-choice:hover .server-choice-arrow {
  color: #ff5cff;
}

body.server-modal-open {
  overflow: hidden;
}


@media(max-width:600px){

  .server-modal-box {
    padding: 28px 22px;
  }

}

.vexora-home-buttons {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    margin: 16px 0 !important;
    padding: 0 !important;
}
.vexora-home-buttons a.vexora-home-button:empty {
    display: none !important;
}
.vexora-home-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100px !important;
    min-height: 100px !important;
    max-height: 100px !important;
    margin: 0 !important;
    padding: 0 30px !important;
    box-sizing: border-box !important;
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: none !important;
    transition: transform 0.15s ease, filter 0.15s ease !important;
}
.vexora-home-content::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 30% !important;
    height: 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    pointer-events: none !important;
    z-index: 1 !important;
}
.vexora-home-content:hover {
    transform: translateY(-3px) !important;
    filter: brightness(1.08) !important;
}
.vexora-home-content:hover::after {
    transform: scale(1.05) !important;
}
.vexora-home-content:has(.vexora-home-ranks)    { background: linear-gradient(110deg, 
#b91447, 
#df315c) !important; }
.vexora-home-content:has(.vexora-home-crates)   { background: linear-gradient(110deg, 
#c719ad, 
#f248d5) !important; }
.vexora-home-content:has(.vexora-home-crystals) { background: linear-gradient(110deg, 
#087fe5, 
#2ec4e8) !important; }
.vexora-home-content:has(.vexora-home-ranks)::after {
    background-image: url("https://cdn.tebex.io/store/1793045/templates/310032/assets/3f5fbde0c3964b42b6488948a0e68ef667b3732c.png") !important;
}
.vexora-home-content:has(.vexora-home-crates)::after {
    background-image: url("https://cdn.tebex.io/store/1793045/templates/310032/assets/3e7d870458eefa0f833480ec9a3fa26117190ddc.png") !important;
}
.vexora-home-content:has(.vexora-home-crystals)::after {
    background-image: url("https://cdn.tebex.io/store/1793045/templates/310032/assets/9ba2a5b566b05b7dd30255d7520e102a0b434bef.png") !important;
}
.vexora-home-title,
.vexora-home-subtitle {
    position: relative !important;
    z-index: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.vexora-home-subtitle {
    margin-top: 8px !important;
}
.vexora-home-title a.vexora-home-button,
.vexora-home-subtitle a.vexora-home-button {
    all: unset !important;
    display: inline-block !important;
    cursor: pointer !important;
}
.vexora-home-title a.vexora-home-button {
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: #fff !important;
    white-space: nowrap !important;
}
.vexora-home-subtitle a.vexora-home-button {
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    white-space: nowrap !important;
}
@media (max-width: 700px) {
    .vexora-home-content {
        height: 80px !important;
        min-height: 80px !important;
        max-height: 80px !important;
        padding: 0 18px !important;
    }
    .vexora-home-title a.vexora-home-button {
        font-size: 18px !important;
    }
    .vexora-home-subtitle a.vexora-home-button {
        margin-top: 6px !important;
        font-size: 11px !important;
    }
    .vexora-home-content::after {
        width: 28% !important;
    }
}