body {
  --theme-secondary: #00eefc;
  --theme-secondary-rgb: 0, 238, 252;
  margin: 0;
  padding: 0;
  background-color: #0e0e0e;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
}

body.system-scanlines-on::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  background-image: url("https://i.pinimg.com/originals/51/7a/86/517a86be65e2c862e73e1ecd18a85627.gif");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.08;
}

body.system-scanlines-on::after {
  content: none;
}

.boot-sequence {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  z-index: 205;
  padding: 118px 48px 48px;
  background: rgba(0, 0, 0, 0.72);
  transition: opacity 180ms ease;
}

.boot-sequence.is-active {
  opacity: 1;
}

body.boot-sequence-active #crt-screen {
  filter: brightness(0.22) saturate(0.58) contrast(0.92);
}

.boot-sequence-flash {
  position: absolute;
  inset: 0;
  display: none;
}

.boot-sequence-shell {
  position: relative;
  width: min(96vw, 1080px);
  min-height: min(72vh, 680px);
  padding: 24px 28px 32px;
  border: 1px solid rgba(0, 238, 252, 0.12);
  background: rgba(3, 10, 8, 0.88);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 0 1px rgba(0, 238, 252, 0.05);
  transform: translateY(0) scale(1);
  opacity: 0;
  font-family: "Courier New", Courier, monospace;
}

.boot-sequence-kicker {
  margin: 0 0 18px;
  color: #9cf7ca;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.boot-sequence-copy {
  display: grid;
  gap: 14px;
}

.boot-sequence-status {
  margin: 24px 0 0;
  color: rgba(156, 247, 202, 0.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.boot-sequence-line {
  margin: 0;
  color: rgba(156, 247, 202, 0.3);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition:
    color 140ms ease,
    opacity 140ms ease,
    text-shadow 140ms ease;
}

.boot-sequence-line.is-active {
  color: #c9ffd9;
  opacity: 1;
  text-shadow: 0 0 10px rgba(144, 255, 203, 0.16);
}

.boot-sequence.is-active .boot-sequence-shell {
  animation: boot-sequence-shell 1800ms linear forwards;
}

@keyframes boot-sequence-shell {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(6, 8, 10, 0.9), rgba(6, 8, 10, 0.72)) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.site-header-inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  gap: 18px;
  align-items: center;
}

.site-brand-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: rgba(223, 142, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(223, 142, 255, 0.16);
  opacity: 0.84;
}

.site-top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-top-dropdown {
  position: relative;
  display: inline-flex;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.site-top-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.site-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.018);
  color: #788086;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.site-top-link:hover,
.site-top-link:focus-visible {
  color: #ffffff;
  border-color: rgba(223, 142, 255, 0.12);
  background: rgba(223, 142, 255, 0.04);
  transform: translateY(-1px);
  outline: none;
}

.site-top-link.is-active {
  color: #fffae0;
  border-color: rgba(223, 142, 255, 0.18);
  background: rgba(223, 142, 255, 0.05);
}

.site-top-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  min-width: 188px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(223, 142, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 12, 15, 0.96), rgba(4, 6, 8, 0.98)),
    rgba(0, 0, 0, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 16px 28px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  z-index: 260;
}

.site-top-dropdown:hover .site-top-dropdown-menu,
.site-top-dropdown:focus-within .site-top-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-top-system-dropdown {
  position: relative;
  display: inline-flex;
}

.site-top-dropdown-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  color: #aeb6bb;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-top-dropdown-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  color: #aeb6bb;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-top-dropdown-link:hover,
.site-top-dropdown-link:focus-visible,
.site-top-dropdown-btn:hover,
.site-top-dropdown-btn:focus-visible {
  color: #ffffff;
  border-color: rgba(0, 238, 252, 0.22);
  background: rgba(0, 238, 252, 0.05);
  transform: translateX(1px);
  outline: none;
}

.site-top-dropdown-btn.is-active {
  color: #fffae0;
  border-color: rgba(0, 238, 252, 0.3);
  background: rgba(0, 238, 252, 0.08);
}

.site-top-dropdown-link-cta {
  position: relative;
  justify-content: center;
  margin-top: 4px;
  border: 1px solid rgba(0, 238, 252, 0.36);
  background: rgba(0, 238, 252, 0.08);
  color: #00eefc;
  min-height: 42px;
  padding-inline: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.site-top-dropdown-link-cta:hover,
.site-top-dropdown-link-cta:focus-visible {
  border-color: rgba(0, 238, 252, 0.42);
  background: rgba(5, 18, 24, 0.3);
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 16px rgba(0, 238, 252, 0.06);
  transform: translateY(-1px);
}

.site-top-link-button {
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid transparent;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.018);
  color: #788086;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.site-header-spacer {
  justify-self: end;
  width: 32px;
}

.site-utility-cluster {
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 12, 14, 0.84), rgba(4, 6, 8, 0.92)),
    rgba(0, 0, 0, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 14px rgba(0, 238, 252, 0.03);
  backdrop-filter: blur(12px);
}

.site-utility-cluster > button {
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #afb6ba;
  line-height: 1;
  vertical-align: middle;
}

.site-utility-cluster > button:hover,
.site-utility-cluster > button:focus-visible {
  color: #ffffff;
}

.site-utility-cluster .material-symbols-outlined {
  display: block;
  line-height: 1;
}

.site-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 620;
  min-width: min(340px, calc(100vw - 36px));
  max-width: 380px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 238, 252, 0.24);
  background:
    linear-gradient(180deg, rgba(14, 18, 22, 0.96), rgba(5, 8, 10, 0.98)),
    rgba(0, 0, 0, 0.95);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 32px rgba(0, 0, 0, 0.44);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-toast-kicker,
.site-toast-copy {
  margin: 0;
  text-transform: uppercase;
}

.site-toast-kicker {
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.site-toast-copy {
  margin-top: 6px;
  color: #d2d6d8;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.14em;
}

:where(
  .hero-title,
  .store-header,
  .store-admin-strip,
  .product-info,
  .product-badge,
  .product-page-header,
  .product-detail-info,
  .product-detail-card,
  .apparel-overview-copy,
  .apparel-section-head,
  .admin-page-header,
  .admin-page-panel,
  .account-page-header,
  .account-page-card,
  .account-page-empty,
  .cart-drawer-header,
  .cart-line-copy,
  .player-status-panel,
  .visualizer-header,
  .play-panel-meta
) {
  position: relative;
  z-index: 140;
  isolation: isolate;
}

:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a,
  button,
  label,
  li,
  span,
  strong,
  input,
  textarea,
  select,
  option,
  .product-name,
  .product-price,
  .store-title,
  .store-copy,
  .account-page-name,
  .account-page-meta,
  .admin-page-title,
  .product-page-title
) {
  position: relative;
  z-index: 141;
  isolation: isolate;
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
  text-shadow: none !important;
}

:where(
  .store-kicker,
  .store-copy,
  .product-copy,
  .product-label,
  .product-category-chip,
  .product-badge,
  .cart-line-meta,
  .cart-line-remove,
  .account-page-copy,
  .account-page-empty-copy,
  .account-block-kicker,
  .account-page-stat-grid span,
  .account-page-form-grid label,
  .admin-kicker,
  .admin-helper,
  .admin-feedback,
  .admin-label,
  .admin-product-copy,
  .admin-product-meta,
  .product-page-kicker,
  .product-detail-card-kicker,
  .product-detail-copy,
  .product-detail-feature-list,
  .product-detail-spec-grid span,
  .apparel-section-copy,
  .apparel-meta-row,
  .apparel-empty-copy,
  .player-status-kicker,
  .player-status-row,
  .visualizer-kicker,
  .visualizer-badge,
  .game-stat-label
) {
  position: relative;
  z-index: 142;
  isolation: isolate;
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
  text-shadow: none !important;
}

.crt-overlay {
  opacity: var(--system-crt-opacity, 0.16);
}

.retro-static {
  opacity: 0.035;
}

.static-noise {
  opacity: 0.01;
}

.account-page-body .crt-overlay {
  opacity: 0.1;
}

.account-page-body .retro-static {
  opacity: 0.024;
}

.account-page-body .static-noise {
  opacity: 0.007;
}

html {
  scroll-behavior: smooth;
}

.static-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.static-noise {
  z-index: 99;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
  animation: static-shift 0.1s steps(8) infinite;
}

.crt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.4) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.08), rgba(0, 255, 0, 0.04), rgba(0, 255, 0, 0.08));
  background-size: 100% 4px, 3px 100%;
  pointer-events: none;
  z-index: 100;
  opacity: 0.16;
}

body.system-crt-off .crt-overlay {
  opacity: 0;
}

body.system-crt-medium .crt-overlay {
  opacity: 0.16;
  background-size: 100% 4px, 3px 100%;
}

body.system-crt-high .crt-overlay {
  opacity: 0.38;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 44%, rgba(0, 0, 0, 0.62) 50%, rgba(18, 16, 16, 0) 56%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.14), rgba(0, 255, 0, 0.06), rgba(0, 180, 255, 0.14));
  background-size: 100% 3px, 2px 100%;
}

.vhs-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 95;
  opacity: 0.08;
  background: url("https://www.transparenttextures.com/patterns/stardust.png");
  animation: noise-anim 0.2s infinite steps(2);
}

.retro-static {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 98;
  opacity: 0.09;
  background-image:
    repeating-radial-gradient(rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1) 0 1px,
      rgba(0, 0, 0, 0.14) 1px 3px,
      transparent 3px 6px
    );
  background-size: 160px 160px, 100% 6px;
  mix-blend-mode: screen;
  animation: static-flicker 160ms steps(3) infinite, static-drift 6s linear infinite;
}

body.system-crt-off .retro-static,
body.system-crt-off .vhs-noise {
  opacity: 0;
}

body.system-crt-medium .retro-static {
  opacity: 0.09;
}

body.system-crt-high .retro-static {
  opacity: 0.18;
  background-size: 120px 120px, 100% 4px;
}

.site-bg-gif {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 12;
  opacity: calc(0.032 * var(--bg-gif-visibility, 1) * var(--bg-visual-multiplier, 1));
  background-image: var(--bg-gif-image, url("https://i.pinimg.com/originals/6d/ab/0f/6dab0ffdd667eb9abf3f48cbb8ea0ca7.gif"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 120ms linear;
}

.hero-visual-hover-shell {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 170;
  background: #0e0e0e;
  overflow: hidden;
  transition: opacity 120ms ease;
}

.hero-visual-hover-shell.is-active {
  opacity: 1;
}

.hero-visual-hover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0e0e0e;
  filter: brightness(1.06) saturate(1.06) drop-shadow(0 0 18px rgba(0, 0, 0, 0.35));
}

.dither-pattern {
  background-image: radial-gradient(#262626 1px, transparent 1px);
  background-size: 4px 4px;
}

.ghost-border {
  box-shadow:
    3px 3px 0 0 rgba(0, 238, 252, 0.3),
    -3px -3px 0 0 rgba(223, 142, 255, 0.3);
}

.operator-mark-shell {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 1px solid rgba(72, 72, 71, 0.9);
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 238, 252, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(32, 34, 38, 0.98), rgba(16, 17, 20, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 14px rgba(0, 238, 252, 0.1);
}

.operator-mark-shell::before,
.operator-mark-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.operator-mark-shell::before {
  border: 1px solid rgba(223, 142, 255, 0.18);
  transform: scale(1.08);
  opacity: 0.7;
  animation: operator-mark-frame 2.6s ease-in-out infinite;
}

.operator-mark-shell::after {
  left: 6px;
  right: 6px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 238, 252, 0.95), transparent);
  opacity: 0.7;
  animation: operator-mark-scan 1.8s linear infinite;
}

.operator-mark-glyph {
  display: block;
  color: #fffae0;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 6px rgba(255, 250, 224, 0.35),
    0 0 14px rgba(0, 238, 252, 0.22),
    0 0 22px rgba(223, 142, 255, 0.18);
  animation: operator-mark-flicker 2.2s steps(2, end) infinite;
}

.hero-side-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 84rem;
  z-index: 180;
}

.hero-side-orb {
  justify-self: center;
}

.hero-side-panel {
  position: relative;
  width: min(100%, 15.75rem);
  justify-self: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  clip-path: none;
  z-index: 180;
}

.hero-side-label-stack {
  position: absolute;
  top: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  pointer-events: none;
  z-index: 183;
}

.hero-side-label-stack-left {
  left: -3rem;
}

.hero-side-label-stack-right {
  right: -3rem;
}

.hero-side-jp-tag {
  color: rgba(255, 250, 224, 0.96);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.95;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 0 14px rgba(255, 250, 224, 0.08);
  white-space: nowrap;
}

.hero-side-en-tag {
  display: block;
  color: #df8eff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(223, 142, 255, 0.55),
    0 0 22px rgba(223, 142, 255, 0.28);
}

.hero-side-panel::before {
  content: "";
  position: absolute;
  inset: -0.45rem;
  background: rgba(14, 14, 14, 0);
  pointer-events: none;
  transition: background 160ms ease;
  z-index: 0;
}

.hero-side-panel:hover::before,
.hero-side-panel:focus-within::before {
  background: rgba(14, 14, 14, 0.98);
}

.hero-side-copy,
.hero-side-visual {
  position: relative;
  z-index: 1;
}

.hero-side-visual {
  position: relative;
  min-height: 9.9rem;
  background: transparent;
  border: 0;
  overflow: visible;
  clip-path: none;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
  isolation: isolate;
  z-index: 181;
}

.hero-side-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0e0e0e;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 181;
  opacity: 0;
}

.hero-side-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 9.9rem;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent;
  opacity: 0.96;
  filter: brightness(0.9) saturate(0.96) drop-shadow(0 0 18px rgba(0, 0, 0, 0.35));
  position: relative;
  z-index: 182;
  transition: filter 180ms ease, opacity 180ms ease;
}

.hero-side-visual:hover,
.hero-side-visual:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-side-visual:hover::before,
.hero-side-visual:focus-visible::before {
  opacity: 1;
}

.hero-side-visual:hover .hero-side-image,
.hero-side-visual:focus-visible .hero-side-image {
  opacity: 1;
  filter: brightness(1.06) saturate(1.06) drop-shadow(0 0 18px rgba(0, 0, 0, 0.35));
}

.hero-side-copy {
  margin-top: 0.45rem;
  text-align: center;
}

.hero-side-title {
  margin: 0;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.06);
}

.hero-side-meta {
  margin: 0.45rem 0 0;
  color: #b6b6b6;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (min-width: 960px) {
  .hero-side-grid {
    display: flex;
    justify-content: center;
    min-height: 16rem;
  }

  .hero-side-panel-left {
    position: absolute;
    top: 50%;
    right: calc(50% + 12rem);
    transform: translateY(-44%);
  }

  .hero-side-panel-right {
    position: absolute;
    top: 50%;
    left: calc(50% + 12rem);
    transform: translateY(-44%);
  }
}

.start-link-btn {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  transition:
    color 160ms ease,
    text-shadow 160ms ease;
}

.start-link-btn:hover,
.start-link-btn:focus-visible {
  color: #00eefc;
  text-shadow: 0 0 10px rgba(0, 238, 252, 0.35);
  outline: none;
}

.poly-orb {
  filter: drop-shadow(0 0 20px rgba(223, 142, 255, 0.6));
  perspective: 1000px;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.material-symbols-outlined.is-filled {
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

.parallax-layer {
  transition: transform 0.1s ease-out;
  transform: translate(0, 0);
  will-change: transform;
}

.play-overlay {
  display: inline-block;
  min-width: 170px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 238, 252, 0.18);
  background: rgba(5, 12, 16, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  isolation: isolate;
  pointer-events: auto;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.play-overlay:hover,
.play-overlay:focus-visible,
.play-overlay.is-open {
  border-color: rgba(0, 238, 252, 0.5);
  background: rgba(5, 18, 24, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 22px rgba(0, 238, 252, 0.09);
  outline: none;
}

.play-overlay-content {
  position: relative;
  z-index: 2;
}

.play-overlay::before,
.play-overlay::after {
  content: "";
  position: absolute;
  inset: -8px;
  pointer-events: none;
  opacity: 0;
}

.play-overlay::before {
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.8) 0 2px,
      rgba(0, 0, 0, 0.25) 2px 4px
    ),
    linear-gradient(
      90deg,
      rgba(255, 0, 92, 0.28),
      rgba(255, 255, 255, 0.16),
      rgba(0, 238, 252, 0.3)
    );
  mix-blend-mode: screen;
}

.play-overlay::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 90px 90px;
  mix-blend-mode: screen;
}

.play-overlay.channel-scroll::before {
  animation: play-channel-lines 1s steps(8) forwards;
}

.play-overlay.channel-scroll::after {
  animation: play-channel-noise 1s steps(10) forwards;
}

.play-overlay.channel-scroll {
  animation: play-channel-shell 1s steps(10) forwards;
}

.play-overlay.channel-scroll .play-overlay-content {
  animation: play-channel-content 1s steps(8) forwards;
}

.nav-rail {
  background:
    linear-gradient(180deg, rgba(34, 20, 36, 0.97), rgba(15, 16, 22, 0.98) 34%, rgba(9, 10, 14, 0.99)),
    rgba(10, 10, 12, 0.98);
  transform: translateX(-100%);
  overflow: hidden;
  border-right-width: 1px !important;
  border-right-color: rgba(223, 142, 255, 0.22) !important;
  box-shadow:
    1px 0 0 0 rgba(223, 142, 255, 0.18),
    14px 0 44px rgba(0, 0, 0, 0.28);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.nav-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 28%);
  opacity: 0.95;
}

.nav-rail.is-collapsed {
  border-right-color: transparent;
  box-shadow: none;
}

.nav-rail:not(.is-collapsed) {
  transform: translateX(0);
}

.nav-rail-toggle {
  position: fixed;
  left: 0;
  top: 260px;
  z-index: 45;
  width: 42px;
  min-height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(223, 142, 255, 0.24);
  border-left: 0;
  background:
    linear-gradient(180deg, rgba(44, 24, 46, 0.97), rgba(14, 15, 20, 0.98)),
    rgba(0, 0, 0, 0.92);
  color: #df8eff;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    6px 6px 0 rgba(0, 0, 0, 0.26),
    0 0 18px rgba(223, 142, 255, 0.08);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    color 180ms ease,
    left 220ms ease;
}

.nav-rail-toggle:hover,
.nav-rail-toggle:focus-visible,
.nav-rail-toggle.is-open {
  border-color: rgba(223, 142, 255, 0.42);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 22px rgba(223, 142, 255, 0.16);
  outline: none;
}

.nav-rail-toggle.is-open {
  left: 256px;
}

.nav-rail-toggle-icon {
  font-size: 29px;
  transition: transform 180ms ease;
}

.nav-rail-toggle.is-open .nav-rail-toggle-icon {
  transform: rotate(180deg);
}

.nav-main {
  transition: margin-left 220ms ease;
}

.nav-main.is-nav-collapsed .play-overlay {
  left: 72px;
}

.nav-main.is-nav-collapsed .system-panel {
  left: 72px;
}

@media (min-width: 1024px) {
  .nav-main:not(.is-nav-collapsed) {
    margin-left: 16rem;
  }
}

.hero-title {
  position: relative;
  display: inline-block;
  isolation: isolate;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(223, 142, 255, 0.36),
    -1px 0 0 rgba(var(--theme-secondary-rgb), 0.14),
    1px 0 0 rgba(223, 142, 255, 0.14);
  animation: hero-title-main-flicker 5.8s steps(1, end) infinite;
  transition:
    color 160ms ease,
    filter 160ms ease,
    text-shadow 160ms ease;
}

.hero-title::before,
.hero-title::after {
  content: attr(data-glitch);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: screen;
  will-change: transform, opacity, clip-path;
}

.hero-title::before {
  color: var(--theme-secondary);
  text-shadow:
    -1px 0 0 rgba(var(--theme-secondary-rgb), 0.74),
    0 0 22px rgba(var(--theme-secondary-rgb), 0.3);
  filter: blur(0.28px);
  transform: translate3d(-2px, 0, 0);
  animation: hero-title-glitch-cyan 3.1s ease-in-out infinite;
}

.hero-title::after {
  color: #df8eff;
  text-shadow:
    1px 0 0 rgba(223, 142, 255, 0.76),
    0 0 22px rgba(223, 142, 255, 0.3);
  filter: blur(0.28px);
  transform: translate3d(2px, 0, 0);
  animation: hero-title-glitch-magenta 3.8s ease-in-out infinite;
}

.hero-char {
  display: inline-block;
  pointer-events: auto;
  position: relative;
  transition:
    color 140ms ease,
    filter 140ms ease,
    text-shadow 140ms ease,
    transform 140ms ease,
    opacity 140ms ease;
}

.hero-char:hover {
  color: #f0adff;
  filter: brightness(1.2);
  text-shadow:
    0 0 12px rgba(223, 142, 255, 0.82),
    0 0 22px rgba(223, 142, 255, 0.46);
  transform: translateY(-1px) scale(1.01);
}

.hero-char.scroll-bright {
  color: #f0adff;
  filter: brightness(1.2);
  opacity: 1;
  text-shadow:
    0 0 12px rgba(223, 142, 255, 0.82),
    0 0 22px rgba(223, 142, 255, 0.46);
  transform: translateY(-1px) scale(1.01);
}

@keyframes hero-title-glitch-cyan {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(-2px, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  8% {
    opacity: 0.28;
    transform: translate3d(-2.3px, 0.15px, 0);
  }

  10% {
    opacity: 0.48;
    transform: translate3d(-3.7px, -0.35px, 0);
    clip-path: inset(0 0 58% 0);
  }

  11% {
    opacity: 0.32;
    transform: translate3d(1.7px, 0.1px, 0);
    clip-path: inset(62% 0 4% 0);
  }

  12% {
    opacity: 0.24;
    transform: translate3d(-2px, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  38% {
    opacity: 0.19;
    transform: translate3d(-1.4px, -0.1px, 0);
  }

  40% {
    opacity: 0.42;
    transform: translate3d(-3.3px, 0.25px, 0);
    clip-path: inset(34% 0 30% 0);
  }

  41% {
    opacity: 0.28;
    transform: translate3d(1.2px, -0.18px, 0);
    clip-path: inset(0 0 60% 0);
  }

  42% {
    opacity: 0.24;
    transform: translate3d(-2px, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  72% {
    opacity: 0.18;
    transform: translate3d(-1.45px, 0.15px, 0);
  }

  73% {
    opacity: 0.4;
    transform: translate3d(-3px, -0.3px, 0);
    clip-path: inset(14% 0 46% 0);
  }

  74% {
    opacity: 0.24;
    transform: translate3d(-2px, 0, 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-title-glitch-magenta {
  0%,
  100% {
    opacity: 0.2;
    transform: translate3d(2px, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  16% {
    opacity: 0.28;
    transform: translate3d(2.3px, 0, 0);
  }

  18% {
    opacity: 0.44;
    transform: translate3d(3.7px, 0.25px, 0);
    clip-path: inset(58% 0 0 0);
  }

  19% {
    opacity: 0.28;
    transform: translate3d(-1.5px, 0.45px, 0);
    clip-path: inset(0 0 62% 0);
  }

  20% {
    opacity: 0.2;
    transform: translate3d(2px, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  52% {
    opacity: 0.16;
    transform: translate3d(1.35px, -0.18px, 0);
  }

  54% {
    opacity: 0.4;
    transform: translate3d(3.4px, 0, 0);
    clip-path: inset(24% 0 40% 0);
  }

  55% {
    opacity: 0.28;
    transform: translate3d(-1.2px, 0.25px, 0);
    clip-path: inset(66% 0 0 0);
  }

  56% {
    opacity: 0.2;
    transform: translate3d(2px, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  82% {
    opacity: 0.18;
    transform: translate3d(1.55px, 0.1px, 0);
  }

  83% {
    opacity: 0.38;
    transform: translate3d(3.1px, -0.2px, 0);
    clip-path: inset(10% 0 48% 0);
  }

  84% {
    opacity: 0.2;
    transform: translate3d(2px, 0, 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-title-main-flicker {
  0%,
  100% {
    filter: saturate(1) brightness(1);
    text-shadow:
      0 0 18px rgba(223, 142, 255, 0.36),
      -1px 0 0 rgba(var(--theme-secondary-rgb), 0.14),
      1px 0 0 rgba(223, 142, 255, 0.14);
  }

  9% {
    filter: saturate(1.02) brightness(1.02);
  }

  10% {
    filter: saturate(1.12) brightness(1.1);
    text-shadow:
      0 0 24px rgba(223, 142, 255, 0.46),
      -2px 0 0 rgba(var(--theme-secondary-rgb), 0.22),
      2px 0 0 rgba(223, 142, 255, 0.22);
  }

  11% {
    filter: saturate(1.01) brightness(1.01);
  }

  39% {
    filter: saturate(1.03) brightness(1.03);
  }

  40% {
    filter: saturate(1.14) brightness(1.1);
    text-shadow:
      0 0 24px rgba(223, 142, 255, 0.46),
      -2px 0 0 rgba(var(--theme-secondary-rgb), 0.22),
      2px 0 0 rgba(223, 142, 255, 0.22);
  }

  41% {
    filter: saturate(1.02) brightness(1.01);
  }

  73% {
    filter: saturate(1.04) brightness(1.03);
  }

  74% {
    filter: saturate(1.16) brightness(1.12);
    text-shadow:
      0 0 26px rgba(223, 142, 255, 0.5),
      -2px 0 0 rgba(var(--theme-secondary-rgb), 0.24),
      2px 0 0 rgba(223, 142, 255, 0.24);
  }

  75% {
    filter: saturate(1.02) brightness(1.01);
  }
}

.home-section {
  position: relative;
  z-index: 240;
}

.home-section + .home-section {
  margin-top: 4.5rem;
}

.home-section-head {
  margin-bottom: 2.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px 28px;
  align-items: end;
}

.home-section-head > * {
  min-width: 0;
}

.home-section-head-compact {
  gap: 14px 20px;
  margin-bottom: 1.6rem;
}

.home-section-tight {
  --section-tight-offset: 0;
}

.surface-panel,
.catalog-link-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 17, 21, 0.9), rgba(6, 8, 11, 0.96)),
    rgba(0, 0, 0, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 24px rgba(0, 238, 252, 0.035);
}

.surface-panel-subtle {
  background:
    linear-gradient(180deg, rgba(16, 18, 22, 0.82), rgba(8, 10, 13, 0.92)),
    rgba(0, 0, 0, 0.76);
}

.surface-panel-accent {
  border-color: rgba(223, 142, 255, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 26px rgba(223, 142, 255, 0.055);
}

.catalog-link-card {
  display: block;
  min-height: 100%;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.catalog-link-card:hover,
.catalog-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 238, 252, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 18px rgba(0, 238, 252, 0.06);
  outline: none;
}

.signal-banner {
  border: 1px solid rgba(223, 142, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(17, 13, 21, 0.96), rgba(7, 9, 11, 0.96)),
    rgba(0, 0, 0, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 24px rgba(223, 142, 255, 0.05);
}

.store-shell {
  position: relative;
  z-index: 300;
  border: 1px solid rgba(0, 238, 252, 0.14);
  background:
    linear-gradient(180deg, rgba(12, 16, 19, 0.88), rgba(5, 8, 10, 0.94)),
    rgba(0, 0, 0, 0.8);
  padding: 24px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 26px rgba(0, 238, 252, 0.035);
}

.store-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 19, 0.98), rgba(5, 8, 10, 0.99)),
    rgba(0, 0, 0, 0.98);
  z-index: 0;
  pointer-events: none;
}

.store-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, transparent 44%, rgba(0, 238, 252, 0.1) 50%, transparent 56%, transparent 100%);
  background-size: 220% 100%;
  mix-blend-mode: screen;
  opacity: 0.18;
  z-index: 240;
  pointer-events: none;
  animation: module-sweep 8.2s linear infinite;
}

.featured-drop-shell {
  position: relative;
  z-index: 300;
  border: 1px solid rgba(223, 142, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(21, 12, 27, 0.88), rgba(6, 9, 12, 0.96)),
    rgba(0, 0, 0, 0.88);
  padding: 24px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 30px rgba(223, 142, 255, 0.055);
}

.featured-drop-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0%, transparent 46%, rgba(223, 142, 255, 0.12) 50%, transparent 54%, transparent 100%);
  background-size: 220% 100%;
  mix-blend-mode: screen;
  opacity: 0.16;
  pointer-events: none;
  animation: module-sweep 8.8s linear infinite;
}

.featured-drop-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.featured-drop-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
}

.featured-drop-main,
.featured-support-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 19, 24, 0.94), rgba(6, 8, 11, 0.98)),
    rgba(0, 0, 0, 0.88);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.featured-drop-main:hover,
.featured-drop-main:focus-visible,
.featured-support-card:hover,
.featured-support-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 238, 252, 0.24);
  box-shadow: 0 0 16px rgba(0, 238, 252, 0.06);
  outline: none;
}

.featured-drop-main {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  min-height: 360px;
}

.featured-drop-visual {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.1), rgba(0, 238, 252, 0.03)),
    rgba(8, 8, 8, 0.96);
}

.featured-drop-image,
.featured-support-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.featured-drop-copy {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
}

.featured-drop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.featured-drop-meta span,
.featured-support-label {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #00eefc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-drop-title,
.featured-support-title {
  margin: 0;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-drop-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.featured-drop-note,
.featured-drop-log,
.featured-support-text {
  margin: 0;
  color: #c1c1c1;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-drop-log {
  color: #fffae0;
}

.featured-drop-support-grid {
  display: grid;
  gap: 18px;
}

.featured-support-card {
  min-height: 171px;
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
}

.featured-support-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 16px;
}

.store-header {
  position: relative;
  z-index: 241;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.store-kicker {
  margin: 0 0 8px;
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.store-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 2vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-copy {
  max-width: 460px;
  margin: 0;
  color: #a9b1b5;
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-admin-strip {
  position: relative;
  z-index: 241;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
  color: #b7b7b7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.store-admin-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.store-admin-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 238, 252, 0.36);
  background: rgba(0, 238, 252, 0.08);
  color: #00eefc;
  padding: 10px 14px;
  min-height: 42px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 160ms ease,
    color 180ms ease,
    opacity 160ms ease;
}

.store-admin-link::before,
.store-admin-link::after {
  content: "";
  position: absolute;
  inset: -8px;
  pointer-events: none;
  opacity: 0;
}

.store-admin-link:hover,
.store-admin-link:focus-visible {
  border-color: rgba(0, 238, 252, 0.42);
  background: rgba(5, 18, 24, 0.3);
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 16px rgba(0, 238, 252, 0.06);
  transform: translateY(-1px);
  outline: none;
}

.store-admin-link:hover::before,
.store-admin-link:focus-visible::before {
  opacity: 0;
}

.store-admin-link:hover::after,
.store-admin-link:focus-visible::after {
  opacity: 0;
}

.store-admin-link:active {
  transform: translateY(1px) scale(0.985);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 12px rgba(0, 238, 252, 0.07);
}

.store-admin-link.is-active-filter {
  border-color: rgba(223, 142, 255, 0.5);
  background: rgba(223, 142, 255, 0.14);
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 16px rgba(223, 142, 255, 0.12);
}

.product-category-chip {
  justify-self: start;
  padding: 4px 8px;
  border: 1px solid rgba(0, 238, 252, 0.24);
  background: rgba(0, 238, 252, 0.06);
  color: #00eefc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-kicker-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.product-inline-badge,
.product-submeta span,
.product-detail-meta-strip span,
.product-detail-size-chip {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #00eefc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-submeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-price-label {
  color: #7f8a8f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-grid {
  position: relative;
  z-index: 241;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.product-grid.is-switching {
  opacity: 0.18;
  transform: translateY(10px);
  filter: blur(1px) saturate(0.86);
}

.product-grid.is-entering {
  animation: home-grid-enter 300ms ease;
}

@keyframes home-grid-enter {
  from {
    opacity: 0.22;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.status-bar-fill {
  height: 100%;
  transform-origin: left center;
  will-change: width, opacity, filter;
}

.status-bar-fill-primary {
  width: 64%;
  background: linear-gradient(90deg, rgba(223, 142, 255, 0.88), rgba(223, 142, 255, 1));
  box-shadow: 0 0 10px rgba(223, 142, 255, 0.28);
  animation: status-bar-primary 4.8s ease-in-out infinite;
}

.status-bar-fill-secondary {
  width: 89%;
  background: linear-gradient(90deg, rgba(0, 238, 252, 0.82), rgba(0, 238, 252, 1));
  box-shadow: 0 0 10px rgba(0, 238, 252, 0.22);
  animation: status-bar-secondary 5.6s ease-in-out infinite;
}

.status-bar-fill-tertiary {
  width: 12%;
  background: linear-gradient(90deg, rgba(255, 250, 224, 0.82), rgba(255, 250, 224, 1));
  box-shadow: 0 0 10px rgba(255, 250, 224, 0.18);
  animation: status-bar-tertiary 3.9s ease-in-out infinite;
}

.product-card {
  position: relative;
  isolation: isolate;
  z-index: 302;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.38);
  display: block;
  overflow: hidden;
  cursor: pointer;
  min-height: 446px;
  --product-info-peek: 154px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  z-index: 320;
  transform: translateY(-2px);
  border-color: rgba(223, 142, 255, 0.28);
  box-shadow: 0 0 14px rgba(223, 142, 255, 0.06);
  outline: none;
}

.product-card:hover,
.product-card:focus-visible,
.product-card:hover .product-info,
.product-card:focus-visible .product-info,
.product-card:focus-within .product-info {
  background: #060708;
}

.product-card:hover .product-visual,
.product-card:focus-visible .product-visual,
.product-card:focus-within .product-visual {
  background: #0b0b0b;
}

.product-card:hover .product-image,
.product-card:focus-visible .product-image,
.product-card:focus-within .product-image {
  filter: none;
}

.product-visual {
  position: relative;
  min-height: 446px;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.03)),
    rgba(10, 11, 12, 0.98);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #00eefc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0.9;
}

.product-image {
  position: relative;
  z-index: 140;
  isolation: isolate;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.96);
}

.product-page-shell {
  min-height: 100vh;
  padding: 118px 20px 60px;
  background:
    radial-gradient(circle at top, rgba(223, 142, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(0, 238, 252, 0.04), transparent 24%),
    #080909;
}

.product-page-header {
  width: min(1160px, 100%);
  margin: 0 auto 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.product-page-back,
.product-detail-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(0, 238, 252, 0.3);
  background: rgba(0, 238, 252, 0.06);
  color: #00eefc;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-page-brand {
  text-align: right;
}

.product-page-kicker {
  margin: 0 0 6px;
  color: #df8eff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.product-page-title {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.apparel-page-shell {
  min-height: 100vh;
  padding: 118px 20px 70px;
  background:
    radial-gradient(circle at top left, rgba(223, 142, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(0, 238, 252, 0.05), transparent 24%),
    #070909;
}

.apparel-page-header {
  align-items: end;
  margin-bottom: 20px;
}

.apparel-page-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.apparel-page-copy {
  max-width: 640px;
  margin: 10px 0 0;
  color: #b9c4c7;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  z-index: 240;
  margin-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 13, 17, 0.96), rgba(6, 8, 11, 0.98)),
    rgba(0, 0, 0, 0.96);
}

.site-footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 24px;
  align-items: end;
}

.site-footer-kicker {
  margin: 0 0 8px;
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-footer-copy {
  max-width: 420px;
  margin: 0;
  color: #a3aaae;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.site-footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: #c7ced2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.site-footer-link:hover,
.site-footer-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 238, 252, 0.28);
  background: rgba(0, 238, 252, 0.05);
  color: #ffffff;
  outline: none;
}

.site-footer-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  color: #7f878c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.policy-page-shell {
  min-height: 100vh;
  padding: 118px 20px 60px;
  background:
    radial-gradient(circle at top, rgba(0, 238, 252, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(223, 142, 255, 0.06), transparent 30%),
    #07090c;
}

.policy-page-header,
.policy-page-card {
  width: min(980px, 100%);
  margin-inline: auto;
}

.policy-page-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.policy-page-title {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-page-copy {
  max-width: 720px;
  margin: 0;
  color: #b4b4b4;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-page-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 18, 22, 0.95), rgba(4, 7, 11, 0.98)),
    rgba(0, 0, 0, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(0, 238, 252, 0.04);
  padding: 24px;
  display: grid;
  gap: 18px;
}

.policy-section {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-section-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-page-card p {
  margin: 0;
  color: #b4b4b4;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.policy-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: #b4b4b4;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.policy-emphasis {
  color: #fffae0;
}

.apparel-page-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: end;
}

.apparel-overview-panel,
.apparel-category-section {
  width: min(1160px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 18, 22, 0.95), rgba(4, 7, 11, 0.98)),
    rgba(0, 0, 0, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(0, 238, 252, 0.04);
}

.apparel-overview-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 380px);
  gap: 20px;
  padding: 20px 22px;
  margin-bottom: 22px;
}

.apparel-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.apparel-stat-card {
  padding: 14px 12px;
  border: 1px solid rgba(0, 238, 252, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.apparel-stat-value {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: 0.08em;
}

.apparel-category-section {
  padding: 22px 22px 24px;
}

.apparel-category-section + .apparel-category-section {
  margin-top: 22px;
}

.apparel-category-section {
  scroll-margin-top: 110px;
}

.apparel-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.apparel-section-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.apparel-section-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.apparel-section-count {
  padding: 6px 9px;
  border: 1px solid rgba(0, 238, 252, 0.18);
  background: rgba(0, 238, 252, 0.05);
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.apparel-section-copy,
.apparel-meta-row,
.apparel-empty-copy {
  margin: 0;
  color: #b7b7b7;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.apparel-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.apparel-product-card {
  min-height: 100%;
}

.apparel-grid {
  min-height: 160px;
  gap: 20px;
}

.apparel-view-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apparel-card-config {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.apparel-empty-state {
  display: grid;
  place-items: center;
  min-height: 140px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.product-detail-layout {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 24px;
}

.product-detail-gallery,
.product-detail-info,
.product-detail-empty {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 18, 22, 0.95), rgba(4, 7, 11, 0.98)),
    rgba(0, 0, 0, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(0, 238, 252, 0.04);
}

.product-detail-gallery,
.product-detail-info {
  padding: 18px;
}

.product-detail-gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
}

.product-detail-gallery-copy,
.product-detail-copy,
.product-detail-empty-copy {
  margin: 0;
  color: #b7b7b7;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-purchase-row {
  display: grid;
  grid-template-columns: auto minmax(120px, 160px) minmax(180px, 1fr);
  gap: 10px;
  align-items: center;
}

.product-detail-feedback {
  min-height: 16px;
  margin-top: -2px;
}

.product-detail-size-select,
.product-detail-add-btn {
  min-height: 42px;
}

.product-detail-gallery-grid {
  display: grid;
  gap: 12px;
}

.product-detail-panel {
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.02)),
    rgba(11, 11, 11, 0.95);
  display: grid;
  place-items: center;
  position: relative;
}

.product-detail-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 0, 92, 0.04), transparent 30%, transparent 70%, rgba(0, 238, 252, 0.04)),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0 1px, rgba(255, 255, 255, 0) 1px 4px);
  opacity: 0.3;
}

.product-detail-panel-main {
  min-height: 520px;
}

.product-detail-image {
  position: relative;
  z-index: 140;
  isolation: isolate;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}

.product-detail-zoom-shell {
  overflow: hidden;
}

.product-detail-zoom-shell:hover .product-detail-image,
.product-detail-zoom-shell:focus-within .product-detail-image {
  transform: scale(1.08);
}

.product-detail-main-image {
  transition: transform 220ms ease;
}

.product-detail-gallery-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-detail-thumb {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.02)),
    rgba(11, 11, 11, 0.95);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.product-detail-thumb:hover,
.product-detail-thumb:focus-visible,
.product-detail-thumb.is-active {
  border-color: rgba(0, 238, 252, 0.32);
  transform: translateY(-1px);
  outline: none;
}

.product-detail-thumb-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-detail-image-top {
  object-position: center top;
}

.product-detail-image-bottom {
  object-position: center bottom;
}

.product-detail-shirt {
  transform: scale(1.3);
}

.product-detail-info {
  display: grid;
  gap: 14px;
  align-content: start;
}

.product-detail-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-meta-strip span,
.product-detail-size-chip {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #00eefc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-detail-name {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-price {
  margin: 0;
  color: #fffae0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-detail-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 10px;
}

.product-detail-card-kicker {
  margin: 0;
  color: #df8eff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.product-detail-story-card {
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.product-detail-story-copy {
  margin: 0;
  color: #fffae0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-story-log {
  display: grid;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail-story-log span {
  color: #00eefc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-detail-story-log p {
  margin: 0;
  color: #c3c3c3;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-feature-list {
  margin: 0;
  padding-left: 18px;
  color: #c6c6c6;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-detail-spec-grid div {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 6px;
}

.product-detail-spec-grid span {
  color: #8f8f8f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-detail-spec-grid strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
}

.product-detail-policy-card {
  border-color: rgba(0, 238, 252, 0.18);
  background:
    linear-gradient(180deg, rgba(0, 238, 252, 0.06), rgba(223, 142, 255, 0.04)),
    rgba(255, 255, 255, 0.02);
}

.product-detail-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail-policy-links a {
  border: 1px solid rgba(var(--theme-secondary-rgb), 0.3);
  color: var(--theme-secondary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 8px 10px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-detail-policy-links a:hover,
.product-detail-policy-links a:focus-visible {
  background: var(--theme-secondary);
  color: #050509;
  outline: none;
  transform: translateY(-1px);
}

.product-detail-empty {
  width: min(680px, 100%);
  margin: 40px auto 0;
  padding: 24px;
  text-align: center;
}

.product-detail-empty-title,
.product-detail-loading {
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-page-inline-back {
  justify-self: center;
  margin-top: 18px;
}

.product-detail-loading {
  width: min(1160px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: #bdbdbd;
}

.admin-page-shell {
  min-height: 100vh;
  padding: 118px 20px 60px;
  background:
    radial-gradient(circle at top, rgba(0, 238, 252, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(223, 142, 255, 0.06), transparent 30%),
    #07090c;
}

.admin-page-header,
.admin-page-login,
.admin-page-dashboard {
  width: min(1240px, 100%);
  margin-inline: auto;
}

.admin-page-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.admin-page-title {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-page-copy {
  max-width: 720px;
  margin: 0;
  color: #b4b4b4;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-page-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 18, 22, 0.95), rgba(4, 7, 11, 0.98)),
    rgba(0, 0, 0, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(0, 238, 252, 0.04);
  padding: 18px;
}

.admin-page-login-panel {
  max-width: 520px;
}

.admin-page-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.admin-page-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  flex: 1;
}

.admin-page-stat-card {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 8px;
}

.admin-page-stat-value {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-page-layout {
  display: grid;
  grid-template-columns: minmax(340px, 480px) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.admin-backend-panel {
  margin-bottom: 18px;
}

.admin-backend-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-page-section-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
}

.admin-section-title {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-textarea-compact {
  min-height: 88px;
}

.admin-editor-stack {
  display: grid;
  gap: 18px;
}

.admin-editor-group {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 12px;
}

.admin-editor-group-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}

.admin-form-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.admin-span-full {
  grid-column: 1 / -1;
}

.admin-raw-shell {
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
}

.admin-raw-summary {
  cursor: pointer;
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  list-style: none;
}

.admin-raw-summary::-webkit-details-marker {
  display: none;
}

.admin-preview {
  min-height: 100%;
  display: grid;
  align-items: start;
}

.admin-preview-layout {
  display: grid;
  gap: 24px;
}

.admin-preview-pane {
  display: none;
}

.admin-preview-pane.is-active {
  display: block;
}

.admin-preview-label {
  margin: 0 0 10px;
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.admin-preview-card {
  max-width: 420px;
}

.admin-preview-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #b3b3b3;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-preview-badge-stack,
.admin-library-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-preview-badge-stack {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 145;
}

.admin-preview-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 18, 22, 0.95), rgba(4, 7, 11, 0.98)),
    rgba(0, 0, 0, 0.88);
}

.admin-preview-detail-gallery,
.admin-preview-detail-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.admin-preview-detail-main,
.admin-preview-detail-thumb {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.02)),
    rgba(11, 11, 11, 0.95);
}

.admin-preview-detail-main {
  min-height: 340px;
}

.admin-preview-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-preview-detail-thumb {
  min-height: 74px;
}

.admin-preview-detail-specs {
  display: grid;
  gap: 8px;
}

.admin-preview-detail-specs span {
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
  color: #c6c6c6;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-gallery-manager {
  display: grid;
  gap: 10px;
}

.admin-gallery-add-row,
.admin-upload-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.admin-gallery-add-row .admin-input {
  flex: 1 1 260px;
}

.admin-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.admin-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(var(--theme-secondary-rgb), 0.34);
  background: rgba(var(--theme-secondary-rgb), 0.08);
  color: var(--theme-secondary);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 0 14px;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.admin-upload-btn:hover,
.admin-upload-btn:focus-within {
  border-color: rgba(var(--theme-secondary-rgb), 0.8);
  background: rgba(var(--theme-secondary-rgb), 0.16);
  box-shadow: 0 0 18px rgba(var(--theme-secondary-rgb), 0.16);
  transform: translateY(-1px);
}

.admin-gallery-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  cursor: grab;
  transition: border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.admin-gallery-row.is-primary {
  border-color: rgba(var(--theme-secondary-rgb), 0.54);
  background: rgba(var(--theme-secondary-rgb), 0.08);
}

.admin-gallery-row.is-dragging {
  cursor: grabbing;
  opacity: 0.46;
  transform: scale(0.98);
}

.admin-gallery-row.is-drop-target {
  border-color: rgba(var(--theme-secondary-rgb), 0.86);
  box-shadow: 0 0 0 1px rgba(var(--theme-secondary-rgb), 0.38), 0 0 24px rgba(var(--theme-secondary-rgb), 0.18);
}

.admin-gallery-thumb {
  overflow: hidden;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
}

.admin-gallery-thumb img {
  width: 100%;
  height: 62px;
  display: block;
  object-fit: cover;
}

.admin-gallery-copy {
  display: grid;
  gap: 6px;
}

.admin-gallery-title,
.admin-gallery-path {
  margin: 0;
  text-transform: uppercase;
}

.admin-gallery-title {
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.admin-gallery-path {
  color: #9b9b9b;
  font-size: 10px;
  letter-spacing: 0.12em;
  word-break: break-all;
}

.admin-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-preview-tab {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #a7a7a7;
  padding: 8px 12px;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-preview-tab.is-active {
  border-color: rgba(0, 238, 252, 0.34);
  background: rgba(0, 238, 252, 0.08);
  color: #00eefc;
}

.admin-search-input {
  max-width: 280px;
}

.admin-library-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.admin-store-power-panel {
  margin-top: 24px;
}

.admin-store-power-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.admin-promo-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.admin-promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(var(--theme-secondary-rgb), 0.22);
  background: rgba(2, 8, 14, 0.68);
  padding: 12px;
}

.admin-promo-card.is-disabled {
  opacity: 0.5;
}

.admin-library-card {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  cursor: grab;
}

.admin-library-card.is-dragging {
  cursor: grabbing;
  opacity: 0.42;
  transform: scale(0.98);
}

.admin-library-card.is-drop-target {
  border-color: rgba(var(--theme-secondary-rgb), 0.86);
  box-shadow: 0 0 0 1px rgba(var(--theme-secondary-rgb), 0.38), 0 0 24px rgba(var(--theme-secondary-rgb), 0.18);
}

.admin-drag-handle {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  border: 1px solid rgba(var(--theme-secondary-rgb), 0.28);
  padding: 2px 5px;
  color: var(--theme-secondary);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.admin-library-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.admin-library-thumb {
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.02)),
    rgba(11, 11, 11, 0.95);
  display: grid;
  place-items: center;
}

.admin-library-thumb .product-shirt {
  transform: scale(0.72);
}

.admin-library-copy {
  display: grid;
  gap: 8px;
  align-content: start;
}

.admin-library-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

@media (max-width: 1400px) {
  .admin-library-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .admin-store-power-grid {
    grid-template-columns: 1fr;
  }

  .admin-library-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.admin-library-link {
  text-decoration: none;
}

.product-shirt {
  position: relative;
  width: 144px;
  height: 156px;
  clip-path: polygon(22% 8%, 35% 0, 65% 0, 78% 8%, 100% 24%, 87% 38%, 82% 100%, 18% 100%, 13% 38%, 0 24%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 14px 24px rgba(0, 0, 0, 0.45);
}

.product-shirt-grid {
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(5, 5, 5, 1)),
    #111;
}

.product-shirt-core {
  background:
    linear-gradient(180deg, rgba(38, 38, 38, 0.95), rgba(14, 14, 14, 1)),
    #181818;
}

.product-shirt-signal {
  background:
    linear-gradient(180deg, rgba(30, 24, 28, 0.95), rgba(8, 8, 8, 1)),
    #141414;
}

.shirt-print {
  position: absolute;
  inset: 32px 24px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shirt-print-grid {
  background:
    linear-gradient(transparent 0 75%, rgba(0, 238, 252, 0.35) 75% 77%, transparent 77%),
    repeating-linear-gradient(90deg, rgba(0, 238, 252, 0.28) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(0deg, rgba(0, 238, 252, 0.2) 0 1px, transparent 1px 12px);
  box-shadow: 0 0 16px rgba(0, 238, 252, 0.22);
}

.shirt-print-core {
  border-radius: 9999px;
  background:
    radial-gradient(circle, rgba(0, 238, 252, 0.88) 0 20%, rgba(223, 142, 255, 0.72) 20% 38%, rgba(255, 255, 255, 0) 38%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 24px rgba(223, 142, 255, 0.24);
}

.shirt-print-signal {
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 6px),
    linear-gradient(90deg, rgba(255, 0, 92, 0.55), rgba(223, 142, 255, 0.2), rgba(0, 238, 252, 0.45));
  box-shadow: 0 0 18px rgba(255, 0, 92, 0.16);
}

.product-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 180;
  padding: 15px 15px 16px;
  display: grid;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(10, 12, 15, 0.92), rgba(5, 6, 7, 0.98)),
    rgba(6, 7, 8, 0.96);
  transform: translateY(calc(100% - var(--product-info-peek)));
  transition:
    transform 220ms ease,
    background-color 180ms ease;
}

.product-card:hover .product-info,
.product-card:focus-visible .product-info,
.product-card:focus-within .product-info {
  transform: translateY(0);
}

.product-info > :nth-child(n + 5) {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 150ms ease,
    transform 180ms ease;
}

.product-card:hover .product-info > :nth-child(n + 5),
.product-card:focus-visible .product-info > :nth-child(n + 5),
.product-card:focus-within .product-info > :nth-child(n + 5) {
  opacity: 1;
  transform: translateY(0);
}

.product-name {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-price {
  color: #fffae0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-copy {
  margin: 0;
  color: #b6bec2;
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-channel-badge {
  justify-self: start;
  padding: 5px 8px;
  border: 1px solid rgba(0, 238, 252, 0.26);
  background: rgba(0, 238, 252, 0.06);
  color: #00eefc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-config {
  position: relative;
  z-index: 104;
  display: grid;
  grid-template-columns: auto 1fr auto 96px;
  gap: 8px;
  align-items: center;
}

.product-label {
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.product-select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 8px 10px;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-select option {
  background: #000000;
  color: #ffffff;
}

.product-select option:checked,
.product-select option:focus,
.product-select option:hover {
  background: #df8eff !important;
  background-color: #df8eff !important;
  box-shadow: 0 0 0 9999px #df8eff inset;
  color: #050509;
}

.product-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-size-select {
  position: relative;
  z-index: 520;
  min-width: 72px;
}

.custom-size-select-button {
  width: 100%;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 8px 28px 8px 10px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
}

.custom-size-select-button::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--theme-secondary);
  border-bottom: 1px solid var(--theme-secondary);
  transform: translateY(-65%) rotate(45deg);
}

.custom-size-select-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 650;
  display: none;
  border: 1px solid rgba(var(--theme-secondary-rgb), 0.42);
  background: #000000;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.5), 0 0 22px rgba(var(--theme-secondary-rgb), 0.14);
  padding: 4px;
}

.custom-size-select.is-open .custom-size-select-list {
  display: grid;
}

.custom-size-select-option {
  border: 0;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 8px 10px;
  text-align: left;
  text-transform: uppercase;
}

.custom-size-select-option:hover,
.custom-size-select-option:focus-visible,
.custom-size-select-option.is-selected {
  background: #df8eff;
  color: #050509;
  outline: none;
}

.product-qty-shell {
  position: relative;
  z-index: 420;
  isolation: isolate;
  contain: layout paint style;
  transform: translateZ(0);
  overflow: hidden;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow:
    0 0 0 999px #ffffff inset,
    0 0 0 1px rgba(255, 255, 255, 0.92);
}

.product-qty-plate {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.product-qty-shell::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  z-index: 1;
  pointer-events: none;
}

.product-qty-step,
.product-qty-value {
  position: relative;
  z-index: 2;
  isolation: isolate;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #000000 !important;
  text-transform: none;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal;
  opacity: 1;
  padding: 8px 10px;
}

.product-qty-step {
  border: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 0;
  cursor: pointer;
}

.product-qty-step:hover,
.product-qty-step:focus-visible {
  background: #f3f3f3 !important;
  outline: none;
}

.product-qty-value {
  display: grid;
  place-items: center;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}


.product-add-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(223, 142, 255, 0.45);
  background: transparent;
  background-image: none !important;
  color: #0e0e0e;
  padding: 10px 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  outline: transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 2;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.apparel-product-card {
  --product-info-peek: 104px;
}

.product-add-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #df8eff;
  background-image: none !important;
  box-shadow: inset 0 0 0 999px #df8eff;
}

.product-add-btn::after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -6px 0 0);
  --slice-2: inset(50% -6px 30% 0);
  --slice-3: inset(10% -6px 85% 0);
  --slice-4: inset(40% -6px 43% 0);
  --slice-5: inset(80% -6px 5% 0);
  content: "ADD TO CART";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 238, 252, 0.22), rgba(223, 142, 255, 0.08) 34%, rgba(223, 142, 255, 0) 35%);
  color: #fffae0;
  text-shadow:
    -2px -2px 0 #0e0e0e,
    2px 2px 0 #00eefc;
  clip-path: var(--slice-0);
  pointer-events: none;
}

.product-add-btn:hover,
.product-add-btn:focus-visible {
  color: #0e0e0e;
  border-color: rgba(0, 238, 252, 0.62);
  transform: translateY(-1px);
}

.product-add-btn:hover::after,
.product-add-btn:focus-visible::after {
  animation: product-add-btn-glitch 1s steps(2, end);
}

@keyframes product-add-btn-glitch {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-12px, -6px);
  }
  10% {
    clip-path: var(--slice-3);
    transform: translate(8px, 6px);
  }
  20% {
    clip-path: var(--slice-1);
    transform: translate(-8px, 6px);
  }
  30% {
    clip-path: var(--slice-3);
    transform: translate(0, 4px);
  }
  40% {
    clip-path: var(--slice-2);
    transform: translate(-4px, 0);
  }
  50% {
    clip-path: var(--slice-3);
    transform: translate(4px, 0);
  }
  60% {
    clip-path: var(--slice-4);
    transform: translate(4px, 8px);
  }
  70% {
    clip-path: var(--slice-2);
    transform: translate(-8px, 8px);
  }
  80% {
    clip-path: var(--slice-5);
    transform: translate(14px, -8px);
  }
  90% {
    clip-path: var(--slice-1);
    transform: translate(-8px, 0);
  }
  100% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }
}

.product-action-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
}

.product-feedback {
  min-height: 14px;
  margin: 0;
  color: #00eefc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.product-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-action-row > * {
  min-height: 42px;
}

.product-printify-btn,
.product-detail-printify-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 238, 252, 0.36);
  background: rgba(0, 238, 252, 0.08);
  color: #00eefc;
  padding: 10px 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.product-printify-btn:hover,
.product-detail-printify-link:hover {
  background: #00eefc;
  color: #090909;
}

.cart-count-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: #00eefc;
  color: #000;
  font-size: 10px;
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  top: 72px;
  right: 18px;
  width: min(360px, calc(100vw - 36px));
  max-height: calc(100vh - 110px);
  display: block;
  overflow: auto;
  border: 1px solid rgba(0, 238, 252, 0.24);
  background:
    linear-gradient(180deg, rgba(13, 17, 19, 0.96), rgba(4, 7, 9, 0.97)),
    rgba(0, 0, 0, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 18px 28px rgba(0, 0, 0, 0.45);
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
  z-index: 130;
}

.cart-drawer,
.account-drawer,
.admin-drawer {
  border-radius: 0;
  backdrop-filter: blur(10px);
}

.cart-drawer::before,
.account-drawer::before,
.admin-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      rgba(0, 0, 0, 0) 1px 4px
    );
  opacity: 0.55;
}

.cart-drawer > *,
.account-drawer > *,
.admin-drawer > * {
  position: relative;
  z-index: 1;
}

.cart-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer-header,
.cart-summary {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-summary {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0;
}

.cart-kicker {
  margin: 0 0 4px;
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.cart-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.16em;
}

.cart-drawer-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.cart-close-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cart-items {
  overflow: visible;
  padding: 14px;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cart-empty {
  margin: 0;
  color: #8f8f8f;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-line {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  animation: cart-line-in 220ms ease;
}

.cart-line-visual {
  grid-row: span 4;
  overflow: hidden;
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.02)),
    rgba(11, 11, 11, 0.95);
}

.cart-line-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cart-line-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-line-name {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-line-price {
  color: #00eefc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.cart-line-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #afafaf;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-line-copy {
  margin: 0;
  color: #bdbdbd;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-line-remove {
  justify-self: start;
  border: 0;
  padding: 0;
  background: none;
  color: #ff6e84;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-recommendations {
  padding: 0 14px 14px;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cart-hub-panel {
  padding: 0 14px 14px;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cart-coupon-panel {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 10px;
}

.cart-coupon-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}

.cart-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.cart-coupon-input {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  padding: 11px 12px;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cart-coupon-btn,
.cart-secondary-btn {
  border: 1px solid rgba(223, 142, 255, 0.38);
  background: rgba(223, 142, 255, 0.08);
  color: #df8eff;
  padding: 11px 14px;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-coupon-feedback {
  margin: 0;
  color: #b6b6b6;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-coupon-feedback[data-tone="success"] {
  color: #00eefc;
}

.cart-coupon-feedback[data-tone="error"] {
  color: #ff6e84;
}

.cart-recommendations-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}

.cart-recommendations-title {
  margin: 0;
  color: #fffae0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cart-recommendation-grid {
  display: grid;
  gap: 10px;
}

.cart-recommendation-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.cart-recommendation-card:hover,
.cart-recommendation-card:focus-visible {
  border-color: rgba(223, 142, 255, 0.34);
  transform: translateY(-1px);
  outline: none;
}

.cart-recommendation-image {
  width: 100%;
  height: 62px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
}

.cart-recommendation-copy {
  display: grid;
  align-content: center;
  gap: 6px;
}

.cart-recommendation-name,
.cart-recommendation-meta {
  margin: 0;
  text-transform: uppercase;
}

.cart-recommendation-name {
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.cart-recommendation-meta {
  color: #00eefc;
  font-size: 9px;
  letter-spacing: 0.2em;
}

@keyframes cart-line-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #b8b8b8;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cart-summary-total {
  margin-top: 10px;
  color: #ffffff;
  font-size: 13px;
}

.cart-summary-discount {
  color: #df8eff;
}

.cart-summary-final {
  color: #fffae0;
  font-size: 13px;
}

.pixelated {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.cart-checkout-btn {
  width: 100%;
  border: 1px solid rgba(0, 238, 252, 0.4);
  background: rgba(0, 238, 252, 0.08);
  color: #00eefc;
  padding: 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-action-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 10px;
}

.account-drawer {
  position: fixed;
  top: 72px;
  right: 18px;
  width: min(390px, calc(100vw - 36px));
  max-height: calc(100vh - 110px);
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(0, 238, 252, 0.24);
  background:
    linear-gradient(180deg, rgba(13, 17, 23, 0.97), rgba(4, 7, 10, 0.98)),
    rgba(0, 0, 0, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 18px 28px rgba(0, 0, 0, 0.45);
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
  z-index: 145;
}

.account-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.account-drawer.is-shaking {
  animation: account-drawer-shake 320ms ease;
}

@keyframes account-drawer-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-10px);
  }

  40% {
    transform: translateX(8px);
  }

  60% {
    transform: translateX(-6px);
  }

  80% {
    transform: translateX(4px);
  }
}

.account-drawer-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.account-kicker {
  margin: 0 0 4px;
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.account-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.16em;
}

.account-close-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  cursor: pointer;
}

.account-panel-body,
.account-auth,
.account-session {
  display: grid;
  gap: 12px;
}

.account-panel-body {
  position: relative;
  z-index: 1;
  overflow: auto;
  padding: 14px;
}

.account-auth {
  gap: 14px;
}

.account-block {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  align-content: start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.account-block:hover,
.account-block:focus-within {
  transform: translateY(-2px);
  border-color: rgba(0, 238, 252, 0.22);
  background: rgba(255, 255, 255, 0.032);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 18px rgba(0, 238, 252, 0.06);
}

.account-block:hover .account-block-kicker,
.account-block:focus-within .account-block-kicker {
  color: #00eefc;
}

.account-page-login-shell .account-block {
  min-height: 100%;
  grid-template-rows: auto auto auto auto auto 1fr auto;
}

.account-block-kicker {
  margin: 0;
  color: #df8eff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.account-helper {
  margin: 0;
  color: #b4b4b4;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-helper span {
  color: #fffae0;
}

.account-profile-card {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.04)),
    rgba(255, 255, 255, 0.02);
}

.account-profile-name,
.account-profile-meta {
  margin: 0;
}

.account-profile-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-profile-meta {
  margin-top: 6px;
  color: #b7b7b7;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.account-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-page-shell {
  min-height: 100vh;
  padding: 118px 20px 60px;
  background:
    radial-gradient(circle at top, rgba(0, 238, 252, 0.08), transparent 25%),
    linear-gradient(180deg, rgba(223, 142, 255, 0.06), transparent 30%),
    #07090c;
}

.account-page-header,
.account-page-overview,
.account-page-layout,
.account-page-empty {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.account-page-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.account-page-title {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-page-copy,
.account-page-empty-copy {
  margin: 0;
  color: #b4b4b4;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-page-empty-actions {
  display: flex;
  justify-content: center;
}

.account-page-overview {
  margin-bottom: 20px;
}

.account-page-login-shell {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.account-page-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 20px;
}

.account-page-sidebar,
.account-page-main {
  display: grid;
  gap: 16px;
  align-content: start;
}

.account-page-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 18, 22, 0.95), rgba(4, 7, 11, 0.98)),
    rgba(0, 0, 0, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(0, 238, 252, 0.04);
  padding: 18px;
}

.account-page-overview-card {
  display: grid;
  gap: 16px;
  padding: 20px 22px;
}

.account-page-overview-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 20px;
  align-items: end;
}

.account-page-overview-copy {
  margin: 0;
  color: #93a0a7;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
}

.account-page-name,
.account-page-meta {
  margin: 0;
}

.account-page-name {
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-page-meta {
  margin-top: 8px;
  color: #b8b8b8;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.account-page-stat-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-page-overview-card .account-page-stat-grid {
  margin-top: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.account-page-stat-grid div {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 6px;
}

.account-page-stat-grid span {
  color: #8f8f8f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.account-page-stat-grid strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-newsletter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.account-newsletter-toggle-track {
  position: relative;
  width: 34px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.account-newsletter-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: #d1d6da;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.account-newsletter-toggle-state {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-newsletter-toggle:hover .account-newsletter-toggle-track,
.account-newsletter-toggle:focus-visible .account-newsletter-toggle-track {
  border-color: rgba(0, 238, 252, 0.28);
  box-shadow: 0 0 16px rgba(0, 238, 252, 0.1);
}

.account-newsletter-toggle:focus-visible {
  outline: none;
}

.account-newsletter-toggle.is-on .account-newsletter-toggle-track {
  border-color: rgba(0, 238, 252, 0.34);
  background: rgba(0, 238, 252, 0.14);
}

.account-newsletter-toggle.is-on .account-newsletter-toggle-thumb {
  transform: translateX(16px);
  background: #00eefc;
}

.account-newsletter-toggle.is-on .account-newsletter-toggle-state {
  color: #00eefc;
}

.account-page-section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.account-page-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-page-span-2 {
  grid-column: span 2;
}

.account-page-checkbox-row {
  display: grid;
  align-items: end;
}

.account-page-checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #b9b9b9;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-cart-list {
  display: grid;
  gap: 14px;
}

.account-cart-summary,
.account-cart-stack {
  display: grid;
  gap: 10px;
}

.account-cart-summary {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.04)),
    rgba(255, 255, 255, 0.02);
}

.account-cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #aeb4bb;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.account-cart-summary-row strong {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.account-cart-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(0, 238, 252, 0.16);
  background:
    linear-gradient(135deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.04)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 16px rgba(0, 238, 252, 0.04);
  text-align: left;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.account-cart-line:hover,
.account-cart-line:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 238, 252, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 22px rgba(0, 238, 252, 0.08);
  outline: none;
}

.account-cart-visual {
  min-height: 108px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.02)),
    rgba(11, 11, 11, 0.95);
  display: grid;
  place-items: center;
}

.account-cart-visual img,
.admin-library-thumb .product-image,
.admin-preview-card .product-image,
.product-visual > .product-image,
.product-detail-panel .product-detail-image {
  position: relative;
  z-index: 140;
  isolation: isolate;
  filter: contrast(1.02) saturate(0.95);
}

.account-cart-preview-image {
  object-position: center top;
}

.account-cart-shirt {
  transform: scale(0.62);
}

.account-cart-copy {
  display: grid;
  gap: 8px;
  align-content: start;
}

.account-cart-line-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.account-cart-unit {
  margin: 0;
  color: #94a0a9;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-cart-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.account-cart-meta span {
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #d6dce0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-cart-tag {
  justify-self: start;
  padding: 4px 7px;
  border: 1px solid rgba(223, 142, 255, 0.28);
  background: rgba(223, 142, 255, 0.08);
  color: #df8eff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.account-cart-checkout-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

body {
  --site-font-size-offset: 0px;
}

body.site-font-size-default {
  --site-font-size-offset: 0px;
}

body.site-font-size-medium {
  --site-font-size-offset: 2px;
}

body.site-font-size-large {
  --site-font-size-offset: 4px;
}

body.account-page-body .site-top-link,
body.account-page-body .site-top-dropdown-btn,
body.account-page-body .system-panel-kicker,
body.account-page-body .system-card-kicker,
body.account-page-body .system-toggle-btn,
body.account-page-body .system-panel-status,
body.account-page-body .product-page-kicker,
body.account-page-body .account-kicker,
body.account-page-body .account-block-kicker,
body.account-page-body .admin-label,
body.account-page-body .admin-feedback,
body.account-page-body .account-page-stat-grid span,
body.account-page-body .account-cart-summary-row,
body.account-page-body .account-cart-unit,
body.account-page-body .account-cart-meta span,
body.account-page-body .account-cart-tag {
  font-size: calc(10px + var(--site-font-size-offset));
}

body.account-page-body .product-page-back,
body.account-page-body .account-helper,
body.account-page-body .account-profile-meta,
body.account-page-body .account-page-meta,
body.account-page-body .account-newsletter-toggle-state,
body.account-page-body .account-page-checkbox,
body.account-page-body .admin-input,
body.account-page-body .admin-submit-btn,
body.account-page-body .admin-secondary-btn,
body.account-page-body .admin-logout-btn {
  font-size: calc(11px + var(--site-font-size-offset));
}

body.account-page-body .account-page-copy,
body.account-page-body .account-page-empty-copy,
body.account-page-body .account-page-stat-grid strong,
body.account-page-body .cart-line-name,
body.account-page-body .cart-line-price {
  font-size: calc(12px + var(--site-font-size-offset));
}

body.account-page-body .cart-line-meta {
  font-size: calc(10px + var(--site-font-size-offset));
}

body.account-page-body .account-profile-name {
  font-size: calc(16px + var(--site-font-size-offset));
}

body.account-page-body .account-title,
body.account-page-body .admin-title,
body.account-page-body .system-panel-title {
  font-size: calc(18px + var(--site-font-size-offset));
}

body.account-page-body .account-page-name {
  font-size: calc(1.7rem + var(--site-font-size-offset));
}

body.account-page-body .account-page-title {
  font-size: calc(clamp(1.8rem, 3vw, 3rem) + var(--site-font-size-offset));
}

.admin-drawer {
  position: fixed;
  top: 72px;
  right: 18px;
  width: min(420px, calc(100vw - 36px));
  max-height: calc(100vh - 110px);
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(223, 142, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(15, 16, 24, 0.97), rgba(5, 7, 11, 0.98)),
    rgba(0, 0, 0, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 18px 28px rgba(0, 0, 0, 0.45);
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
  z-index: 140;
}

.admin-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-rail #system-reboot-btn {
  position: relative;
  z-index: 2;
}

.admin-drawer-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-kicker {
  margin: 0 0 4px;
  color: #df8eff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.admin-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.16em;
}

.admin-close-btn,
.admin-logout-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  cursor: pointer;
}

.admin-close-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.admin-auth,
.admin-console {
  position: relative;
  z-index: 1;
  overflow: auto;
  padding: 14px;
  display: grid;
  gap: 12px;
}

.admin-helper {
  margin: 0;
  color: #b4b4b4;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-helper span {
  color: #fffae0;
}

.admin-label {
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.admin-input {
  width: 100%;
  position: relative;
  z-index: 140;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #ffffff;
  color: #000000;
  caret-color: #00eefc;
  padding: 10px 12px;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: none;
  resize: vertical;
}

.admin-input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.admin-input:focus {
  outline: none;
  border-color: rgba(0, 238, 252, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 238, 252, 0.14);
}

.admin-input:-webkit-autofill,
.admin-input:-webkit-autofill:hover,
.admin-input:-webkit-autofill:focus,
.admin-input:-webkit-autofill:active {
  -webkit-text-fill-color: #000000;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  transition: background-color 9999s ease-in-out 0s;
}

.admin-select,
.admin-textarea {
  text-transform: none;
}

.admin-textarea {
  min-height: 96px;
}

.admin-submit-btn,
.admin-logout-btn {
  padding: 10px 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.admin-submit-btn {
  border: 1px solid rgba(223, 142, 255, 0.45);
  background: rgba(223, 142, 255, 0.08);
  color: #df8eff;
}

#account-login-btn,
#account-create-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

#account-login-btn::before,
#account-create-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 238, 252, 0.94), rgba(130, 248, 255, 0.88));
  transform: translateY(100%);
  transition: transform 180ms ease-out;
}

#account-login-btn:hover,
#account-login-btn:focus-visible,
#account-create-btn:hover,
#account-create-btn:focus-visible {
  transform: translateY(-1px);
  color: #05080b;
  border-color: rgba(0, 238, 252, 0.5);
  background: rgba(0, 238, 252, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(0, 238, 252, 0.12);
  outline: none;
}

#account-login-btn:hover::before,
#account-login-btn:focus-visible::before,
#account-create-btn:hover::before,
#account-create-btn:focus-visible::before {
  transform: translateY(0);
}

#account-login-btn:active,
#account-create-btn:active {
  transform: translateY(1px) scale(0.985);
}

.admin-secondary-btn {
  border: 1px solid rgba(0, 238, 252, 0.3);
  background: rgba(0, 238, 252, 0.06);
  color: #00eefc;
  padding: 10px 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-console-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.admin-form-grid {
  display: grid;
  gap: 10px;
}

.admin-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b4b4b4;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #00eefc;
}

.admin-badge-toggle-grid {
  display: grid;
  gap: 8px;
}

.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-action-row-sticky {
  position: sticky;
  bottom: 0;
  margin-top: 18px;
  padding-top: 14px;
  background: linear-gradient(180deg, rgba(14, 18, 22, 0), rgba(14, 18, 22, 0.96) 28%);
}

.admin-feedback {
  margin: 0;
  color: #b4b4b4;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-product-list {
  display: grid;
  gap: 10px;
}

.admin-product-card {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 8px;
}

.admin-product-head,
.admin-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.admin-product-name,
.admin-product-copy {
  margin: 0;
}

.admin-product-name {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-product-copy,
.admin-product-meta {
  color: #b1b1b1;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-product-edit,
.admin-product-delete {
  justify-self: start;
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-product-edit {
  color: #00eefc;
}

.admin-product-delete {
  color: #ff6e84;
}

.game-shell {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(223, 142, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(0, 238, 252, 0.05), transparent 38%),
    rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    backdrop-filter 180ms ease;
  backdrop-filter: blur(0);
}

.game-shell.is-open {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(6px);
}

.game-window {
  width: min(860px, 100%);
  border: 1px solid rgba(0, 238, 252, 0.24);
  background:
    linear-gradient(180deg, rgba(12, 16, 19, 0.96), rgba(2, 6, 9, 0.98)),
    rgba(0, 0, 0, 0.96);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 0 3px rgba(7, 11, 15, 0.92),
    16px 16px 0 rgba(0, 0, 0, 0.28),
    0 0 42px rgba(0, 238, 252, 0.08);
  position: relative;
  overflow: hidden;
}

.game-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(223, 142, 255, 0.1), transparent 28%),
    radial-gradient(circle at right top, rgba(0, 238, 252, 0.08), transparent 24%);
  opacity: 0.8;
}

.game-window::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
  mix-blend-mode: screen;
}

.game-window-header,
.game-window-body {
  padding: 14px;
}

.game-window-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(223, 142, 255, 0.08), rgba(0, 238, 252, 0.04)),
    rgba(255, 255, 255, 0.01);
}

.game-window-kicker {
  margin: 0 0 5px;
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.game-window-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.game-close-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.game-close-btn:hover,
.game-close-btn:focus-visible {
  border-color: rgba(0, 238, 252, 0.4);
  color: #00eefc;
  background: rgba(0, 238, 252, 0.06);
  outline: none;
}

.game-window-body {
  display: grid;
  gap: 14px;
}

.game-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.game-stat-card {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.game-stat-label {
  color: #00eefc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.game-stat-value {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.game-canvas-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 238, 252, 0.1), transparent 35%),
    linear-gradient(180deg, rgba(11, 16, 28, 0.96), rgba(1, 3, 8, 0.98));
  aspect-ratio: 3 / 2;
  box-shadow:
    inset 0 0 0 2px rgba(8, 12, 18, 0.94),
    inset 0 0 38px rgba(0, 0, 0, 0.42);
  border-radius: 14px;
}

.game-canvas-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 52%, rgba(0, 0, 0, 0.26) 100%);
  z-index: 2;
  mix-blend-mode: multiply;
}

.game-canvas-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 0, 92, 0.05), transparent 30%, transparent 70%, rgba(0, 238, 252, 0.05)),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04) 0 1px,
      rgba(255, 255, 255, 0) 1px 5px
    );
  z-index: 4;
  opacity: 0.45;
}

.discount-panel {
  padding: 12px 14px;
  border: 1px solid rgba(223, 142, 255, 0.32);
  background:
    linear-gradient(90deg, rgba(223, 142, 255, 0.1), rgba(0, 238, 252, 0.06)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 20px rgba(223, 142, 255, 0.08);
}

.discount-kicker {
  margin: 0 0 8px;
  color: #fffae0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.discount-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.discount-title {
  margin: 0 0 4px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discount-copy {
  margin: 0;
  color: #bdbdbd;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discount-code {
  padding: 10px 12px;
  border: 1px solid rgba(0, 238, 252, 0.3);
  background: rgba(0, 0, 0, 0.36);
  color: #00eefc;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-canvas,
.game-canvas-grid,
.game-canvas-scanlines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.game-canvas {
  display: block;
}

.game-canvas-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 28px, 32px 100%;
  mix-blend-mode: screen;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.game-canvas-scanlines {
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.08) 0 1px,
      rgba(255, 255, 255, 0.015) 1px 2px,
      rgba(255, 255, 255, 0) 2px 5px
    );
  mix-blend-mode: screen;
  opacity: 0.24;
  pointer-events: none;
  z-index: 3;
}

.game-instructions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: #bfbfbf;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.play-panel {
  width: 364px;
  margin-left: 12px;
  padding: 12px;
  border: 1px solid rgba(0, 238, 252, 0.3);
  background:
    linear-gradient(180deg, rgba(12, 16, 19, 0.96), rgba(2, 6, 9, 0.96)),
    rgba(0, 0, 0, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    8px 8px 0 rgba(0, 0, 0, 0.35),
    0 0 28px rgba(0, 238, 252, 0.08);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.play-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.system-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 320;
  width: 424px;
  padding: 12px;
  isolation: isolate;
  border: 1px solid rgba(223, 142, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(18, 12, 24, 0.96), rgba(3, 7, 10, 0.97)),
    rgba(0, 0, 0, 0.94);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    8px 8px 0 rgba(0, 0, 0, 0.35),
    0 0 28px rgba(223, 142, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.system-panel.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.read-panel {
  width: 612px;
  padding: 12px;
  isolation: isolate;
  border: 1px solid rgba(156, 247, 202, 0.12);
  background: rgba(3, 10, 8, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    8px 8px 0 rgba(0, 0, 0, 0.35),
    0 0 18px rgba(156, 247, 202, 0.06);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  font-family: "Courier New", Courier, monospace;
}

.read-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.system-panel-status,
.read-panel-status {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.system-panel-status {
  color: #fffae0;
}

.read-panel-status {
  color: #9cf7ca;
}

.read-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.read-panel-kicker {
  margin: 0 0 6px;
  color: #9cf7ca;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.read-panel-title {
  margin: 0;
  color: #c9ffd9;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.read-panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #cbd0d4;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.read-panel-close:hover,
.read-panel-close:focus-visible {
  border-color: rgba(156, 247, 202, 0.3);
  color: #ffffff;
  background: rgba(156, 247, 202, 0.08);
  outline: none;
}

.read-panel-shell {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 12px;
}

.read-panel-sidebar,
.read-panel-viewer {
  border: 1px solid rgba(156, 247, 202, 0.08);
  background: rgba(0, 0, 0, 0.26);
}

.read-panel-sidebar {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.read-file-tab {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(156, 247, 202, 0.08);
  background: rgba(0, 0, 0, 0.32);
  color: rgba(156, 247, 202, 0.72);
  text-align: left;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.read-file-tab:hover,
.read-file-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(156, 247, 202, 0.22);
  background: rgba(156, 247, 202, 0.06);
  color: #c9ffd9;
  outline: none;
}

.read-file-tab.is-active {
  border-color: rgba(156, 247, 202, 0.26);
  background: rgba(156, 247, 202, 0.08);
  color: #c9ffd9;
  box-shadow: 0 0 16px rgba(156, 247, 202, 0.06);
}

.read-file-id {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.read-file-type {
  color: rgba(156, 247, 202, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.read-panel-viewer {
  min-height: 270px;
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}

.read-panel-viewer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(156, 247, 202, 0.035), transparent 14%),
    repeating-linear-gradient(
      180deg,
      rgba(156, 247, 202, 0.015) 0 1px,
      rgba(0, 0, 0, 0) 1px 4px
    );
  opacity: 0.55;
}

.read-file-view {
  position: relative;
  z-index: 1;
  display: none;
}

.read-file-view.is-active {
  display: block;
}

.read-file-meta {
  margin: 0 0 8px;
  color: #9cf7ca;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.read-file-heading {
  margin: 0 0 12px;
  color: #c9ffd9;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.read-file-copy {
  margin: 0 0 16px;
  color: rgba(156, 247, 202, 0.78);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.read-file-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(201, 255, 217, 0.9);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.system-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.system-panel-kicker,
.system-card-kicker {
  margin: 0 0 6px;
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.system-panel-title {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #cbd0d4;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.system-panel-close:hover,
.system-panel-close:focus-visible {
  border-color: rgba(0, 238, 252, 0.32);
  color: #ffffff;
  background: rgba(0, 238, 252, 0.08);
  outline: none;
}

.system-panel-grid {
  display: grid;
  gap: 10px;
}

.system-card {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.system-toggle-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.system-toggle-row-dual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.system-toggle-btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.28);
  color: #c9d0d5;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.system-toggle-btn:hover,
.system-toggle-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 238, 252, 0.28);
  background: rgba(0, 238, 252, 0.08);
  color: #ffffff;
  outline: none;
}

.system-toggle-btn.is-active {
  border-color: rgba(223, 142, 255, 0.34);
  background: rgba(223, 142, 255, 0.12);
  color: #fffae0;
  box-shadow: 0 0 14px rgba(223, 142, 255, 0.08);
}

body.system-theme-cyan .site-bg-gif,
body.system-theme-cyan .crt-overlay,
body.system-theme-cyan .retro-static {
  filter: hue-rotate(130deg) saturate(0.92);
}

body.system-theme-amber .site-bg-gif,
body.system-theme-amber .crt-overlay,
body.system-theme-amber .retro-static {
  filter: hue-rotate(-46deg) saturate(1.08);
}

body.system-theme-cyan {
  --theme-secondary: #00eefc;
  --theme-secondary-rgb: 0, 238, 252;
}

body.system-theme-amber {
  --theme-secondary: #ffbf47;
  --theme-secondary-rgb: 255, 191, 71;
}

body.system-theme-amber .text-secondary,
body.system-theme-amber .hover\:text-secondary:hover,
body.system-theme-amber .store-kicker,
body.system-theme-amber .product-inline-badge,
body.system-theme-amber .product-submeta span,
body.system-theme-amber .product-category-chip,
body.system-theme-amber .product-badge,
body.system-theme-amber .product-channel-badge,
body.system-theme-amber .product-price-label,
body.system-theme-amber .product-label,
body.system-theme-amber .product-price,
body.system-theme-amber .product-page-back,
body.system-theme-amber .product-detail-store-link,
body.system-theme-amber .apparel-stat-value,
body.system-theme-amber .admin-kicker,
body.system-theme-amber .player-status-kicker,
body.system-theme-amber .visualizer-kicker,
body.system-theme-amber .visualizer-badge,
body.system-theme-amber .site-footer-kicker,
body.system-theme-amber .system-panel-kicker,
body.system-theme-amber .system-card-kicker,
body.system-theme-amber .read-file-meta,
body.system-theme-amber .play-panel-kicker,
body.system-theme-amber .nav-rail-toggle,
body.system-theme-amber .player-status-row span:last-child,
body.system-theme-amber .game-stat-label {
  color: var(--theme-secondary) !important;
}

body.system-theme-amber .border-secondary,
body.system-theme-amber .hover\:border-secondary:hover,
body.system-theme-amber .focus\:border-secondary:focus,
body.system-theme-amber .store-admin-link,
body.system-theme-amber .product-inline-badge,
body.system-theme-amber .product-submeta span,
body.system-theme-amber .product-category-chip,
body.system-theme-amber .product-channel-badge,
body.system-theme-amber .product-page-back,
body.system-theme-amber .product-detail-store-link,
body.system-theme-amber .nav-rail-toggle,
body.system-theme-amber .visualizer-badge,
body.system-theme-amber .system-toggle-btn:hover,
body.system-theme-amber .system-toggle-btn:focus-visible,
body.system-theme-amber .system-panel-close:hover,
body.system-theme-amber .system-panel-close:focus-visible {
  border-color: rgba(var(--theme-secondary-rgb), 0.42) !important;
}

body.system-theme-amber .bg-secondary,
body.system-theme-amber .hover\:bg-secondary:hover {
  background-color: var(--theme-secondary) !important;
}

body.system-theme-amber .store-admin-link,
body.system-theme-amber .product-inline-badge,
body.system-theme-amber .product-submeta span,
body.system-theme-amber .product-category-chip,
body.system-theme-amber .product-channel-badge,
body.system-theme-amber .product-page-back,
body.system-theme-amber .product-detail-store-link,
body.system-theme-amber .visualizer-badge {
  background: rgba(var(--theme-secondary-rgb), 0.08) !important;
}

body.system-theme-amber .store-admin-link {
  border-color: rgba(var(--theme-secondary-rgb), 0.42) !important;
  background: rgba(var(--theme-secondary-rgb), 0.08) !important;
  color: var(--theme-secondary) !important;
}

body.system-theme-amber .store-admin-link:hover,
body.system-theme-amber .store-admin-link:focus-visible {
  border-color: rgba(var(--theme-secondary-rgb), 0.46) !important;
  background: rgba(36, 24, 6, 0.34) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 16px rgba(var(--theme-secondary-rgb), 0.09) !important;
}

body.system-theme-amber .store-admin-link:active {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 12px rgba(var(--theme-secondary-rgb), 0.1) !important;
}

body.system-theme-amber .store-admin-link.is-active-filter {
  border-color: rgba(var(--theme-secondary-rgb), 0.5) !important;
  background: rgba(var(--theme-secondary-rgb), 0.14) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 16px rgba(var(--theme-secondary-rgb), 0.14) !important;
}

body.system-theme-amber .status-bar-fill-secondary {
  background: linear-gradient(90deg, rgba(var(--theme-secondary-rgb), 0.82), rgba(var(--theme-secondary-rgb), 1));
  box-shadow: 0 0 10px rgba(var(--theme-secondary-rgb), 0.22);
}

body.system-theme-amber .operator-mark-shell {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 14px rgba(var(--theme-secondary-rgb), 0.18);
}

body.system-theme-amber .operator-mark-shell::after {
  background: linear-gradient(90deg, transparent, rgba(var(--theme-secondary-rgb), 0.95), transparent);
}

body.system-theme-amber .hero-side-en-tag,
body.system-theme-amber .system-toggle-btn:hover,
body.system-theme-amber .system-toggle-btn:focus-visible {
  color: var(--theme-secondary) !important;
}

body.system-theme-amber .read-file-tab.is-active {
  border-color: rgba(var(--theme-secondary-rgb), 0.34);
  background:
    linear-gradient(180deg, rgba(var(--theme-secondary-rgb), 0.12), rgba(255, 250, 224, 0.06)),
    rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 16px rgba(var(--theme-secondary-rgb), 0.08);
}

body.system-theme-amber .play-video-link,
body.system-theme-amber .visualizer-badge,
body.system-theme-amber .system-toggle-btn:hover,
body.system-theme-amber .system-toggle-btn:focus-visible {
  border-color: rgba(var(--theme-secondary-rgb), 0.36) !important;
  background: rgba(var(--theme-secondary-rgb), 0.08) !important;
  color: var(--theme-secondary) !important;
}

body.system-theme-amber .play-progress {
  background: linear-gradient(
    90deg,
    var(--theme-secondary) var(--progress, 0%),
    rgba(255, 255, 255, 0.12) var(--progress, 0%)
  );
}

body.system-theme-amber .play-volume-label,
body.system-theme-amber .player-status-kicker,
body.system-theme-amber .visualizer-kicker,
body.system-theme-amber .power-quote-author,
body.system-theme-amber #power-btn-icon.is-off,
body.system-theme-amber .play-control-btn:hover {
  color: var(--theme-secondary) !important;
}

body.system-theme-amber #power-btn-icon.is-off {
  filter: drop-shadow(0 0 8px rgba(var(--theme-secondary-rgb), 0.92));
}

body.system-theme-amber .play-volume-slider::-webkit-slider-thumb {
  background: var(--theme-secondary);
  box-shadow: 0 0 10px rgba(var(--theme-secondary-rgb), 0.46);
}

body.system-theme-amber .play-volume-slider::-moz-range-thumb {
  background: var(--theme-secondary);
  box-shadow: 0 0 10px rgba(var(--theme-secondary-rgb), 0.46);
}

body.system-theme-amber .visualizer-panel {
  background:
    radial-gradient(circle at top left, rgba(255, 102, 196, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(var(--theme-secondary-rgb), 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 0, 92, 0.04), transparent 34%, rgba(var(--theme-secondary-rgb), 0.04)),
    linear-gradient(180deg, rgba(18, 10, 30, 0.94), rgba(4, 6, 16, 0.99)),
    rgba(0, 0, 0, 0.82);
}

body.system-theme-amber .admin-label,
body.system-theme-amber .admin-product-edit,
body.system-theme-amber .game-window-kicker,
body.system-theme-amber .game-stat-label,
body.system-theme-amber .discount-code,
body.system-theme-amber .system-panel-kicker,
body.system-theme-amber .system-card-kicker {
  color: var(--theme-secondary) !important;
}

body.system-theme-amber .admin-secondary-btn,
body.system-theme-amber .discount-code,
body.system-theme-amber .game-close-btn:hover,
body.system-theme-amber .game-close-btn:focus-visible,
body.system-theme-amber .system-panel-close:hover,
body.system-theme-amber .system-panel-close:focus-visible {
  border-color: rgba(var(--theme-secondary-rgb), 0.4) !important;
  background: rgba(var(--theme-secondary-rgb), 0.08) !important;
  color: var(--theme-secondary) !important;
}

body.system-theme-amber .admin-input {
  caret-color: var(--theme-secondary);
}

body.system-theme-amber .admin-input:focus {
  border-color: rgba(var(--theme-secondary-rgb), 0.45);
  box-shadow: 0 0 0 1px rgba(var(--theme-secondary-rgb), 0.14);
}

body.system-theme-amber .cart-count-badge {
  background: var(--theme-secondary) !important;
  color: #090909 !important;
  box-shadow: 0 0 10px rgba(var(--theme-secondary-rgb), 0.28);
}

body.system-theme-amber .admin-checkbox-row input[type="checkbox"] {
  accent-color: var(--theme-secondary);
}

body.system-theme-amber .game-shell {
  background:
    radial-gradient(circle at top, rgba(223, 142, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(var(--theme-secondary-rgb), 0.05), transparent 38%),
    rgba(0, 0, 0, 0.78);
}

body.system-theme-amber .game-window {
  border-color: rgba(var(--theme-secondary-rgb), 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 0 3px rgba(7, 11, 15, 0.92),
    16px 16px 0 rgba(0, 0, 0, 0.28),
    0 0 42px rgba(var(--theme-secondary-rgb), 0.08);
}

body.system-theme-amber .game-window::before {
  background:
    linear-gradient(135deg, rgba(223, 142, 255, 0.1), transparent 28%),
    radial-gradient(circle at right top, rgba(var(--theme-secondary-rgb), 0.08), transparent 24%);
}

body.system-theme-amber .game-window-header,
body.system-theme-amber .discount-panel {
  background:
    linear-gradient(90deg, rgba(223, 142, 255, 0.08), rgba(var(--theme-secondary-rgb), 0.06)),
    rgba(255, 255, 255, 0.03);
}

body.system-theme-amber .game-canvas-shell {
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--theme-secondary-rgb), 0.1), transparent 35%),
    linear-gradient(180deg, rgba(11, 16, 28, 0.96), rgba(1, 3, 8, 0.98));
}

body.system-theme-amber .game-canvas-shell::after {
  background:
    linear-gradient(90deg, rgba(255, 0, 92, 0.05), transparent 30%, transparent 70%, rgba(var(--theme-secondary-rgb), 0.05)),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04) 0 1px,
      rgba(255, 255, 255, 0) 1px 5px
    );
}

body.system-theme-amber .play-panel {
  border-color: rgba(var(--theme-secondary-rgb), 0.3);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    8px 8px 0 rgba(0, 0, 0, 0.35),
    0 0 28px rgba(var(--theme-secondary-rgb), 0.08);
}

.theme-toggle-btn {
  border-color: rgba(255, 250, 224, 0.34) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 236, 228, 0.94)) !important;
  color: #171310 !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 16px rgba(255, 250, 224, 0.06);
}

.theme-toggle-btn:hover,
.theme-toggle-btn:focus-visible {
  border-color: rgba(255, 250, 224, 0.46) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 240, 232, 0.96)) !important;
  color: #090909 !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.84),
    0 0 18px rgba(255, 250, 224, 0.1) !important;
}

.theme-toggle-btn.is-active {
  border-color: rgba(79, 69, 59, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(18, 20, 24, 0.96), rgba(8, 10, 14, 0.98)) !important;
  color: #f4efe8 !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 18px rgba(0, 0, 0, 0.18) !important;
}

.theme-toggle-btn.is-active:hover,
.theme-toggle-btn.is-active:focus-visible {
  border-color: rgba(223, 142, 255, 0.28) !important;
  background:
    linear-gradient(180deg, rgba(28, 30, 34, 0.98), rgba(10, 12, 16, 1)) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 20px rgba(223, 142, 255, 0.1) !important;
}

body.site-light-theme {
  --light-accent: #4f453b;
  --light-accent-rgb: 79, 69, 59;
  background-color: #f4efe8;
  color: #191613;
}

body.site-light-theme .site-brand-link {
  color: rgba(var(--light-accent-rgb), 0.9);
  text-shadow: 0 0 12px rgba(var(--light-accent-rgb), 0.1);
  opacity: 0.92;
}

body.site-light-theme .site-brand-link:hover,
body.site-light-theme .site-brand-link:focus-visible {
  color: #191613 !important;
}

body.site-light-theme .text-primary,
body.site-light-theme .text-secondary,
body.site-light-theme .hover\:text-secondary:hover,
body.site-light-theme .hover\:text-tertiary:hover,
body.site-light-theme .play-overlay,
body.site-light-theme .play-video-link,
body.site-light-theme .play-volume-label,
body.site-light-theme .apparel-stat-value,
body.site-light-theme .apparel-section-count,
body.site-light-theme .cart-kicker,
body.site-light-theme .account-kicker,
body.site-light-theme .admin-kicker,
body.site-light-theme .account-block-kicker,
body.site-light-theme .product-label {
  color: var(--light-accent) !important;
}

body.site-light-theme .border-primary,
body.site-light-theme .border-secondary,
body.site-light-theme .hover\:border-secondary:hover {
  border-color: rgba(var(--light-accent-rgb), 0.34) !important;
}

body.site-light-theme .bg-primary,
body.site-light-theme .bg-secondary,
body.site-light-theme .hover\:bg-secondary:hover {
  background-color: rgba(var(--light-accent-rgb), 0.12) !important;
  color: #191613 !important;
}

body.site-light-theme .static-noise {
  opacity: 0.012;
}

body.site-light-theme .crt-overlay {
  opacity: 0.045;
}

body.site-light-theme .retro-static,
body.site-light-theme .vhs-noise {
  opacity: 0.03;
}

body.site-light-theme .site-bg-gif {
  opacity: calc(0.016 * var(--bg-gif-visibility, 1) * var(--bg-visual-multiplier, 1));
}

body.site-light-theme .nav-rail {
  border-right-color: rgba(79, 69, 59, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(252, 247, 242, 0.98), rgba(242, 235, 228, 0.98) 34%, rgba(234, 226, 218, 0.99)) !important;
  box-shadow:
    1px 0 0 0 rgba(var(--light-accent-rgb), 0.12),
    14px 0 44px rgba(90, 76, 56, 0.1) !important;
}

body.site-light-theme .nav-rail::before {
  background:
    linear-gradient(180deg, rgba(var(--light-accent-rgb), 0.08), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 28%) !important;
}

body.site-light-theme .nav-rail-toggle {
  border-color: rgba(79, 69, 59, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(236, 229, 220, 0.98)) !important;
  color: #403830 !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45) inset,
    6px 6px 0 rgba(120, 103, 79, 0.12),
    0 0 18px rgba(var(--light-accent-rgb), 0.08) !important;
}

body.site-light-theme .nav-rail-toggle:hover,
body.site-light-theme .nav-rail-toggle:focus-visible,
body.site-light-theme .nav-rail-toggle.is-open {
  border-color: rgba(var(--light-accent-rgb), 0.32) !important;
  color: #191613 !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 0 22px rgba(var(--light-accent-rgb), 0.14) !important;
}

body.site-light-theme .nav-rail a {
  color: #5f564d !important;
}

body.site-light-theme .nav-rail a:hover,
body.site-light-theme .nav-rail a:focus-visible {
  background: rgba(var(--light-accent-rgb), 0.08) !important;
  color: #191613 !important;
}

body.site-light-theme .nav-rail a.translate-x-1 {
  background: rgba(var(--light-accent-rgb), 0.12) !important;
  color: #191613 !important;
}

body.site-light-theme .site-header,
body.site-light-theme .site-top-dropdown-menu,
body.site-light-theme .site-utility-cluster,
body.site-light-theme .site-toast,
body.site-light-theme .surface-panel,
body.site-light-theme .surface-panel-subtle,
body.site-light-theme .surface-panel-accent,
body.site-light-theme .catalog-link-card,
body.site-light-theme .signal-banner,
body.site-light-theme .store-shell,
body.site-light-theme .featured-drop-shell,
body.site-light-theme .product-card,
body.site-light-theme .product-page-header,
body.site-light-theme .product-detail-gallery,
body.site-light-theme .product-detail-info,
body.site-light-theme .product-detail-empty,
body.site-light-theme .product-detail-card,
body.site-light-theme .account-page-card,
body.site-light-theme .account-block,
body.site-light-theme .account-profile-card,
body.site-light-theme .admin-page-panel,
body.site-light-theme .admin-product-card,
body.site-light-theme .cart-drawer,
body.site-light-theme .account-drawer,
body.site-light-theme .admin-drawer,
body.site-light-theme .cart-line,
body.site-light-theme .cart-coupon-panel,
body.site-light-theme .cart-recommendation-card,
body.site-light-theme .play-panel,
body.site-light-theme .system-panel,
body.site-light-theme .read-panel,
body.site-light-theme .read-panel-sidebar,
body.site-light-theme .read-panel-viewer,
body.site-light-theme .visualizer-panel,
body.site-light-theme .player-status-panel,
body.site-light-theme .game-window,
body.site-light-theme .game-stat-card,
body.site-light-theme .apparel-overview-panel,
body.site-light-theme .apparel-category-section,
body.site-light-theme .site-footer {
  border-color: rgba(79, 69, 59, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 233, 0.98)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 16px 32px rgba(90, 76, 56, 0.08) !important;
  color: #191613;
}

body.site-light-theme .store-shell::before,
body.site-light-theme .featured-drop-shell::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 236, 228, 0.92)) !important;
}

body.site-light-theme .store-shell::after,
body.site-light-theme .featured-drop-shell::after {
  opacity: 0.1 !important;
  mix-blend-mode: multiply !important;
}

body.site-light-theme .product-visual,
body.site-light-theme .cart-line-visual,
body.site-light-theme .account-cart-visual,
body.site-light-theme .game-canvas-shell,
body.site-light-theme .visualizer-screen {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 230, 222, 0.96)) !important;
  border-color: rgba(79, 69, 59, 0.14) !important;
}

body.site-light-theme .product-card:hover,
body.site-light-theme .product-card:focus-visible,
body.site-light-theme .product-card:hover .product-info,
body.site-light-theme .product-card:focus-visible .product-info,
body.site-light-theme .product-card:focus-within .product-info {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 235, 227, 0.98)) !important;
}

body.site-light-theme .product-card:hover .product-visual,
body.site-light-theme .product-card:focus-visible .product-visual,
body.site-light-theme .product-card:focus-within .product-visual {
  background:
    linear-gradient(180deg, rgba(223, 142, 255, 0.08), rgba(var(--theme-secondary-rgb), 0.04)),
    rgba(250, 244, 238, 0.98) !important;
}

body.site-light-theme .product-info {
  border-top: 1px solid rgba(79, 69, 59, 0.12) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 235, 227, 0.98)) !important;
}

body.site-light-theme .site-top-link,
body.site-light-theme .site-top-link-button,
body.site-light-theme .site-top-dropdown-link,
body.site-light-theme .site-top-dropdown-btn,
body.site-light-theme .site-footer-link,
body.site-light-theme .site-utility-cluster > button,
body.site-light-theme .cart-close-btn,
body.site-light-theme .account-close-btn,
body.site-light-theme .admin-close-btn,
body.site-light-theme .system-panel-close,
body.site-light-theme .read-panel-close,
body.site-light-theme .game-close-btn,
body.site-light-theme .play-control-btn,
body.site-light-theme .system-toggle-btn {
  color: #403830 !important;
}

body.site-light-theme .site-top-link,
body.site-light-theme .site-top-link-button,
body.site-light-theme .site-top-dropdown-link,
body.site-light-theme .site-top-dropdown-btn,
body.site-light-theme .site-footer-link,
body.site-light-theme .site-utility-cluster > button,
body.site-light-theme .cart-close-btn,
body.site-light-theme .account-close-btn,
body.site-light-theme .admin-close-btn,
body.site-light-theme .system-panel-close,
body.site-light-theme .read-panel-close,
body.site-light-theme .game-close-btn,
body.site-light-theme .play-control-btn,
body.site-light-theme .system-toggle-btn {
  border-color: rgba(79, 69, 59, 0.12) !important;
  background: rgba(255, 255, 255, 0.66) !important;
}

body.site-light-theme .site-top-link:hover,
body.site-light-theme .site-top-link:focus-visible,
body.site-light-theme .site-top-link-button:hover,
body.site-light-theme .site-top-link-button:focus-visible,
body.site-light-theme .site-top-dropdown-link:hover,
body.site-light-theme .site-top-dropdown-link:focus-visible,
body.site-light-theme .site-top-dropdown-btn:hover,
body.site-light-theme .site-top-dropdown-btn:focus-visible,
body.site-light-theme .site-footer-link:hover,
body.site-light-theme .site-footer-link:focus-visible,
body.site-light-theme .site-utility-cluster > button:hover,
body.site-light-theme .site-utility-cluster > button:focus-visible,
body.site-light-theme .cart-close-btn:hover,
body.site-light-theme .cart-close-btn:focus-visible,
body.site-light-theme .account-close-btn:hover,
body.site-light-theme .account-close-btn:focus-visible,
body.site-light-theme .admin-close-btn:hover,
body.site-light-theme .admin-close-btn:focus-visible,
body.site-light-theme .system-panel-close:hover,
body.site-light-theme .system-panel-close:focus-visible,
body.site-light-theme .read-panel-close:hover,
body.site-light-theme .read-panel-close:focus-visible,
body.site-light-theme .game-close-btn:hover,
body.site-light-theme .game-close-btn:focus-visible,
body.site-light-theme .play-control-btn:hover,
body.site-light-theme .play-control-btn:focus-visible,
body.site-light-theme .system-toggle-btn:hover,
body.site-light-theme .system-toggle-btn:focus-visible {
  background: rgba(223, 142, 255, 0.08) !important;
  color: #191613 !important;
}

body.site-light-theme .site-top-link.is-active,
body.site-light-theme .site-top-dropdown-btn.is-active,
body.site-light-theme .theme-toggle-btn.is-active {
  background: rgba(223, 142, 255, 0.12) !important;
  color: #191613 !important;
}

body.site-light-theme .theme-toggle-btn,
body.site-light-theme .theme-toggle-btn.is-active {
  border-color: rgba(79, 69, 59, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(18, 20, 24, 0.96), rgba(8, 10, 14, 0.98)) !important;
  color: #f4efe8 !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 18px rgba(0, 0, 0, 0.18) !important;
}

body.site-light-theme .theme-toggle-btn:hover,
body.site-light-theme .theme-toggle-btn:focus-visible,
body.site-light-theme .theme-toggle-btn.is-active:hover,
body.site-light-theme .theme-toggle-btn.is-active:focus-visible {
  border-color: rgba(223, 142, 255, 0.28) !important;
  background:
    linear-gradient(180deg, rgba(28, 30, 34, 0.98), rgba(10, 12, 16, 1)) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 20px rgba(223, 142, 255, 0.1) !important;
}

body.site-light-theme .system-toggle-btn.is-active {
  border-color: rgba(223, 142, 255, 0.34) !important;
  background: rgba(223, 142, 255, 0.16) !important;
  color: #191613 !important;
  box-shadow: 0 0 16px rgba(223, 142, 255, 0.08) !important;
}

body.site-light-theme .site-top-dropdown-link-cta,
body.site-light-theme .store-admin-link,
body.site-light-theme .product-printify-btn,
body.site-light-theme .product-detail-printify-link,
body.site-light-theme .product-page-back,
body.site-light-theme .product-detail-store-link,
body.site-light-theme .cart-checkout-btn,
body.site-light-theme .admin-secondary-btn,
body.site-light-theme .discount-code {
  background: rgba(var(--light-accent-rgb), 0.12) !important;
  border-color: rgba(var(--light-accent-rgb), 0.34) !important;
  color: #191613 !important;
}

body.site-light-theme .site-top-dropdown-link-cta:hover,
body.site-light-theme .store-admin-link:hover,
body.site-light-theme .store-admin-link:focus-visible,
body.site-light-theme .product-printify-btn:hover,
body.site-light-theme .product-detail-printify-link:hover,
body.site-light-theme .product-page-back:hover,
body.site-light-theme .product-detail-store-link:hover,
body.site-light-theme .cart-checkout-btn:hover {
  background: rgba(var(--light-accent-rgb), 0.2) !important;
  color: #191613 !important;
}

body.site-light-theme .cart-coupon-btn,
body.site-light-theme .cart-secondary-btn,
body.site-light-theme .admin-submit-btn {
  color: #191613 !important;
}

body.site-light-theme .admin-input,
body.site-light-theme .cart-coupon-input,
body.site-light-theme .account-page-shell input,
body.site-light-theme .account-page-shell select,
body.site-light-theme .account-page-shell textarea {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(79, 69, 59, 0.16) !important;
  color: #191613 !important;
  caret-color: #191613 !important;
}

body.site-light-theme .account-cart-summary,
body.site-light-theme .account-cart-line {
  border-color: rgba(82, 88, 96, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 239, 232, 0.96)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    0 16px 30px rgba(58, 56, 52, 0.08);
}

body.site-light-theme .account-cart-summary-row,
body.site-light-theme .account-cart-unit {
  color: #5c6167;
}

body.site-light-theme .account-cart-summary-row strong {
  color: #1f2328;
}

body.site-light-theme .account-newsletter-toggle-track {
  border-color: rgba(82, 88, 96, 0.2);
  background: rgba(92, 97, 103, 0.08);
}

body.site-light-theme .account-newsletter-toggle-thumb {
  background: #3b4046;
}

body.site-light-theme .account-newsletter-toggle-state {
  color: #262b30;
}

body.site-light-theme .account-newsletter-toggle:hover .account-newsletter-toggle-track,
body.site-light-theme .account-newsletter-toggle:focus-visible .account-newsletter-toggle-track {
  border-color: rgba(59, 64, 70, 0.28);
  box-shadow: 0 0 18px rgba(59, 64, 70, 0.08);
}

body.site-light-theme .account-newsletter-toggle.is-on .account-newsletter-toggle-track {
  border-color: rgba(59, 64, 70, 0.28);
  background: rgba(59, 64, 70, 0.14);
}

body.site-light-theme .account-newsletter-toggle.is-on .account-newsletter-toggle-thumb {
  background: #1f2328;
}

body.site-light-theme .account-newsletter-toggle.is-on .account-newsletter-toggle-state {
  color: #1f2328;
}

body.site-light-theme .account-cart-meta span {
  border-color: rgba(82, 88, 96, 0.18);
  background: rgba(92, 97, 103, 0.07);
  color: #2d3338;
}

body.site-light-theme .product-select,
body.site-light-theme .product-detail-spec-grid div,
body.site-light-theme .product-detail-loading,
body.site-light-theme .admin-raw-shell,
body.site-light-theme .admin-preview-detail-specs span,
body.site-light-theme .admin-gallery-row,
body.site-light-theme .admin-upload-btn,
body.site-light-theme .admin-library-card,
body.site-light-theme .admin-promo-card,
body.site-light-theme .admin-preview-tab,
body.site-light-theme .cart-coupon-input,
body.site-light-theme .read-panel-sidebar,
body.site-light-theme .read-panel-viewer,
body.site-light-theme .read-file-tab,
body.site-light-theme .system-panel-status,
body.site-light-theme .read-panel-status,
body.site-light-theme .play-volume-shell,
body.site-light-theme .hero-visual-hover-shell,
body.site-light-theme .hero-visual-hover-image {
  border-color: rgba(79, 69, 59, 0.12) !important;
  background: rgba(255, 255, 255, 0.62) !important;
  color: #191613 !important;
}

body.site-light-theme .product-detail-story-card,
body.site-light-theme .admin-library-thumb,
body.site-light-theme .admin-gallery-thumb,
body.site-light-theme .cart-recommendation-image,
body.site-light-theme .game-window,
body.site-light-theme .game-window-header {
  border-color: rgba(79, 69, 59, 0.12) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 235, 227, 0.98)) !important;
}

body.site-light-theme .read-file-tab:hover,
body.site-light-theme .read-file-tab:focus-visible,
body.site-light-theme .read-file-tab.is-active {
  background: rgba(var(--theme-secondary-rgb), 0.1) !important;
  color: #191613 !important;
}

body.site-light-theme .bg-surface-container-highest,
body.site-light-theme .bg-black,
body.site-light-theme .bg-\[\#2c2c2c\],
body.site-light-theme .bg-\[\#131313\] {
  background-color: rgba(255, 255, 255, 0.64) !important;
}

body.site-light-theme .product-inline-badge,
body.site-light-theme .product-submeta span,
body.site-light-theme .product-detail-meta-strip span,
body.site-light-theme .product-detail-size-chip,
body.site-light-theme .product-category-chip,
body.site-light-theme .product-badge,
body.site-light-theme .product-channel-badge,
body.site-light-theme .apparel-section-count,
body.site-light-theme .visualizer-badge,
body.site-light-theme .cart-count-badge {
  border-color: rgba(var(--light-accent-rgb), 0.24) !important;
  background: rgba(var(--light-accent-rgb), 0.12) !important;
  color: #191613 !important;
  box-shadow: 0 10px 20px rgba(var(--light-accent-rgb), 0.08) !important;
}

body.site-light-theme .cart-count-badge {
  background: rgba(var(--light-accent-rgb), 0.86) !important;
  color: #f4efe8 !important;
}

body.site-light-theme .cart-drawer::before,
body.site-light-theme .account-drawer::before,
body.site-light-theme .admin-drawer::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 18%),
    repeating-linear-gradient(
      180deg,
      rgba(120, 103, 79, 0.04) 0 1px,
      rgba(0, 0, 0, 0) 1px 4px
    ) !important;
  opacity: 0.42 !important;
}

body.site-light-theme .cart-drawer-header,
body.site-light-theme .account-drawer-header,
body.site-light-theme .admin-drawer-header,
body.site-light-theme .cart-summary,
body.site-light-theme .apparel-stat-card,
body.site-light-theme .admin-page-stat-card {
  border-color: rgba(79, 69, 59, 0.12) !important;
  background: rgba(255, 255, 255, 0.5) !important;
}

body.site-light-theme .game-shell {
  background:
    radial-gradient(circle at top, rgba(223, 142, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(var(--light-accent-rgb), 0.04), transparent 38%),
    rgba(244, 239, 232, 0.82) !important;
}

body.site-light-theme .game-window {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.72) inset,
    0 0 0 3px rgba(224, 214, 202, 0.9),
    16px 16px 0 rgba(120, 103, 79, 0.12),
    0 0 42px rgba(var(--light-accent-rgb), 0.08) !important;
}

body.site-light-theme .game-window::after {
  border-color: rgba(79, 69, 59, 0.08) !important;
  mix-blend-mode: multiply !important;
}

body.site-light-theme .system-card {
  border-color: rgba(79, 69, 59, 0.12) !important;
  background: rgba(255, 255, 255, 0.58) !important;
}

body.site-light-theme .text-white,
body.site-light-theme .text-zinc-300,
body.site-light-theme .text-zinc-400,
body.site-light-theme .text-zinc-500,
body.site-light-theme .text-zinc-600,
body.site-light-theme .text-zinc-700,
body.site-light-theme .text-on-surface,
body.site-light-theme .product-name,
body.site-light-theme .product-price,
body.site-light-theme .product-page-title,
body.site-light-theme .account-page-title,
body.site-light-theme .admin-page-title,
body.site-light-theme .site-footer-copy,
body.site-light-theme .system-panel-title,
body.site-light-theme .read-panel-title,
body.site-light-theme .play-panel-title,
body.site-light-theme .game-window-title,
body.site-light-theme .apparel-page-copy,
body.site-light-theme .account-page-copy,
body.site-light-theme .product-copy,
body.site-light-theme .cart-line-copy,
body.site-light-theme .cart-empty,
body.site-light-theme .admin-helper,
body.site-light-theme .admin-product-copy,
body.site-light-theme .admin-product-meta,
body.site-light-theme .account-helper,
body.site-light-theme .account-profile-meta,
body.site-light-theme .account-page-meta,
body.site-light-theme .read-file-copy,
body.site-light-theme .read-file-list,
body.site-light-theme .read-file-heading,
body.site-light-theme .hero-side-title,
body.site-light-theme .hero-side-meta {
  color: #191613 !important;
}

body.site-light-theme .text-zinc-500,
body.site-light-theme .text-zinc-600,
body.site-light-theme .text-zinc-700,
body.site-light-theme .product-price-label,
body.site-light-theme .system-panel-kicker,
body.site-light-theme .system-card-kicker,
body.site-light-theme .play-panel-kicker,
body.site-light-theme .player-status-kicker,
body.site-light-theme .visualizer-kicker,
body.site-light-theme .read-panel-kicker,
body.site-light-theme .game-window-kicker,
body.site-light-theme .store-kicker,
body.site-light-theme .admin-kicker,
body.site-light-theme .admin-label,
body.site-light-theme .product-page-kicker,
body.site-light-theme .product-detail-card-kicker,
body.site-light-theme .cart-line-meta,
body.site-light-theme .site-footer-meta,
body.site-light-theme .player-status-row,
body.site-light-theme .system-panel-status,
body.site-light-theme .read-panel-status,
body.site-light-theme .account-page-stat-grid span {
  color: #5f564d !important;
}

body.site-light-theme .hero-side-en-tag {
  color: rgba(var(--light-accent-rgb), 0.82) !important;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.84),
    0 0 12px rgba(var(--light-accent-rgb), 0.14),
    0 0 20px rgba(var(--light-accent-rgb), 0.08) !important;
}

body.site-light-theme.system-theme-cyan .hero-title,
body.site-light-theme.system-theme-amber .hero-title {
  color: var(--theme-secondary) !important;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.84),
    0 0 14px rgba(var(--theme-secondary-rgb), 0.16),
    0 0 28px rgba(var(--theme-secondary-rgb), 0.1) !important;
}

body.site-light-theme .hero-title::before,
body.site-light-theme .hero-title::after {
  mix-blend-mode: multiply;
}

body.site-light-theme.system-theme-cyan .hero-char:hover,
body.site-light-theme.system-theme-cyan .hero-char.scroll-bright,
body.site-light-theme.system-theme-amber .hero-char:hover,
body.site-light-theme.system-theme-amber .hero-char.scroll-bright {
  color: var(--theme-secondary);
  filter: brightness(1.08);
  text-shadow:
    0 0 12px rgba(var(--theme-secondary-rgb), 0.3),
    0 0 22px rgba(var(--theme-secondary-rgb), 0.16);
}

body.site-light-theme.system-theme-cyan .hero-side-orb svg,
body.site-light-theme.system-theme-amber .hero-side-orb svg {
  color: var(--theme-secondary) !important;
  opacity: 0.96 !important;
  filter: drop-shadow(0 0 14px rgba(var(--theme-secondary-rgb), 0.14));
}

body.site-light-theme.system-theme-cyan .hero-side-orb + div,
body.site-light-theme.system-theme-amber .hero-side-orb + div {
  color: rgba(var(--theme-secondary-rgb), 0.72) !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title {
    animation: none !important;
  }

  .hero-title::before,
  .hero-title::after {
    animation: none !important;
    display: none;
  }
}

body.site-light-theme .hero-side-jp-tag {
  color: #2f2924 !important;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.84),
    0 0 12px rgba(var(--light-accent-rgb), 0.06) !important;
}

body.site-light-theme .hero-side-panel:hover::before,
body.site-light-theme .hero-side-panel:focus-within::before {
  background: rgba(255, 249, 244, 0.94);
}

body.site-light-theme .hero-side-visual::before {
  background: #f4efe8;
}

body.site-light-theme .hero-side-image {
  filter: brightness(0.96) saturate(0.98) drop-shadow(0 8px 18px rgba(72, 58, 40, 0.16));
}

body.site-light-theme .hero-side-visual:hover .hero-side-image,
body.site-light-theme .hero-side-visual:focus-visible .hero-side-image {
  filter: brightness(1.04) saturate(1.02) drop-shadow(0 10px 22px rgba(72, 58, 40, 0.18));
}

body.site-light-theme.home-page-body,
body.site-light-theme.apparel-page-body,
body.site-light-theme .apparel-page-shell,
body.site-light-theme .product-page-shell,
body.site-light-theme .account-page-shell,
body.site-light-theme .admin-page-shell,
body.site-light-theme .policy-page-shell {
  background:
    radial-gradient(circle at top, rgba(223, 142, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(var(--light-accent-rgb), 0.04), transparent 24%),
    #f4efe8 !important;
}

body.site-light-theme .policy-page-card {
  border-color: rgba(79, 69, 59, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 233, 0.98)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 16px 32px rgba(90, 76, 56, 0.08) !important;
}

body.site-light-theme .policy-page-copy,
body.site-light-theme .policy-page-card p,
body.site-light-theme .policy-list {
  color: #564b42;
}

body.site-light-theme .policy-section {
  border-bottom-color: rgba(79, 69, 59, 0.12);
}

body.site-light-theme .policy-section-title {
  color: #1f1b17;
}

body.site-light-theme .policy-emphasis {
  color: #6a4b21;
}

body.site-light-theme .border-\[\#262626\] {
  border-color: rgba(79, 69, 59, 0.16) !important;
}

.play-panel-grid {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
}

.play-thumb-stack {
  display: grid;
  gap: 6px;
}

.play-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  filter: contrast(1.08) saturate(0.88);
}

.play-video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 6px;
  border: 1px solid rgba(0, 238, 252, 0.26);
  background: rgba(0, 238, 252, 0.08);
  color: #00eefc;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.play-video-link:hover,
.play-video-link:focus-visible {
  border-color: rgba(255, 126, 188, 0.38);
  background: rgba(255, 126, 188, 0.12);
  color: #ff8fcd;
}

.play-panel-body {
  display: grid;
  gap: 10px;
}

.play-panel-kicker {
  margin: 0 0 4px;
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
}

.play-panel-title {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.play-time-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.play-progress {
  width: 100%;
  height: 6px;
  appearance: none;
  background: linear-gradient(90deg, #00eefc var(--progress, 0%), rgba(255, 255, 255, 0.12) var(--progress, 0%));
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.play-progress::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #df8eff;
  box-shadow: 0 0 10px rgba(223, 142, 255, 0.5);
}

.play-progress::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 9999px;
  background: #df8eff;
  box-shadow: 0 0 10px rgba(223, 142, 255, 0.5);
}

.play-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.play-volume-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.play-volume-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.play-volume-label {
  color: #00eefc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.play-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      rgba(223, 142, 255, 0.95) 0 var(--volume, 60%),
      rgba(255, 255, 255, 0.14) var(--volume, 60%) 100%
    );
  outline: none;
  cursor: pointer;
}

.play-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 9999px;
  background: #00eefc;
  box-shadow: 0 0 10px rgba(0, 238, 252, 0.46);
}

.play-volume-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 9999px;
  background: #00eefc;
  box-shadow: 0 0 10px rgba(0, 238, 252, 0.46);
}

.play-volume-slider::-moz-range-track {
  height: 2px;
  border: 0;
  background: transparent;
}

.play-volume-mute {
  min-width: 88px;
}

.player-lower-grid {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 10px;
}

.player-status-panel,
.visualizer-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.player-status-panel {
  padding: 10px 9px;
}

.player-status-kicker,
.visualizer-kicker {
  margin: 0 0 8px;
  color: #00eefc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.player-status-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #c7c7c7;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.player-status-row:first-of-type {
  border-top: 0;
}

.player-status-row span:last-child {
  color: #df8eff;
}

.visualizer-panel {
  padding: 10px;
  background:
    radial-gradient(circle at top left, rgba(255, 102, 196, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(0, 238, 252, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 0, 92, 0.04), transparent 34%, rgba(0, 238, 252, 0.04)),
    linear-gradient(180deg, rgba(18, 10, 30, 0.94), rgba(4, 6, 16, 0.99)),
    rgba(0, 0, 0, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 22px rgba(255, 0, 92, 0.08);
}

.visualizer-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  margin-bottom: 8px;
}

.visualizer-title {
  margin: 0;
  color: #f4f4f4;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visualizer-badge {
  padding: 3px 6px;
  border: 1px solid rgba(0, 238, 252, 0.22);
  color: #00eefc;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(0, 238, 252, 0.06);
}

.visualizer-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 194, 107, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(36, 13, 53, 0.98) 0%, rgba(15, 10, 34, 0.96) 44%, rgba(5, 7, 18, 0.98) 100%);
  min-height: 120px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 0 24px rgba(255, 102, 196, 0.08),
    0 0 18px rgba(255, 0, 92, 0.04);
}

.visualizer-canvas,
.visualizer-grid,
.visualizer-scanline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visualizer-canvas {
  display: block;
}

.visualizer-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 102, 196, 0.08) 1px, transparent 1px);
  background-size: 100% 16px, 22px 100%;
  opacity: 0.14;
  mix-blend-mode: screen;
  pointer-events: none;
}

.visualizer-scanline {
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.06) 0 1px,
      rgba(255, 255, 255, 0) 1px 4px
    );
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
}

.play-control-btn {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: #e5e5e5;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.play-control-btn:hover {
  border-color: rgba(0, 238, 252, 0.5);
  color: #00eefc;
}

.play-control-btn.is-primary {
  border-color: rgba(223, 142, 255, 0.5);
  color: #df8eff;
}

.youtube-player-shell {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.crt-flicker {
  animation:
    crt-on 0.3s forwards,
    crt-flicker 0.12s infinite alternate;
}

.vhs-tracking {
  animation:
    crt-on 0.3s forwards,
    crt-flicker 0.12s infinite alternate,
    vhs-tracking 8s ease-in-out infinite;
}

#crt-screen {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}

.power-off #crt-screen {
  animation: crt-off 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.power-on-flicker {
  animation: crt-on 0.3s forwards;
}

.power-off-bg {
  background-color: #000 !important;
  transition: background-color 0.6s ease;
}

.power-quote-overlay {
  position: fixed;
  inset: 0;
  z-index: 740;
  display: grid;
  place-items: center;
  padding: 32px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

#body-container.power-off .power-quote-overlay.is-visible {
  opacity: 1;
}

.power-quote-shell {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.power-quote-text {
  margin: 0;
  max-width: min(78vw, 760px);
  color: rgba(232, 238, 244, 0.88);
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(16px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}

.power-quote-author {
  margin: 0;
  color: rgba(125, 208, 255, 0.76);
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

#power-btn-icon.is-off {
  color: #00eefc;
  filter: drop-shadow(0 0 8px #00eefc);
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes noise-anim {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 10% 5%;
  }

  100% {
    background-position: -5% 10%;
  }
}

@keyframes play-channel-lines {
  0% {
    opacity: 0;
    transform: translateY(-10px) skewX(0deg);
  }

  10% {
    opacity: 0.95;
    transform: translateY(4px) skewX(12deg);
  }

  30% {
    opacity: 0.8;
    transform: translateY(-3px) skewX(-10deg);
  }

  60% {
    opacity: 0.45;
    transform: translateY(2px) skewX(6deg);
  }

  100% {
    opacity: 0;
    transform: translateY(0) skewX(0deg);
  }
}

@keyframes play-channel-noise {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(1);
  }

  12% {
    opacity: 0.8;
    transform: translate(-4px, 2px) scale(1.04);
  }

  24% {
    opacity: 0.65;
    transform: translate(3px, -3px) scale(0.98);
  }

  48% {
    opacity: 0.48;
    transform: translate(-2px, 3px) scale(1.02);
  }

  72% {
    opacity: 0.22;
    transform: translate(2px, -2px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes play-channel-shell {
  0% {
    background: rgba(5, 12, 16, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    filter: none;
  }

  10% {
    background: rgba(255, 255, 255, 0.2);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.2),
      0 0 14px rgba(255, 255, 255, 0.18);
    filter: contrast(1.5) brightness(1.25);
  }

  40% {
    background: rgba(0, 238, 252, 0.14);
    box-shadow:
      inset 0 0 0 1px rgba(0, 238, 252, 0.25),
      0 0 16px rgba(0, 238, 252, 0.2);
    filter: contrast(1.35) brightness(1.15);
  }

  100% {
    background: rgba(5, 12, 16, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    filter: none;
  }
}

@keyframes play-channel-content {
  0% {
    transform: translateX(0);
    text-shadow: none;
  }

  15% {
    transform: translateX(-3px);
    text-shadow: -2px 0 rgba(255, 0, 92, 0.75), 2px 0 rgba(0, 238, 252, 0.75);
  }

  35% {
    transform: translateX(4px);
    text-shadow: 3px 0 rgba(255, 255, 255, 0.5), -2px 0 rgba(0, 238, 252, 0.65);
  }

  60% {
    transform: translateX(-2px);
    text-shadow: -2px 0 rgba(255, 0, 92, 0.45), 2px 0 rgba(0, 238, 252, 0.45);
  }

  100% {
    transform: translateX(0);
    text-shadow: none;
  }
}

@keyframes static-flicker {
  0% {
    opacity: 0.08;
    transform: translate(0, 0);
  }

  25% {
    opacity: 0.16;
    transform: translate(-1px, 1px);
  }

  50% {
    opacity: 0.1;
    transform: translate(1px, -1px);
  }

  75% {
    opacity: 0.18;
    transform: translate(1px, 1px);
  }

  100% {
    opacity: 0.09;
    transform: translate(0, 0);
  }
}

@keyframes static-drift {
  0% {
    background-position: 0 0, 0 0;
  }

  50% {
    background-position: 24px -18px, 0 3px;
  }

  100% {
    background-position: -16px 20px, 0 0;
  }
}

@keyframes static-shift {
  0% {
    transform: translate(0, 0);
  }

  12.5% {
    transform: translate(-1.5%, 1%);
  }

  25% {
    transform: translate(1%, -1.25%);
  }

  37.5% {
    transform: translate(1.25%, 1.5%);
  }

  50% {
    transform: translate(-1%, -0.75%);
  }

  62.5% {
    transform: translate(1.5%, 0.5%);
  }

  75% {
    transform: translate(-0.75%, 1.25%);
  }

  87.5% {
    transform: translate(0.75%, -1.5%);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes module-sweep {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@keyframes crt-flicker {
  0% {
    opacity: 0.97;
  }

  100% {
    opacity: 1;
  }
}

@keyframes vhs-tracking {
  0%,
  100% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(0);
  }

  12% {
    transform: translateX(-2px);
  }

  13% {
    transform: translateX(2px);
  }

  14% {
    transform: translateX(-1px);
  }

  15% {
    transform: translateX(0);
  }

  55% {
    transform: translateX(0);
  }

  57% {
    transform: translateX(1px);
  }

  58% {
    transform: translateX(-2px);
  }

  59% {
    transform: translateX(1px);
  }

  60% {
    transform: translateX(0);
  }
}

@keyframes crt-off {
  0% {
    transform: scaleY(1) scaleX(1);
    filter: brightness(1);
    background-color: transparent;
  }

  40% {
    transform: scaleY(0.005) scaleX(1.1);
    filter: brightness(2);
    background-color: transparent;
  }

  70% {
    transform: scaleY(0.005) scaleX(0.005);
    filter: brightness(10);
    background-color: #ffffff;
    opacity: 1;
  }

  90% {
    transform: scaleY(0.002) scaleX(0.002);
    filter: brightness(20);
    background-color: #ffffff;
    opacity: 1;
  }

  100% {
    transform: scaleY(0) scaleX(0);
    filter: brightness(0);
    opacity: 0;
  }
}

@keyframes crt-on {
  0% {
    opacity: 0;
    filter: brightness(3);
  }

  10% {
    opacity: 1;
    filter: brightness(0.5);
  }

  20% {
    opacity: 0.5;
    filter: brightness(2);
  }

  30% {
    opacity: 1;
    filter: brightness(1);
  }

  100% {
    opacity: 1;
    filter: brightness(1);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes operator-mark-flicker {
  0%,
  100% {
    opacity: 0.92;
    transform: translateY(0);
    filter: brightness(1);
  }

  14% {
    opacity: 1;
    transform: translateY(-0.5px);
    filter: brightness(1.08);
  }

  15% {
    opacity: 0.72;
  }

  16% {
    opacity: 1;
  }

  52% {
    opacity: 0.88;
    transform: translateY(0.4px);
    filter: brightness(0.96);
  }

  53% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes operator-mark-frame {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1.04);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.1);
  }
}

@keyframes operator-mark-scan {
  0% {
    transform: translateY(-13px);
    opacity: 0;
  }

  18% {
    opacity: 0.72;
  }

  50% {
    transform: translateY(0);
    opacity: 0.78;
  }

  82% {
    opacity: 0.28;
  }

  100% {
    transform: translateY(13px);
    opacity: 0;
  }
}

@keyframes status-bar-primary {
  0% {
    width: 58%;
    opacity: 0.92;
  }

  28% {
    width: 71%;
    opacity: 1;
  }

  56% {
    width: 62%;
    opacity: 0.88;
  }

  100% {
    width: 66%;
    opacity: 0.96;
  }
}

@keyframes status-bar-secondary {
  0% {
    width: 84%;
    opacity: 0.9;
  }

  22% {
    width: 91%;
    opacity: 1;
  }

  54% {
    width: 86%;
    opacity: 0.9;
  }

  100% {
    width: 89%;
    opacity: 0.98;
  }
}

@keyframes status-bar-tertiary {
  0% {
    width: 10%;
    opacity: 0.82;
  }

  30% {
    width: 19%;
    opacity: 1;
  }

  62% {
    width: 8%;
    opacity: 0.74;
  }

  100% {
    width: 14%;
    opacity: 0.9;
  }
}

@media (max-width: 767px) {
  .crt-overlay,
  .vhs-noise,
  .retro-static,
  .static-noise {
    opacity: 0.072;
  }
}

@media (max-width: 1023px) {
  .home-section + .home-section {
    margin-top: 3.5rem;
  }

  .home-section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer-links,
  .site-footer-meta {
    justify-content: start;
    justify-items: start;
  }

  .store-header {
    flex-direction: column;
    align-items: start;
  }

  .featured-drop-header {
    flex-direction: column;
    align-items: start;
  }

  .featured-drop-layout,
  .featured-drop-main {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-panel-main {
    min-height: 420px;
  }

  .admin-page-layout {
    grid-template-columns: 1fr;
  }

  .account-page-layout {
    grid-template-columns: 1fr;
  }

  .apparel-overview-panel {
    grid-template-columns: 1fr;
  }

  .apparel-section-head {
    flex-direction: column;
    align-items: start;
  }

  .apparel-section-meta {
    justify-items: start;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .site-header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }

  .site-brand-link {
    font-size: 1rem;
  }

  .site-top-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
  }

  .site-top-dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .site-top-dropdown::after {
    display: none;
  }

  .site-top-dropdown-menu {
    left: 0;
    min-width: min(220px, calc(100vw - 32px));
    transform: translateX(0) translateY(6px);
  }

  .site-top-dropdown:hover .site-top-dropdown-menu,
  .site-top-dropdown:focus-within .site-top-dropdown-menu {
    transform: translateX(0) translateY(0);
  }

  .site-top-link {
    min-height: 32px;
    padding-inline: 9px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .site-header-spacer {
    display: none;
  }

  .site-utility-cluster {
    top: 14px !important;
    right: 14px !important;
  }

  #main-canvas,
  .product-page-shell,
  .apparel-page-shell,
  .admin-page-shell,
  .account-page-shell,
  .policy-page-shell {
    padding-top: 152px !important;
  }

  .cart-drawer,
  .account-drawer,
  .admin-drawer {
    top: 142px;
    right: 14px;
    width: min(420px, calc(100vw - 28px));
    max-height: calc(100vh - 158px);
  }

  .home-section-head {
    margin-bottom: 1.5rem;
  }

  .home-section + .home-section {
    margin-top: 2.75rem;
  }

  .surface-panel,
  .catalog-link-card,
  .signal-banner,
  .store-shell,
  .featured-drop-shell {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 16px rgba(0, 238, 252, 0.028);
  }

  .store-shell {
    padding: 16px;
  }

  .featured-drop-shell {
    padding: 16px;
  }

  .featured-support-card,
  .cart-line {
    grid-template-columns: 1fr;
  }

  .cart-coupon-row,
  .cart-action-row {
    grid-template-columns: 1fr;
  }

  .cart-line-visual {
    grid-row: auto;
    min-height: 180px;
  }

  .product-config {
    grid-template-columns: 1fr 1fr;
  }

  .store-admin-strip,
  .admin-console-top,
  .admin-product-head,
  .admin-product-meta {
    flex-direction: column;
    align-items: start;
  }

  .store-admin-actions,
  .apparel-page-header,
  .apparel-page-actions {
    flex-direction: column;
    align-items: start;
  }

  .admin-action-row,
  .admin-product-actions,
  .account-action-row {
    flex-direction: column;
    align-items: start;
  }

  .admin-editor-group-head,
  .admin-page-section-head {
    flex-direction: column;
    align-items: start;
  }

  .admin-form-grid-two,
  .admin-preview-tabs {
    grid-template-columns: 1fr;
  }

  .admin-gallery-row,
  .admin-preview-detail-shell {
    grid-template-columns: 1fr;
  }

  .admin-preview-detail-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-instructions {
    flex-direction: column;
    gap: 8px;
  }

  .discount-row {
    flex-direction: column;
    align-items: start;
  }

  .hero-side-grid {
    gap: 1.75rem;
  }

  .hero-side-panel {
    width: min(100%, 11.5rem);
    margin-inline: auto;
  }

  .hero-side-label-stack-left {
    left: -2.4rem;
  }

  .hero-side-label-stack-right {
    right: -2.4rem;
  }

  .hero-side-jp-tag {
    font-size: 1.6rem;
  }

  .hero-side-en-tag {
    font-size: 0.8rem;
  }

  .hero-side-title {
    font-size: 0.8rem;
  }

  .hero-side-meta {
    font-size: 0.52rem;
    letter-spacing: 0.15em;
  }

  .product-page-shell {
    padding-inline: 14px;
  }

  .product-page-header,
  .product-detail-gallery-head {
    flex-direction: column;
    align-items: start;
  }

  .product-detail-purchase-row {
    grid-template-columns: 1fr;
  }

  .product-page-brand {
    text-align: left;
  }

  .product-detail-gallery-grid,
  .product-detail-spec-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-panel-main {
    min-height: 320px;
  }

  .product-detail-gallery-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-page-shell {
    padding-inline: 14px;
  }

  .admin-page-header,
  .admin-page-toolbar,
  .admin-page-section-head,
  .admin-library-main {
    flex-direction: column;
    align-items: start;
  }

  .account-page-header,
  .policy-page-header,
  .account-page-overview-head,
  .account-page-section-head {
    flex-direction: column;
    align-items: start;
  }

  .account-page-overview-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-page-stats {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .admin-backend-grid {
    grid-template-columns: 1fr;
  }

  .admin-library-main {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-library-list {
    grid-template-columns: 1fr;
  }

  .admin-search-input,
  .admin-preview-card {
    max-width: none;
  }

  .account-page-shell {
    padding-inline: 14px;
  }

  .policy-page-shell {
    padding-inline: 14px;
  }

  .account-page-overview-card .account-page-stat-grid,
  .account-page-stat-grid,
  .apparel-stat-grid,
  .account-page-form-grid,
  .account-page-login-shell {
    grid-template-columns: 1fr;
  }

  .account-cart-line {
    grid-template-columns: 1fr;
  }

  .account-page-span-2 {
    grid-column: auto;
  }

  .site-footer-copy {
    max-width: none;
  }

  .site-footer-links {
    gap: 8px;
  }

  .site-footer-link {
    min-height: 38px;
    padding-inline: 12px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .play-panel {
    width: min(364px, calc(100vw - 24px));
  }

  .play-panel-grid,
  .player-lower-grid,
  .play-volume-row {
    grid-template-columns: 1fr;
  }
}
