input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}


#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

body.cart-open,
body.dialog-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#mobile-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#mobile-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#mobile-drawer[data-state="open"] > div {
  animation: slide-in-left 0.4s forwards;
}

#mobile-drawer[data-state="closed"] > div {
  animation: slide-out-left 0.4s forwards;
}

.dialog[data-state="open"] {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.15s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.15s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      transform: translateY(-24px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  to {
      opacity: 0;
      transform: translateY(-24px);
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform, filter;
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.grid-background {
  background-image: linear-gradient(to right,hsla(0,0%,100%,.03) 1px,transparent 1px),linear-gradient(to bottom,hsla(0,0%,100%,.03) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%)
}

.custom-bg-mask {
\	mask-image: linear-gradient(hsl(var(--background)), rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0));
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

.detail-dash {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 50%, hsl(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}



.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-link-hover {
  position: relative;
}
.nav-link-hover::after {
  content: \'\';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 3px;
  background: hsl(var(--primary));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link-hover:hover::after {
  width: 100%;
}


@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.gradient-text {
  background: linear-gradient(
    45deg,
    hsl(var(--primary)),
    hsl(var(--primary) / 0.8),
    hsl(var(--primary) / 0.6),
    hsl(var(--primary) / 0.9),
    hsl(var(--primary)),
    hsl(var(--primary) / 0.7),
    hsl(var(--primary) / 0.5),
    hsl(var(--primary) / 0.8)
  );
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease-in-out infinite;
}

.goal-bar {
  background-color: #181A28;
  margin-top: 8px;
  width: 100%;
  height: 18px;
  border-radius: 99px;
  position: relative;
  overflow: hidden;
}

.goal-bar span {
  position: absolute;
  z-index: 1;
  right: 0;
  font-size: 14px;
  font-weight: 600;
  padding-right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.goal-bar::after {
  content: "";
  position: absolute;
  width: var(--goal_percent);
  height: 18px;
  background-color: hsl(var(--primary));
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    transparent 75%,
    transparent
  );
}

@keyframes logo-anim {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
  }
}

.logo-anim {
  animation: logo-anim 3s infinite;
  will-change: transform;
  transition: all 0.1s;
}

.logo-anim:hover {
  filter: brightness(90%);
}

.site-shell {
  background:
    radial-gradient(circle at 50% -10%, rgba(126, 87, 255, 0.28), transparent 34rem),
    radial-gradient(circle at 12% 18%, rgba(79, 70, 229, 0.18), transparent 26rem),
    rgb(var(--background));
}

.spot-landing-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(100, 72, 176, 0.4) 0%, rgba(18, 12, 45, 0.98) 72%, rgb(var(--background)) 100%);
}

.spot-landing-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 24%, rgba(168, 85, 247, 0.22), transparent 18rem),
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
}

.spot-navbar {
  position: absolute !important;
  inset-inline: 0;
  top: 0;
}

.spot-nav-pill {
  margin-inline: auto;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(8, 5, 24, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.spot-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.spot-nav-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.spot-nav-link--active,
.spot-store-btn,
.spot-cart-btn {
  color: #fff;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  box-shadow: 0 10px 28px hsl(var(--primary) / 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.spot-icon-btn,
.spot-store-btn,
.spot-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.spot-icon-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}


.spot-nav-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.spot-icon-btn:hover,
.spot-store-btn:hover,
.spot-cart-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.spot-search {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.spot-search:focus-visible {
  outline: none;
  border-color: hsl(var(--primary) / 0.45);
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.spot-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.85rem 1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(8, 5, 24, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.spot-hero-card:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--primary) / 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.spot-hero-card__icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.spot-stars {
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, 0.25), transparent);
  background-size: 200px 200px;
  opacity: 0.35;
  animation: spot-stars-drift 120s linear infinite;
}

@keyframes spot-stars-drift {
  from { background-position: 0 0, 40px 60px, 130px 270px, 70px 100px; }
  to { background-position: 0 400px, 40px 460px, 130px 670px, 70px 500px; }
}

.online-players {
  color: #4ade80;
}

.spot-store-banner {
  box-shadow: 0 14px 40px hsl(var(--primary) / 0.28);
}

.spot-product-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.spot-product-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--primary) / 0.28);
  box-shadow: 0 18px 44px rgba(5, 3, 18, 0.35);
}

.spot-product-card__image-frame {
  position: relative;
  aspect-ratio: 1;
  padding: 0.75rem;
}

.spot-product-card__image {
  transition: transform 0.25s ease;
}

.spot-product-card:hover .spot-product-card__image {
  transform: scale(1.03);
}

.spot-product-price__discount {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #86efac;
  padding: 0.15rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.spot-product-price__compare {
  color: rgb(var(--muted-foreground));
  font-size: 0.78rem;
  text-decoration: line-through;
  opacity: 0.75;
}

.spot-product-price__coupon {
  color: rgb(var(--muted-foreground));
  font-size: 0.72rem;
  font-weight: 700;
}

.spot-product-price__coupon strong {
  color: hsl(var(--primary));
}

.centralcart-content {
  color: rgb(var(--foreground));
  line-height: 1.75;
}

.centralcart-content h1,
.centralcart-content h2,
.centralcart-content h3,
.centralcart-content h4 {
  color: #fff;
  font-weight: 800;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.centralcart-content p,
.centralcart-content li {
  color: rgb(var(--muted-foreground));
}

.centralcart-content a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 3px;
}

.centralcart-content ul,
.centralcart-content ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.centralcart-content img {
  max-width: 100%;
  border-radius: 0.75rem;
}

@media (max-width: 768px) {
  .spot-nav-pill {
    display: none;
  }

  .spot-hero-card {
    width: 100%;
    max-width: 100%;
  }
}
