:root {
  color-scheme: dark;
  --sand: #0d1720;
  --sand-2: #142635;
  --cream: #17212d;
  --brown: #4d2135;
  --brown-2: #2c1122;
  --green: #8ee8d0;
  --green-dark: #2f8b7e;
  --blue: #073e58;
  --discord: #5865f2;
  --gold: #e7a33a;
  --ink: #f6e8d6;
  --paper: #1d2835;
  --muted: #bfaab0;
  --line: rgba(246, 232, 214, 0.13);
  --roof: #063e59;
  --roof-dark: #021c2c;
  --plum: #32172a;
  --lilac: #c79aff;
  --red: #ef4b4b;
  --peach: #e29b7a;
  --font-main: "Fredoka", "Baloo 2", ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  --font-price: var(--font-main);
  --font-body: var(--font-main);
  --font-display: var(--font-main);
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  --motion-ease: cubic-bezier(.22, .61, .36, 1);
  --motion-ease-out: cubic-bezier(.16, 1, .3, 1);
  --motion-ease-soft: cubic-bezier(.25, .1, .25, 1);
  --motion-fast: 180ms;
  --motion-base: 280ms;
  --motion-slow: 420ms;
  --motion-enter: 760ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0, rgba(77, 33, 53, 0.36), transparent 32rem),
    linear-gradient(180deg, #0d1720, #101823 60%, #0b121a);
  color: var(--ink);
  font-family: var(--font-body);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.025em;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  clip: rect(0 0 0 0);
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.progression-section,
.discover-worlds,
.faq-section,
.final-cta,
.site-footer {
  contain-intrinsic-size: auto 900px;
  content-visibility: auto;
}

.top-nav {
  align-items: center;
  animation: navDrop var(--motion-enter) var(--motion-ease-out) both;
  backdrop-filter: none;
  background: rgba(15, 10, 19, 0.96);
  border: 1px solid rgba(255, 122, 149, 0.08);
  border-radius: 13px;
  box-sizing: border-box;
  box-shadow:
    0 0 0 6px rgba(66, 19, 54, 0.94),
    0 14px 32px rgba(0, 0, 0, 0.34);
  color: white;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  left: 18px;
  min-height: 54px;
  padding: 7px 8px 7px 14px;
  position: fixed;
  right: 18px;
  top: 12px;
  z-index: 30;
}

.nav-brand,
.top-nav nav,
.nav-actions,
.discord-chip,
.shop-chip,
.language-chip,
.login-chip,
.hero-action-row,
.ip-button,
.button-row,
.brown-button,
.blue-button,
.cart-head,
.cart-row,
.cart-total {
  align-items: center;
  display: flex;
}

.nav-brand {
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-brand img {
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.42));
  height: 42px;
  object-fit: contain;
  width: 52px;
}

.nav-brand span {
  color: var(--ink);
  display: inline-block;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.55);
}

.top-nav nav {
  gap: clamp(3px, 0.8vw, 10px);
  justify-content: center;
  justify-self: center;
}

.top-nav nav a {
  border-radius: 9px;
  color: #e5dce7;
  font-family: var(--font-main);
  font-size: clamp(0.66rem, 0.82vw, 0.78rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  padding: 10px clamp(8px, 1vw, 14px);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.72);
  text-transform: uppercase;
  transition: background var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.top-nav nav a:hover,
.top-nav nav a[aria-current="page"] {
  background: rgba(24, 201, 183, 0.14);
  box-shadow: inset 0 0 0 1px rgba(142, 232, 208, 0.08), 0 0 16px rgba(24, 201, 183, 0.08);
  color: #8ee8d0;
  transform: translateY(-1px);
}

.nav-toast {
  align-items: center;
  background: linear-gradient(135deg, rgba(13, 23, 32, 0.98), rgba(50, 23, 42, 0.98));
  border: 1px solid rgba(142, 232, 208, 0.42);
  border-radius: 12px;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(24, 201, 183, 0.08),
    0 0 24px rgba(24, 201, 183, 0.14);
  display: flex;
  gap: 11px;
  max-width: min(340px, calc(100vw - 36px));
  min-width: 292px;
  opacity: 0;
  overflow: hidden;
  padding: 12px 15px 12px 12px;
  pointer-events: none;
  position: fixed;
  right: 18px;
  top: 84px;
  transform: translate3d(18px, -6px, 0) scale(0.96);
  transition:
    opacity var(--motion-base) var(--motion-ease),
    transform var(--motion-base) var(--motion-ease-out);
  z-index: 90;
}

.nav-toast::before {
  background: linear-gradient(180deg, #8ee8d0, #18c9b7);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 3px;
}

.nav-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.nav-toast-icon {
  align-items: center;
  background: rgba(24, 201, 183, 0.14);
  border: 1px solid rgba(142, 232, 208, 0.24);
  border-radius: 9px;
  color: #8ee8d0;
  display: flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
}

.nav-toast-icon svg {
  height: 18px;
  width: 18px;
}

.nav-toast-copy {
  display: grid;
  gap: 3px;
}

.nav-toast-copy strong {
  color: #f6e8d6;
  font-family: var(--font-main);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toast-copy small {
  color: #bfaab0;
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-actions {
  gap: 8px;
  justify-content: flex-end;
}

.top-nav .language-select {
  display: block;
}

.top-nav .login-chip {
  display: flex;
}

.discord-chip,
.shop-chip,
.language-chip,
.login-chip,
.brown-button,
.blue-button,
.ip-button,
.discord-float,
.checkout-button,
.icon-button {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-weight: 950;
  isolation: isolate;
  justify-content: center;
  min-height: 38px;
  position: relative;
  transition:
    box-shadow var(--motion-base) var(--motion-ease),
    filter var(--motion-base) var(--motion-ease),
    transform var(--motion-base) var(--motion-ease-out);
}

.discord-chip,
.shop-chip,
.language-chip,
.login-chip,
.brown-button,
.blue-button,
.checkout-button,
.icon-button,
.discord-float,
.slide-arrow,
.store-category,
.info-button,
.buy-button,
.language-menu button,
.login-close,
.cart-remove {
  overflow: hidden;
}

.discord-chip,
.shop-chip,
.language-chip,
.login-chip,
.brown-button,
.blue-button,
.ip-button,
.discord-float,
.checkout-button,
.icon-button,
.slide-arrow,
.store-category,
.info-button,
.buy-button,
.language-menu button,
.login-close,
.cart-remove {
  isolation: isolate;
  position: relative;
  backface-visibility: hidden;
  transition:
    box-shadow var(--motion-base) var(--motion-ease),
    filter var(--motion-base) var(--motion-ease),
    transform var(--motion-base) var(--motion-ease-out);
}

.discord-chip::before,
.shop-chip::before,
.language-chip::before,
.login-chip::before,
.brown-button::before,
.blue-button::before,
.ip-button::before,
.discord-float::before,
.checkout-button::before,
.icon-button::before,
.slide-arrow::before,
.store-category::before,
.info-button::before,
.buy-button::before,
.language-menu button::before,
.login-close::before,
.cart-remove::before,
.discord-chip::after,
.shop-chip::after,
.language-chip::after,
.login-chip::after,
.brown-button::after,
.blue-button::after,
.ip-button::after,
.discord-float::after,
.checkout-button::after,
.icon-button::after,
.slide-arrow::after,
.store-category::after,
.info-button::after,
.buy-button::after,
.language-menu button::after,
.login-close::after,
.cart-remove::after {
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.discord-chip::before,
.shop-chip::before,
.language-chip::before,
.login-chip::before,
.brown-button::before,
.blue-button::before,
.ip-button::before,
.discord-float::before,
.checkout-button::before,
.icon-button::before,
.slide-arrow::before,
.store-category::before,
.info-button::before,
.buy-button::before,
.language-menu button::before,
.login-close::before,
.cart-remove::before {
  border: 1px solid rgba(246, 232, 214, 0.34);
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity var(--motion-base) var(--motion-ease),
    transform var(--motion-base) var(--motion-ease-out);
}

.discord-chip::after,
.shop-chip::after,
.language-chip::after,
.login-chip::after,
.brown-button::after,
.blue-button::after,
.ip-button::after,
.discord-float::after,
.checkout-button::after,
.icon-button::after,
.slide-arrow::after,
.store-category::after,
.info-button::after,
.buy-button::after,
.language-menu button::after,
.login-close::after,
.cart-remove::after {
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.42) 48%, transparent 62% 100%);
  background-position: 135% 0;
  background-size: 250% 100%;
  opacity: 0;
  transition:
    background-position 720ms var(--motion-ease-out),
    opacity var(--motion-base) var(--motion-ease);
}

.discord-chip:hover,
.shop-chip:hover,
.language-chip:hover,
.login-chip:hover,
.brown-button:hover,
.blue-button:hover,
.ip-button:hover,
.discord-float:hover,
.checkout-button:hover,
.icon-button:hover,
.slide-arrow:hover,
.store-category:hover,
.info-button:hover,
.buy-button:hover,
.language-menu button:hover,
.login-close:hover,
.cart-remove:hover {
  filter: brightness(1.05);
  transform: translate3d(0, -2px, 0);
}

.discord-chip:hover::before,
.shop-chip:hover::before,
.language-chip:hover::before,
.login-chip:hover::before,
.brown-button:hover::before,
.blue-button:hover::before,
.ip-button:hover::before,
.discord-float:hover::before,
.checkout-button:hover::before,
.icon-button:hover::before,
.slide-arrow:hover::before,
.store-category:hover::before,
.info-button:hover::before,
.buy-button:hover::before,
.language-menu button:hover::before,
.login-close:hover::before,
.cart-remove:hover::before {
  opacity: 1;
  transform: scale(1);
}

.discord-chip:hover::after,
.shop-chip:hover::after,
.language-chip:hover::after,
.login-chip:hover::after,
.brown-button:hover::after,
.blue-button:hover::after,
.ip-button:hover::after,
.discord-float:hover::after,
.checkout-button:hover::after,
.icon-button:hover::after,
.slide-arrow:hover::after,
.store-category:hover::after,
.info-button:hover::after,
.buy-button:hover::after,
.language-menu button:hover::after,
.login-close:hover::after,
.cart-remove:hover::after {
  background-position: -45% 0;
  opacity: 1;
}

.discord-chip:active,
.shop-chip:active,
.language-chip:active,
.login-chip:active,
.brown-button:active,
.blue-button:active,
.ip-button:active,
.discord-float:active,
.checkout-button:active,
.icon-button:active,
.slide-arrow:active,
.info-button:active,
.buy-button:active,
.language-menu button:active,
.login-close:active,
.cart-remove:active {
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.24);
  transform: translate3d(0, 1px, 0) scale(0.992);
}

.store-category:active {
  transform: translate3d(1px, 0, 0) scale(0.992);
}

.discord-chip {
  background: linear-gradient(180deg, #1649c9 0%, #0b2b8e 100%);
  border: 1px solid rgba(64, 112, 255, 0.48);
  color: white;
  min-height: 40px;
  width: 40px;
}

.discord-icon {
  display: block;
  height: 20px;
  width: 20px;
}

.shop-chip {
  background: linear-gradient(180deg, #8ee8d0 0%, #18c9b7 100%);
  border: 1px solid rgba(142, 232, 208, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 0 rgba(4, 83, 79, 0.7),
    0 0 18px rgba(24, 201, 183, 0.2);
  color: #0b1720;
  font-family: var(--font-main);
  font-size: 0.7rem;
  gap: 6px;
  letter-spacing: 0.08em;
  min-height: 34px;
  min-width: 0;
  padding: 0 10px;
  text-shadow: none;
  text-transform: uppercase;
}

.shop-chip svg {
  height: 16px;
  width: 16px;
}

.top-nav .shop-chip strong {
  display: none;
}

.language-select {
  position: relative;
}

.language-chip,
.login-chip {
  background: rgba(246, 232, 214, 0.08);
  color: white;
  gap: 7px;
  padding: 0 12px;
  text-transform: uppercase;
}

.language-chip svg {
  height: 18px;
  width: 18px;
}

.language-menu {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  min-width: 142px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 9px);
  transform: translate3d(0, -4px, 0);
  transition:
    opacity var(--motion-fast) var(--motion-ease),
    transform var(--motion-base) var(--motion-ease-out);
  z-index: 36;
}

.language-select.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.language-menu button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  padding: 9px 10px;
  text-align: left;
}

.language-menu button:hover {
  background: rgba(142, 232, 208, 0.12);
}

.player-head-frame {
  background: transparent;
  display: block;
  height: 26px;
  overflow: hidden;
  position: relative;
  width: 26px;
}

.player-head-frame img {
  height: 100%;
  image-rendering: pixelated;
  object-fit: cover;
  width: 100%;
}

.hero-stage {
  background: #0b1720;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-background-video {
  filter: none;
  height: calc(100% + 20px);
  inset: -10px;
  object-fit: cover;
  opacity: 0.86;
  pointer-events: none;
  position: absolute;
  transform: scale(1.025);
  width: calc(100% + 20px);
  z-index: 0;
}

.hero-stage::before {
  background:
    radial-gradient(circle at 78% 30%, rgba(6, 62, 89, 0.34), transparent 32%),
    radial-gradient(circle at 10% 77%, rgba(199, 154, 255, 0.13), transparent 25%),
    linear-gradient(181deg, rgba(50, 23, 42, 0.56) 0%, rgba(11, 23, 32, 0.76) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-stage::after {
  background: linear-gradient(180deg, rgba(29, 40, 53, 0.96), #121d28);
  border-radius: 50% 50% 0 0;
  bottom: -190px;
  content: "";
  height: 180px;
  left: -8%;
  position: absolute;
  right: -8%;
  z-index: 1;
}

.roof-ornament {
  height: 124px;
  pointer-events: none;
  width: min(760px, 78vw);
}

.roof-ornament::before,
.roof-ornament::after,
.roof-ornament span,
.roof-ornament span::before,
.roof-ornament span::after {
  content: "";
  position: absolute;
}

.roof-ornament::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='760' height='104' viewBox='0 0 760 104'%3E%3Cdefs%3E%3ClinearGradient id='tile' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop stop-color='%23085875'/%3E%3Cstop offset='.55' stop-color='%23063e59'/%3E%3Cstop offset='1' stop-color='%23021c2c'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M70 10H690L744 72H16Z' fill='%23010f1c' opacity='.65'/%3E%3Cpath d='M83 4H677L724 58H36Z' fill='url(%23tile)' stroke='%23021121' stroke-width='6'/%3E%3Cpath d='M83 4H677L690 19H70Z' fill='%23086c8a' opacity='.25'/%3E%3Cpath d='M87 20H673M75 36H685M60 52H700' stroke='%23021b2a' stroke-width='5' opacity='.72'/%3E%3Cpath d='M119 7L112 58M175 7L171 58M231 7L229 58M286 7L286 58M474 7L474 58M531 7L533 58M587 7L591 58M643 7L650 58' stroke='%238ee8d0' stroke-width='3' opacity='.24'/%3E%3Cpath d='M50 60H710V76H50Z' fill='%235b2a3d' stroke='%232c1122' stroke-width='5'/%3E%3Cpath d='M32 76H728V91H32Z' fill='%232c1122'/%3E%3Cpath d='M60 76H700' stroke='%236b334a' stroke-width='5'/%3E%3Cpath d='M110 76V88M164 76V88M218 76V88M272 76V88M326 76V88M380 76V88M434 76V88M488 76V88M542 76V88M596 76V88M650 76V88' stroke='%235b2a3d' stroke-width='4'/%3E%3C/svg%3E") center top / 100% 104px no-repeat;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22760%22%20height%3D%22124%22%20viewBox%3D%220%200%20760%20124%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22a%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%3Cstop%20stop-color%3D%22%230d7893%22%2F%3E%3Cstop%20offset%3D%22.5%22%20stop-color%3D%22%2306435f%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23021a2b%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22b%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%3Cstop%20stop-color%3D%22%230a5e7a%22%2F%3E%3Cstop%20offset%3D%22.55%22%20stop-color%3D%22%23042f49%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23010f1c%22%2F%3E%3C%2FlinearGradient%3E%3Cpattern%20id%3D%22p%22%20width%3D%2248%22%20height%3D%2252%22%20patternUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20d%3D%22M3%209C11-2%2037-2%2045%209l3%2020c-8%2010-18%2011-24%204-6%207-16%206-24-4Z%22%20fill%3D%22url(%23a)%22%20stroke%3D%22%2321111a%22%20stroke-width%3D%224%22%2F%3E%3Cpath%20d%3D%22M27%2035c8-11%2034-11%2042%200l3%2020c-8%2010-18%2011-24%204-6%207-16%206-24-4Z%22%20fill%3D%22url(%23b)%22%20stroke%3D%22%2321111a%22%20stroke-width%3D%224%22%2F%3E%3Cpath%20d%3D%22M19%209c6-4%2015-3%2022%202M43%2035c6-4%2015-3%2022%202%22%20fill%3D%22none%22%20stroke%3D%22%238ee8d0%22%20stroke-width%3D%222%22%20opacity%3D%22.18%22%2F%3E%3C%2Fpattern%3E%3CclipPath%20id%3D%22c%22%3E%3Cpath%20d%3D%22M68%203h624l54%2092H14Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M70%2015h620l66%2092H4Z%22%20fill%3D%22%23010914%22%20opacity%3D%22.68%22%2F%3E%3Cg%20clip-path%3D%22url(%23c)%22%3E%3Crect%20width%3D%22760%22%20height%3D%2298%22%20fill%3D%22%23031829%22%2F%3E%3Crect%20width%3D%22760%22%20height%3D%2298%22%20fill%3D%22url(%23p)%22%2F%3E%3Cpath%20d%3D%22M17%2085c54-13%20101%2013%20154%200s101%2013%20154%200%20101%2013%20154%200%20101%2013%20154%200%2088%205%20113%200%22%20fill%3D%22none%22%20stroke%3D%22%235b2a3d%22%20stroke-width%3D%2210%22%20opacity%3D%22.72%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M68%203h624l54%2092H14Z%22%20fill%3D%22none%22%20stroke%3D%22%23160b15%22%20stroke-width%3D%227%22%2F%3E%3Cpath%20d%3D%22M47%2088h666v17H47Z%22%20fill%3D%22%235b2a3d%22%20stroke%3D%22%232c1122%22%20stroke-width%3D%225%22%2F%3E%3Cpath%20d%3D%22M28%20104h704v16H28Z%22%20fill%3D%22%232c1122%22%2F%3E%3Cpath%20d%3D%22M62%20104h636%22%20stroke%3D%22%236b334a%22%20stroke-width%3D%225%22%2F%3E%3Cpath%20d%3D%22M108%20104v14M162%20104v14M216%20104v14M270%20104v14M324%20104v14M378%20104v14M432%20104v14M486%20104v14M540%20104v14M594%20104v14M648%20104v14%22%20stroke%3D%22%235b2a3d%22%20stroke-width%3D%224%22%2F%3E%3C%2Fsvg%3E") center top / 100% 124px no-repeat;
  height: 124px;
  inset: 0;
  z-index: 0;
}

.roof-ornament::before {
  background:
    repeating-linear-gradient(180deg, rgba(246, 232, 214, 0.05) 0 3px, transparent 3px 12px),
    linear-gradient(180deg, #5b2a3d, var(--brown));
  border: 4px solid var(--brown-2);
  box-shadow: inset 0 0 0 3px rgba(44, 17, 34, 0.72);
  color: #b9ddd7;
  content: attr(data-label);
  display: grid;
  font-size: clamp(0.95rem, 2.4vw, 1.6rem);
  font-weight: 950;
  height: 64px;
  left: 31%;
  letter-spacing: 0;
  line-height: 1;
  place-items: center;
  text-shadow: 3px 3px 0 #1b0f1b;
  top: 4px;
  text-transform: uppercase;
  width: 38%;
  z-index: 2;
}

.roof-ornament span {
  background: transparent;
  height: 1px;
  left: 4%;
  right: 4%;
  top: 104px;
  z-index: 3;
}

.roof-ornament span::before,
.roof-ornament span::after {
  background:
    linear-gradient(90deg, transparent 47%, #c8c1b8 47% 53%, transparent 53%) 0 0 / 100% 18px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='58' viewBox='0 0 32 58'%3E%3Crect x='3' y='0' width='26' height='58' rx='1' fill='%23f2eee5'/%3E%3Crect x='3' y='0' width='26' height='5' fill='%2321111a'/%3E%3Crect x='3' y='53' width='26' height='5' fill='%2321111a'/%3E%3Ccircle cx='16' cy='17' r='9' fill='%23a82638' stroke='%2321111a' stroke-width='1'/%3E%3Cpath d='M16 27 L6 49 M16 27 L12 49 M16 27 L20 49 M16 27 L26 49' stroke='%23877f7b' stroke-width='1'/%3E%3Cpath d='M4 42 C9 39 12 43 16 42 C20 41 23 39 28 42' fill='none' stroke='%2321111a' stroke-width='1.4'/%3E%3Ccircle cx='16' cy='42' r='1.4' fill='%2321111a'/%3E%3C/svg%3E") 50% 17px / 32px 58px no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
  height: 75px;
  top: 4px;
  width: 32px;
}

.roof-ornament span::before {
  left: 3%;
}

.roof-ornament span::after {
  right: 3%;
}

.roof-ornament {
  height: 96px;
}

.roof-ornament::after {
  background: var(--roof-image) center top / 100% 96px no-repeat;
  height: 96px;
}

.roof-ornament::before {
  height: 46px;
  left: 31%;
  top: 10px;
  width: 38%;
}

.roof-ornament span {
  background: transparent;
  height: 1px;
  top: 76px;
}

.hero-center {
  animation: heroRise 900ms var(--motion-ease-out) 160ms both;
  display: grid;
  left: 50%;
  place-items: center;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero-logo {
  animation: logoPop 860ms var(--motion-ease-out) 300ms both, gentleFloat 6.8s var(--motion-ease-soft) 1.2s infinite;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.34));
  width: min(360px, 58vw);
}

.hero-tagline {
  color: #fff9f0;
  font-family: var(--font-main);
  font-size: clamp(0.86rem, 1.45vw, 1.08rem);
  letter-spacing: 0.015em;
  line-height: 1.45;
  margin: 12px 0 0;
  max-width: min(680px, 88vw);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.92), 0 0 18px rgba(0, 0, 0, 0.55);
}

.hero-tagline strong {
  color: #fff;
  font-weight: 900;
}

.hero-action-row {
  gap: 10px;
  justify-content: center;
  margin-top: 0;
}

.hero-lower-actions {
  display: grid;
  justify-items: center;
  margin-top: 16px;
  transform: translateY(clamp(110px, 14vh, 150px));
}

.ip-button {
  animation: buttonPop 680ms var(--motion-ease-out) 560ms both, softPulse 4.2s var(--motion-ease-soft) 1.5s infinite;
  background: linear-gradient(180deg, #8ee8d0 0%, #18c9b7 100%);
  border: 1px solid rgba(142, 232, 208, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 5px 0 rgba(4, 83, 79, 0.7),
    0 0 20px rgba(24, 201, 183, 0.2);
  color: #0b1720;
  font-family: var(--font-main);
  gap: 10px;
  letter-spacing: 0.06em;
  min-height: 48px;
  min-width: 300px;
  padding: 0 22px;
  position: relative;
  text-shadow: none;
  text-transform: uppercase;
}

.ip-label-stack {
  display: grid;
  min-width: 224px;
  overflow: hidden;
  place-items: center;
  position: relative;
}

.ip-label-stack span {
  grid-area: 1 / 1;
  transition:
    opacity var(--motion-base) var(--motion-ease),
    transform var(--motion-base) var(--motion-ease-out);
}

.ip-label-hover,
.ip-label-copied {
  opacity: 0;
  transform: translate3d(0, 120%, 0);
}

.ip-button:hover .ip-label-default {
  opacity: 0;
  transform: translate3d(0, -120%, 0);
}

.ip-button:hover .ip-label-hover {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ip-button.is-copied .ip-label-default,
.ip-button.is-copied .ip-label-hover {
  opacity: 0;
  transform: translate3d(0, -120%, 0);
}

.ip-button.is-copied .ip-label-copied {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ip-button small {
  align-items: center;
  background: linear-gradient(180deg, #33dc8e, #16aa67);
  border: 1px solid rgba(142, 232, 208, 0.5);
  border-radius: 8px;
  box-shadow: 0 3px 0 rgba(3, 83, 51, 0.58), 0 0 14px rgba(24, 201, 123, 0.2);
  color: white;
  display: flex;
  font-size: 0.64rem;
  font-weight: 950;
  gap: 3px;
  justify-content: center;
  min-width: 48px;
  padding: 4px 6px;
  position: absolute;
  right: -4px;
  text-shadow: 0 1px 0 rgba(0, 56, 34, 0.62);
  top: -16px;
  transition: transform var(--motion-base) var(--motion-ease-out);
}

.discord-online-badge svg {
  height: 13px;
  stroke-width: 2.8;
  width: 13px;
}

.discord-online-badge.is-unavailable {
  filter: saturate(0.45);
  opacity: 0.8;
}

.ip-button:hover small {
  transform: translate3d(0, -2px, 0) rotate(1deg);
}

.discord-float {
  align-items: center;
  animation: buttonPop 680ms var(--motion-ease-out) 620ms both, discordPulse 4.2s var(--motion-ease-soft) 1.5s infinite;
  background: var(--discord);
  border-radius: 8px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.22);
  color: white;
  display: flex;
  flex: 0 0 46px;
  height: 42px;
  justify-content: center;
  width: 46px;
}

.scroll-cue {
  align-items: center;
  animation: scrollCueBounce 2.4s var(--motion-ease-soft) infinite;
  color: rgba(17, 240, 155, 0.96);
  display: grid;
  filter: none;
  justify-items: center;
  margin-top: 32px;
  position: relative;
  text-decoration: none;
  will-change: transform, opacity;
  width: 32px;
  z-index: 5;
}

.mouse-icon {
  border: 3px solid currentColor;
  border-radius: 999px;
  display: block;
  height: 32px;
  position: relative;
  width: 22px;
}

.mouse-icon span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 8px;
  left: 50%;
  position: absolute;
  top: 5px;
  transform: translateX(-50%);
  width: 4px;
}

.scroll-cue svg {
  animation: chevronFlow 2.4s var(--motion-ease-soft) infinite;
  height: 25px;
  margin-top: 6px;
  stroke-width: 2.6;
  width: 25px;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translate3d(-50%, -46%, 0) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@keyframes logoPop {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.94);
  }
  72% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.012);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes gentleFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -6px, 0) rotate(-0.35deg);
  }
}

@keyframes buttonPop {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.96);
  }
  70% {
    opacity: 1;
    transform: translate3d(0, -1px, 0) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.22), 0 0 0 rgba(142, 232, 208, 0);
  }
  50% {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.22), 0 0 0 6px rgba(142, 232, 208, 0.08);
  }
}

@keyframes discordPulse {
  0%, 100% {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.22), 0 0 0 rgba(88, 101, 242, 0);
  }
  50% {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.22), 0 0 0 6px rgba(88, 101, 242, 0.12);
  }
}

@keyframes donorHeadBounce {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  35% {
    transform: translate3d(0, -3px, 0) rotate(-2deg) scale(1.035);
  }
  70% {
    transform: translate3d(0, 0, 0) rotate(1deg) scale(1.012);
  }
}

@keyframes guideIconAura {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -3px, 0) scale(1.04);
  }
}

@keyframes donorCardLift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  58% {
    transform: translate3d(0, -5px, 0) scale(1.01);
  }
  100% {
    transform: translate3d(0, -4px, 0) scale(1.006);
  }
}

@keyframes guideCardLift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  58% {
    transform: translate3d(0, -7px, 0) scale(1.006);
  }
  100% {
    transform: translate3d(0, -6px, 0) scale(1);
  }
}

@keyframes scrollCueBounce {
  0%, 100% {
    opacity: 0.68;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 5px, 0);
  }
}

@keyframes chevronFlow {
  0%, 100% {
    opacity: 0.68;
    transform: translate3d(0, -1px, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 2px, 0);
  }
}

@keyframes mouseWheelFlow {
  0%, 100% {
    opacity: 0.55;
    transform: translate3d(-50%, 0, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(-50%, 5px, 0);
  }
}

@keyframes shipEnter {
  from {
    opacity: 0;
    transform: translate3d(-46px, 18px, 0) rotate(-4deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes mascotEnter {
  from {
    opacity: 0;
    transform: translate3d(46px, 18px, 0) rotate(3deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes orbitFloatLeft {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-0.6deg);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(-1.6deg);
  }
}

@keyframes orbitFloatRight {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -7px, 0) rotate(1deg);
  }
}

.section-divider {
  background: var(--divider-top);
  box-shadow: inset 0 -18px 22px rgba(0, 0, 0, 0.08);
  height: var(--section-divider-height);
  overflow: visible;
  pointer-events: none;
  position: relative;
  z-index: 8;
}

.section-divider::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 76' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 24C160 5 306 24 470 39C640 56 814 35 975 25C1154 14 1294 39 1440 24V76H0Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  background: var(--divider-top);
  content: "";
  filter: drop-shadow(0 -10px 14px rgba(0, 0, 0, 0.18));
  height: 42px;
  left: -1px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 76' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 24C160 5 306 24 470 39C640 56 814 35 975 25C1154 14 1294 39 1440 24V76H0Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  position: absolute;
  right: -1px;
  transform: scaleY(-1);
  bottom: -28px;
}

.divider-hero {
  --divider-top: radial-gradient(circle at 18% -145%, rgba(142, 232, 208, 0.1), transparent 26rem),
  radial-gradient(circle at 78% -135%, rgba(6, 62, 89, 0.18), transparent 30rem), #462134;
}

.divider-intro {
  --divider-top: #4d2135;
    transform: scaleY(-1);
}


.final-cta::before {
  background:
    radial-gradient(circle at 20px 20px, rgba(199, 154, 255, 0.18) 0 11px, transparent 12px),
    radial-gradient(circle at 46px 48px, rgba(142, 232, 208, 0.11) 0 8px, transparent 9px);
  bottom: 36px;
  content: "";
  height: 80px;
  left: 44px;
  opacity: 0.8;
  position: absolute;
  width: 92px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  margin: 0 0 9px;
  text-transform: uppercase;
}


.section-title h2,
.final-cta h2 {
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}


.final-cta p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.65;
  margin: 14px 0 0;
  max-width: 620px;
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.brown-button,
.blue-button {
  color: white;
  gap: 8px;
  padding: 0 18px;
  text-transform: uppercase;
}

.brown-button {
  background: var(--brown);
}

.blue-button {
  background: var(--discord);
}

.progression-section {
  background:
    radial-gradient(circle at 50% 6%, rgba(79, 218, 207, 0.08), transparent 28rem),
    radial-gradient(circle at 12% 74%, rgba(91, 29, 53, 0.24), transparent 24rem),
    #171a21;
  padding: 86px max(24px, calc((100vw - 1180px) / 2)) 108px;
  position: relative;
}

.progression-section::before {
  background-image: linear-gradient(rgba(79, 218, 207, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 218, 207, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 82%);
  pointer-events: none;
  position: absolute;
}

.progression-heading {
  margin: 0 auto 46px;
  max-width: 760px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.progression-kicker {
  background: rgba(91, 29, 53, 0.36);
  border: 1px solid rgba(226, 87, 111, 0.58);
  border-radius: 999px;
  color: #ff8ca1;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 17px;
  padding: 6px 14px;
  text-transform: uppercase;
}

.progression-heading h1 {
  color: #fff8ec;
  font-size: clamp(2.3rem, 5vw, 3.65rem);
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 0 rgba(91, 29, 53, 0.78);
  text-transform: uppercase;
}

.progression-heading p {
  color: #aebeca;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 15px 0 0;
}

.progression-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.progression-card {
  background: linear-gradient(155deg, rgba(28, 31, 41, 0.98), rgba(13, 19, 28, 0.98));
  border: 1px solid rgba(246, 232, 214, 0.13);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  position: relative;
  transition:
    border-color var(--motion-base) var(--motion-ease),
    box-shadow var(--motion-slow) var(--motion-ease),
    transform var(--motion-slow) var(--motion-ease-out);
}

.progression-card::after {
  background: linear-gradient(90deg, #4fdacf, #762746);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0.35);
  transition:
    opacity var(--motion-base) var(--motion-ease),
    transform var(--motion-slow) var(--motion-ease-out);
}

.progression-card:hover {
  border-color: rgba(79, 218, 207, 0.44);
  transform: translateY(-7px);
}

.progression-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.progression-card-visual {
  background:
    radial-gradient(circle at 50% 72%, rgba(79, 218, 207, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(91, 29, 53, 0.15), transparent);
  height: 235px;
  overflow: hidden;
  position: relative;
}

.progression-card-visual::after {
  background: linear-gradient(180deg, transparent 54%, rgba(13, 19, 28, 0.98));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.progression-card-visual img {
  height: 295px;
  left: 50%;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 4px;
  transform: translateX(-50%);
  transition:
    filter var(--motion-base) var(--motion-ease),
    transform var(--motion-slow) var(--motion-ease-out);
  width: 295px;
}

.progression-card-visual img.progression-event-render,
.progression-card-visual img.progression-power-render,
.progression-card-visual img.progression-journey-render {
  height: auto;
  top: -2px;
  width: 440px;
}

.progression-card:hover .progression-card-visual img {
  transform: translateX(-50%) translateY(-5px) scale(1.035);
}

.render-slot-label {
  display: none;
}

.progression-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 24px 27px;
  position: relative;
  z-index: 1;
}

.progression-card-index {
  color: #5be2d6;
  display: block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.progression-card h2 {
  color: #fff8ec;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  line-height: 1.05;
  margin: 0;
}

.progression-card p {
  color: #aebeca;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 13px 0 22px;
  min-height: 82px;
}

.progression-card-link {
  align-items: center;
  color: #fff8ec;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 8px;
  margin-top: auto;
}

.progression-card-link svg {
  color: #5be2d6;
  height: 16px;
  transition: transform var(--motion-base) var(--motion-ease-out);
  width: 16px;
}

.progression-card:hover .progression-card-link svg {
  transform: translateX(4px);
}

.player-testimonial {
  align-items: center;
  background: linear-gradient(110deg, rgba(91, 29, 53, 0.28), rgba(29, 32, 42, 0.98) 24%, rgba(18, 25, 34, 0.98));
  border: 1px solid rgba(246, 232, 214, 0.16);
  border-left: 4px solid #4fdacf;
  border-radius: 15px;
  display: grid;
  gap: 22px;
  grid-template-columns: 76px minmax(0, 1fr);
  margin: 52px auto 0;
  max-width: 960px;
  overflow: hidden;
  padding: 25px 30px;
  position: relative;
  z-index: 1;
}

.player-testimonial-avatar {
  align-items: center;
  background: linear-gradient(145deg, #67233e, #151e29);
  border: 2px solid rgba(79, 218, 207, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(79, 218, 207, 0.07), 0 10px 22px rgba(0, 0, 0, 0.35);
  display: flex;
  height: 72px;
  justify-content: center;
  overflow: hidden;
  width: 72px;
}

.player-testimonial-avatar img {
  height: 100%;
  image-rendering: pixelated;
  object-fit: cover;
  object-position: 50% 37%;
  transform: scale(1.42);
  width: 100%;
}

.player-testimonial-content {
  min-width: 0;
  padding-right: 18px;
  position: relative;
}

.player-testimonial-quote {
  color: rgba(79, 218, 207, 0.34);
  height: 34px;
  position: absolute;
  right: 0;
  top: -7px;
  width: 34px;
}

.player-testimonial blockquote {
  color: #e7e9ee;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
  padding-right: 28px;
}

.player-testimonial figcaption {
  color: #5be2d6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 13px;
  text-transform: uppercase;
}

.player-testimonial figcaption span {
  color: #aebeca;
}

@media (max-width: 900px) {
  .progression-grid {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 620px;
  }

  .progression-card p {
    min-height: 0;
  }

  .player-testimonial {
    margin-top: 34px;
  }
}

.section-title {
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
}

.section-title h2 {
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.slide-arrow {
  background: var(--brown);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.22);
  color: white;
  cursor: pointer;
  height: 52px;
  width: 52px;
}

.store-page {
  align-items: start;
  background:
    radial-gradient(circle at 70% 12%, rgba(77, 33, 53, 0.34), transparent 26rem),
    linear-gradient(180deg, #101b25 0%, #17232c 100%);
  display: grid;
  gap: 18px;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 100vh;
  padding: 112px max(18px, calc((100vw - 1180px) / 2)) 72px;
}

.store-sidebar {
  background: rgba(15, 20, 25, 0.9);
  border: 1px solid rgba(246, 232, 214, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  padding: 18px;
  position: sticky;
  top: 92px;
}

.store-sidebar > strong {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  text-align: center;
  text-transform: uppercase;
}

.store-category {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 950;
  gap: 12px;
  min-height: 52px;
  padding: 8px 10px;
  text-align: left;
  transition:
    background var(--motion-base) var(--motion-ease),
    color var(--motion-base) var(--motion-ease),
    transform var(--motion-base) var(--motion-ease-out);
  width: 100%;
}

.store-category:hover,
.store-category.is-active {
  background: rgba(246, 232, 214, 0.08);
  color: var(--green);
  transform: translate3d(2px, 0, 0);
}

.store-category img,
.store-category svg {
  flex: 0 0 34px;
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.store-category img {
  transform: scale(1.45);
}

.store-category svg {
  color: var(--gold);
  stroke-width: 2.8;
}

.store-content {
  min-width: 0;
}

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

.product-card.is-hidden {
  display: none;
}

.shop-product-card {
  background: #323940;
  border: 1px solid rgba(246, 232, 214, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  color: white;
  display: grid;
  overflow: hidden;
}

.shop-product-card .product-media {
  align-items: center;
  aspect-ratio: 1 / 0.78;
  background: #3a4149;
  display: flex;
  justify-content: center;
  padding: 16px;
}

.shop-product-card .product-media img {
  height: 100%;
  image-rendering: auto;
  object-fit: contain;
  width: 100%;
}

.shop-product-card .product-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.shop-product-card .product-type {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  margin: 0;
  text-transform: uppercase;
}

.shop-product-card h3 {
  font-size: 1.15rem;
  line-height: 1.18;
  margin: 0;
}

.shop-product-card .package-copy {
  color: #cad6d7;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.45;
}

.shop-product-card .product-bottom {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.shop-product-card .product-bottom strong {
  color: #9bd9ef;
  flex: 1 0 100%;
  font-size: 0.86rem;
}

.info-button,
.buy-button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 950;
  gap: 7px;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
}

.info-button {
  background: #d7a400;
  color: white;
  width: 48px;
}

.buy-button {
  background: #39c36b;
  color: white;
  flex: 1;
}

.discover-worlds {
  background:
    radial-gradient(circle at 50% 0, rgba(226, 155, 122, 0.12), transparent 27rem),
    linear-gradient(180deg, #101b25 0%, #0d1720 100%);
  overflow: hidden;
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 96px;
  position: relative;
}

.discover-worlds .section-title h2 {
  color: #fff8ec;
}

.world-carousel {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  margin: 30px auto 0;
  max-width: 1080px;
  position: relative;
}

.world-track {
  aspect-ratio: 16 / 8.6;
  border: 1px solid rgba(246, 232, 214, 0.14);
  border-radius: 8px;
  grid-column: 2;
  min-height: 520px;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.world-strip {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform 820ms var(--motion-ease-out);
  width: 100%;
  will-change: transform;
}

.world-feature {
  background: #4d2135;
  flex: 0 0 100%;
  display: block;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.world-feature.is-active {
  z-index: 1;
}

.world-carousel.is-moving .world-feature {
  filter: saturate(0.85) brightness(0.92);
}

.world-carousel.is-moving .world-feature.is-active {
  filter: saturate(1) brightness(1);
}

.world-feature img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform var(--motion-slow) var(--motion-ease-out);
  width: 100%;
}

.world-feature::after {
  background:
    linear-gradient(180deg, rgba(13, 23, 32, 0.05), transparent 35%),
    linear-gradient(0deg, rgba(13, 23, 32, 0.78), transparent 52%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.world-feature:hover img {
  transform: scale(1.025);
}

.world-arrow {
  position: relative;
  z-index: 2;
}

.world-arrow-prev {
  grid-column: 1;
  justify-self: end;
  margin-right: -28px;
}

.world-arrow-next {
  grid-column: 3;
  justify-self: start;
  margin-left: -28px;
}

.world-label {
  align-items: center;
  display: flex;
  left: 18px;
  position: absolute;
  top: 18px;
  z-index: 1;
}

.world-label span {
  align-items: center;
  background: #8ee8d0;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 5px 0 rgba(55, 13, 24, 0.34);
  color: #241321;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 950;
  height: 50px;
  justify-content: center;
  transform: rotate(-5deg);
  width: 54px;
}

.world-label strong {
  background: #421336f0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 5px 0 rgba(55, 13, 24, 0.24);
  color: #d1cfcf;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 950;
  margin-left: -4px;
  padding: 12px 18px 12px 20px;
  text-transform: uppercase;
}

.world-feature p {
  background: rgba(255, 248, 236, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  bottom: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  color: #241321;
  font-size: 0.74rem;
  font-weight: 800;
  left: auto;
  line-height: 1.5;
  margin: 0;
  max-width: 360px;
  padding: 10px 12px;
  position: absolute;
  right: 16px;
  width: min(360px, calc(100% - 32px));
  z-index: 1;
}

.world-dots {
  display: flex;
  gap: 7px;
  grid-column: 2;
  justify-content: center;
  margin-top: 8px;
}

.world-dots span {
  background: rgba(255, 248, 236, 0.3);
  border-radius: 999px;
  height: 8px;
  transition:
    background var(--motion-base) var(--motion-ease),
    width var(--motion-base) var(--motion-ease-out);
  width: 8px;
}

.world-dots span.is-active {
  background: var(--green);
  width: 24px;
}

.faq-section {
  background:
    radial-gradient(circle at 50% 0, rgba(79, 218, 207, 0.07), transparent 30rem),
    linear-gradient(180deg, rgba(10, 18, 29, 0.2), rgba(10, 18, 29, 0.72));
  padding: 58px max(24px, calc((100vw - 1240px) / 2)) 84px;
}

.faq-container {
  background: linear-gradient(145deg, rgba(24, 14, 25, 0.96), rgba(11, 20, 30, 0.96));
  border: 1px solid rgba(79, 218, 207, 0.18);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  margin: 0 auto;
  max-width: 1040px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  position: relative;
}

.faq-container::before {
  background: linear-gradient(90deg, #4fdacf, #7f2649 50%, #4fdacf);
  content: "";
  height: 3px;
  left: 8%;
  opacity: 0.9;
  position: absolute;
  right: 8%;
  top: 0;
}

.faq-heading {
  margin: 0 auto 34px;
  max-width: 720px;
  text-align: center;
}

.faq-kicker {
  align-items: center;
  color: #58e2d6;
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 950;
  gap: 8px;
  letter-spacing: 0.16em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.faq-kicker svg {
  height: 17px;
  width: 17px;
}

.faq-heading h2 {
  color: #fff8ec;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 0 rgba(98, 31, 59, 0.78);
  text-transform: uppercase;
}

.faq-heading p {
  color: #cdbdc8;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.6;
  margin: 14px 0 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(7, 13, 21, 0.78);
  border: 1px solid rgba(246, 232, 214, 0.1);
  border-radius: 11px;
  box-shadow: inset 4px 0 0 transparent;
  overflow: hidden;
  transition:
    background var(--motion-base) var(--motion-ease),
    border-color var(--motion-base) var(--motion-ease),
    box-shadow var(--motion-base) var(--motion-ease),
    transform var(--motion-base) var(--motion-ease-out);
}

.faq-item:hover {
  border-color: rgba(79, 218, 207, 0.34);
  transform: translateX(3px);
}

.faq-item.is-open {
  background: linear-gradient(110deg, rgba(91, 29, 53, 0.34), rgba(7, 17, 25, 0.9));
  border-color: rgba(79, 218, 207, 0.62);
  box-shadow: inset 4px 0 0 #4fdacf, 0 12px 28px rgba(0, 0, 0, 0.2);
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff8ec;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 950;
  gap: 18px;
  justify-content: space-between;
  line-height: 1.35;
  padding: 21px 22px;
  text-align: left;
  width: 100%;
}

.faq-question:focus-visible {
  outline: 2px solid #4fdacf;
  outline-offset: -4px;
}

.faq-icon {
  align-items: center;
  background: rgba(79, 218, 207, 0.08);
  border: 1px solid rgba(79, 218, 207, 0.42);
  border-radius: 50%;
  color: #58e2d6;
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 1.05rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  transition:
    background var(--motion-base) var(--motion-ease),
    color var(--motion-base) var(--motion-ease),
    transform var(--motion-base) var(--motion-ease-out);
}

.faq-item.is-open .faq-icon {
  background: #4fdacf;
  color: #10202a;
  transform: rotate(180deg);
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 300ms var(--motion-ease-out),
    opacity 220ms var(--motion-ease);
}

.faq-answer-wrap.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer {
  border-top: 1px solid rgba(79, 218, 207, 0.12);
  color: #cfbec9;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 22px;
  padding: 17px 0 22px;
}

.final-cta {
  background:
    radial-gradient(circle at 30% 38%, rgba(226, 155, 122, 0.16), transparent 22rem),
    radial-gradient(circle at 67% 28%, rgba(199, 154, 255, 0.13), transparent 24rem),
    linear-gradient(180deg, #4d2135, #221121);
  overflow: hidden;
  padding: 58px 24px 66px;
  position: relative;
}

.final-cta-inner {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: 360px;
}

.final-cta-visual {
  align-self: stretch;
  display: flex;
  justify-content: center;
  min-height: 340px;
  pointer-events: none;
  position: relative;
}

.final-cta-render {
  align-self: center;
  filter:
    drop-shadow(16px 16px 0 rgba(0, 0, 0, 0.12))
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
  max-height: 450px;
  object-fit: contain;
  width: min(560px, 48vw);
}

.final-cta-content {
  justify-self: center;
  max-width: 600px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.final-cta-logo {
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.3));
  margin: 0 auto 18px;
  width: 140px;
}

.final-cta h2 {
  color: white;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  max-width: 620px;
}

.final-cta p {
  color: #d7c2bf;
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

.final-cta .button-row {
  justify-content: center;
}

.site-footer {
  background:
    radial-gradient(circle at 16% 18%, rgba(142, 232, 208, 0.12), transparent 18rem),
    linear-gradient(180deg, #17222d, #111923);
  border-top: 1px solid rgba(142, 232, 208, 0.12);
  color: var(--ink);
  padding: 56px max(24px, calc((100vw - 1180px) / 2)) 34px;
}

.footer-inner {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(220px, 1.05fr) minmax(0, 2.4fr);
  margin: 0 auto;
  max-width: 1120px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand-row {
  align-items: center;
  display: flex;
  gap: 10px;
}

.footer-brand-row img {
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.32));
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.footer-brand-row strong {
  color: white;
  font-size: 1.08rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-brand p {
  color: #8ee8d0;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.55;
  margin: 12px 0 0;
}

.footer-links {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
}

.footer-links div {
  display: grid;
  gap: 12px;
}

.footer-links h2 {
  color: #d8cdd3;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 2px;
  text-transform: uppercase;
}

.site-footer a {
  color: #72cfff;
  font-size: 0.86rem;
  font-weight: 850;
}

.site-footer a:hover {
  color: #8ee8d0;
}

.footer-bottom {
  color: #72cfff;
  font-size: 0.76rem;
  font-weight: 800;
  margin: 46px auto 0;
  max-width: 1120px;
  text-align: center;
}

.cart-drawer {
  background: rgba(5, 10, 16, 0.68);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity var(--motion-base) var(--motion-ease);
  z-index: 40;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink);
  height: 100%;
  margin-left: auto;
  max-width: 420px;
  padding: 22px;
  transform: translate3d(100%, 0, 0);
  transition: transform var(--motion-slow) var(--motion-ease-out);
  width: min(100%, 420px);
}

.cart-drawer.is-open .cart-panel {
  transform: translate3d(0, 0, 0);
}

.cart-head,
.cart-row,
.cart-total {
  justify-content: space-between;
}

.cart-head p {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.cart-head h2 {
  margin: 0;
}

.icon-button {
  background: var(--brown);
  color: white;
  width: 44px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.cart-empty {
  color: var(--muted);
  line-height: 1.6;
}

.cart-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 12px;
  padding: 12px;
}

.cart-row strong,
.cart-row span {
  display: block;
}

.cart-row span {
  color: var(--muted);
  margin-top: 4px;
}

.cart-remove {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
}

.cart-total {
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
  padding-top: 18px;
}

.checkout-button {
  background: var(--green);
  color: #092c28;
  margin-top: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.login-modal {
  align-items: center;
  background: rgba(5, 10, 16, 0.78);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity var(--motion-base) var(--motion-ease);
  z-index: 45;
}

.login-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.login-dialog {
  max-width: 430px;
  position: relative;
  transform: translate3d(0, 12px, 0) scale(0.985);
  transition: transform var(--motion-slow) var(--motion-ease-out);
  width: min(100%, 430px);
}

.login-modal.is-open .login-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.login-close {
  align-items: center;
  background: rgba(246, 232, 214, 0.1);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 58px;
  width: 38px;
  z-index: 3;
}

.login-roof {
  height: 62px;
  margin: 0 auto -6px;
  width: min(360px, 86vw);
  z-index: 2;
}

.login-roof::after {
  background-size: 100% 62px;
  height: 62px;
}

.login-roof::before {
  font-size: 1.02rem;
  height: 32px;
  top: 8px;
}

.login-roof span {
  top: 48px;
}

.login-roof span::before,
.login-roof span::after {
  display: none;
}

.login-panel {
  background: linear-gradient(180deg, #55283a, #32172a);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 12px;
  padding: 42px 28px 28px;
  position: relative;
}

.login-player-head-frame {
  background: #101a24;
  border: 5px solid var(--brown-2);
  border-radius: 10px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.16), inset 0 0 0 1px rgba(246, 232, 214, 0.2);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.26));
  height: 154px;
  justify-self: center;
  margin-bottom: 2px;
  overflow: hidden;
  position: relative;
  width: 154px;
}

.login-player-head-frame img {
  height: 100%;
  image-rendering: pixelated;
  object-fit: cover;
  width: 100%;
}

.player-head-frame img.is-default-player-head,
.login-player-head-frame img.is-default-player-head {
  height: 200%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: -50%;
  transform-origin: center;
  width: 100%;
}

.player-head-frame img.is-default-player-head {
  transform: scale(1.85) translateY(3%);
}

.login-player-head-frame img.is-default-player-head {
  transform: scale(1.85) translateY(3%);
}

.login-panel h2 {
  font-size: 1.7rem;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.login-panel label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.login-panel input {
  background: rgba(13, 23, 32, 0.72);
  border: 1px solid rgba(246, 232, 214, 0.2);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  min-height: 46px;
  outline: none;
  padding: 0 14px;
}

.login-panel input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(142, 232, 208, 0.12);
}

@media (max-width: 820px) {
  :root {
    --section-divider-height: 64px;
  }

  .top-nav {
    grid-template-columns: 1fr auto;
  }

  .top-nav nav {
    display: none;
  }

  .hero-stage {
    min-height: max(640px, 100svh);
  }

  
  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .world-carousel {
    gap: 0;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .store-page {
    grid-template-columns: 1fr;
    padding-top: 96px;
  }

  .store-sidebar {
    position: static;
  }

  .slide-arrow {
    display: none;
  }

  .world-arrow {
    display: inline-flex;
    height: 44px;
    width: 44px;
  }

  .world-track {
    min-height: 390px;
  }

  .final-cta-inner {
    gap: 18px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta-visual {
    min-height: 260px;
    order: 1;
  }

  .final-cta-render {
    max-height: 330px;
    transform: translateX(0) rotate(-6deg);
    width: min(420px, 88vw);
  }

  .final-cta-content {
    justify-self: center;
    order: 2;
    padding-left: 0;
    text-align: center;
  }

  .final-cta-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta .button-row {
    justify-content: center;
  }

  .site-footer {
    padding-top: 42px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    max-width: 360px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }
}

@media (max-width: 540px) {
  :root {
    --section-divider-height: 54px;
  }

  .section-divider::before {
    height: 34px;
  }

  .nav-toast {
    left: 8px;
    max-width: none;
    min-width: 0;
    right: 8px;
    top: 72px;
  }

  .top-nav {
    display: flex;
    justify-content: space-between;
    left: 8px;
    right: 8px;
    top: 8px;
  }

  .nav-brand span {
    display: none;
  }

  .nav-actions .discord-chip {
    display: none;
  }

  .language-select {
    display: none;
  }

  .shop-chip {
    font-size: 0;
    min-height: 36px;
    min-width: 42px;
    padding: 0;
    width: 42px;
  }

  .shop-chip svg {
    height: 20px;
    width: 20px;
  }

  .shop-chip strong {
    display: none;
  }

  .language-chip,
  .login-chip {
    padding: 0 9px;
  }

  .player-head-frame {
    height: 24px;
    width: 24px;
  }

  .login-chip [data-player-name] {
    display: none;
  }

  .hero-logo {
    width: min(270px, 72vw);
  }

  .ip-button {
    min-width: 225px;
  }

  .scroll-cue {
    color: rgba(226, 155, 122, 0.92);
    filter: none;
  }

  
  .progression-section,
  .store-page,
  .discover-worlds,
  .faq-section,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-section {
    padding-bottom: 56px;
    padding-top: 42px;
  }

  .progression-section {
    padding-bottom: 72px;
    padding-top: 62px;
  }

  .progression-heading {
    margin-bottom: 32px;
  }

  .progression-heading h1 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .progression-card-visual {
    height: 210px;
  }

  .progression-card-visual img {
    height: 265px;
    width: 265px;
  }

  .progression-card-copy {
    padding: 18px 19px 23px;
  }

  .player-testimonial {
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 24px 20px;
    text-align: center;
  }

  .player-testimonial-avatar {
    margin: 0 auto;
  }

  .player-testimonial-content,
  .player-testimonial blockquote {
    padding-right: 0;
  }

  .player-testimonial-quote {
    opacity: 0.55;
    right: -4px;
    top: -12px;
  }

  .faq-container {
    border-radius: 14px;
    padding: 28px 14px 18px;
  }

  .faq-heading {
    margin-bottom: 25px;
    padding: 0 8px;
  }

  .faq-heading h2 {
    font-size: clamp(1.65rem, 9vw, 2.2rem);
  }

  .faq-question {
    font-size: 0.86rem;
    padding: 18px 15px;
  }

  .faq-answer {
    margin: 0 15px;
    padding: 15px 0 18px;
  }

  .final-cta {
    padding-top: 44px;
  }

  .final-cta-visual {
    min-height: 220px;
  }

  .final-cta-render {
    max-height: 270px;
    transform: translateX(0) rotate(-6deg);
  }

  .world-label {
    left: 12px;
    top: 12px;
  }

  .world-label span {
    font-size: 0.78rem;
    height: 44px;
    width: 46px;
  }

  .world-label strong {
    font-size: 0.72rem;
    padding: 10px 12px 10px 16px;
  }

  .world-feature p {
    bottom: 12px;
    font-size: 0.75rem;
    left: auto;
    right: 12px;
    width: min(320px, calc(100% - 24px));
  }

  .brown-button,
  .blue-button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    margin-top: 34px;
    text-align: left;
  }
}

/* Store v2 */
.store-page-v2 {
  background: linear-gradient(180deg, #101b25 0%, #111a23 48%, #0c141d 100%);
  display: block;
  min-height: 100vh;
  padding: 112px max(18px, calc((100vw - 1180px) / 2)) 78px;
}


.store-promo-banner,
.store-layout {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.store-promo-banner {
  border: 1px solid rgba(246, 232, 214, 0.12);
  border-radius: 8px;
  margin-bottom: 22px;
  overflow: hidden;
}

.store-promo-banner img {
  display: block;
  height: auto;
  width: 100%;
}


.category-section-head small {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.store-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 248px minmax(0, 1fr);
}

.store-page-v2 .store-sidebar {
  background: rgba(12, 18, 25, 0.86);
  border-color: rgba(246, 232, 214, 0.1);
  gap: 8px;
  padding: 14px;
  top: 92px;
}

.store-page-v2 .store-sidebar > strong {
  color: #fff8ec;
  font-size: 0.78rem;
  margin: 0 0 8px;
  text-align: left;
}

.store-page-v2 .store-category {
  gap: 10px;
  min-height: 48px;
  padding: 7px 8px;
}

.store-page-v2 .store-category img {
  flex-basis: 30px;
  height: 30px;
  transform: scale(1.34);
  width: 30px;
}

.store-page-v2 .store-category img[src*="vip-"] {
  border-radius: 8px;
  object-fit: cover;
  transform: none;
}

.store-page-v2 .store-category span {
  background: rgba(142, 232, 208, 0.12);
  border: 1px solid rgba(142, 232, 208, 0.22);
  border-radius: 8px;
  color: var(--green);
  font-size: 0.72rem;
  margin-left: auto;
  min-width: 28px;
  padding: 3px 7px;
  text-align: center;
}

.store-page-v2 .store-category:hover,
.store-page-v2 .store-category.is-active {
  background: rgba(142, 232, 208, 0.1);
  color: #fff8ec;
}

.store-page-v2 .store-content {
  display: grid;
  gap: 30px;
}

.store-category-section {
  display: grid;
  gap: 14px;
  scroll-margin-top: 104px;
}

.store-category-section[hidden] {
  display: none !important;
}

.store-category-section.is-active {
  animation: storePanelIn 300ms var(--motion-ease-out) both;
}

.category-section-head {
  align-items: end;
  border-bottom: 1px solid rgba(246, 232, 214, 0.13);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 12px;
}

.category-section-head > div {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.category-section-head img {
  flex: 0 0 54px;
  height: 54px;
  object-fit: contain;
  transform: scale(1.16);
  width: 54px;
}

.category-section-head img[src*="vip-"] {
  border: 2px solid rgba(142, 232, 208, 0.34);
  border-radius: 8px;
  object-fit: cover;
  transform: none;
}

.category-section-head small {
  color: var(--green);
}

.category-section-head h2 {
  color: white;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1;
  margin: 3px 0 0;
  text-transform: uppercase;
}

.category-section-head p {
  color: #d7c2bf;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  max-width: 430px;
  text-align: right;
}

.store-page-v2 .shop-product-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.store-page-v2 #vips .shop-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-page-v2 .shop-product-card {
  background: rgba(45, 55, 64, 0.94);
  border: 1px solid rgba(246, 232, 214, 0.1);
  border-left: 4px solid var(--green);
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  min-height: 226px;
}

.store-page-v2 .chibi-product-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 30%),
    rgba(45, 55, 64, 0.94);
  border-left: 0;
  border-top: 4px solid var(--green);
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  min-height: 268px;
}

.store-page-v2 .chibi-product-card:nth-child(2) {
  border-top-color: #a8cf64;
}

.store-page-v2 .chibi-product-card:nth-child(3),
.store-page-v2 .chibi-product-card:nth-child(4) {
  border-top-color: #ef6b66;
}

.store-page-v2 .shop-product-card[data-category="passes"] {
  border-left-color: var(--gold);
}

.store-page-v2 .shop-product-card[data-category="chaves"] {
  border-left-color: #5db5f0;
}

.store-page-v2 .shop-product-card[data-category="character-packs"] {
  border-left-color: var(--lilac);
}

.store-page-v2 .shop-product-card[data-category="boosters"] {
  border-left-color: #ef6b66;
}

.store-page-v2 .shop-product-card .product-media {
  aspect-ratio: auto;
  background:
    linear-gradient(135deg, rgba(142, 232, 208, 0.07), transparent 44%),
    #27313a;
  border-right: 1px solid rgba(246, 232, 214, 0.08);
  min-height: 100%;
  padding: 18px;
}

.store-page-v2 .chibi-product-card .chibi-product-media {
  background: #111923;
  border-bottom: 0;
  border-right: 1px solid rgba(246, 232, 214, 0.1);
  overflow: hidden;
  padding: 10px 12px 0;
}

.store-page-v2 .chibi-product-card .chibi-product-media img {
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  width: 100%;
}

.store-page-v2 .shop-product-card .product-media img {
  max-height: 188px;
}

.store-page-v2 .shop-product-card.chibi-product-card .chibi-product-media img {
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  width: 100%;
}

.store-page-v2 .shop-product-card .product-media-render img {
  max-height: 206px;
}

.store-page-v2 .shop-product-card .product-body {
  align-content: start;
  gap: 9px;
  min-width: 0;
  padding: 18px;
}

.store-page-v2 .chibi-product-card .product-body {
  padding: 16px;
}

.store-page-v2 .shop-product-card .product-type {
  color: var(--green);
}

.store-page-v2 .shop-product-card h3 {
  font-size: 1.28rem;
}

.store-page-v2 .chibi-product-card h3 {
  font-size: 1.18rem;
}

.store-page-v2 .shop-product-card .package-copy {
  max-width: 580px;
}

.product-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 3px 0 2px;
  padding: 0;
}

.product-perks li {
  align-items: center;
  background: rgba(12, 20, 29, 0.46);
  border: 1px solid rgba(246, 232, 214, 0.08);
  border-radius: 8px;
  color: #e8f6f2;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 850;
  gap: 5px;
  min-height: 30px;
  padding: 5px 8px;
}

.product-perks svg {
  color: var(--green);
  height: 15px;
  stroke-width: 3;
  width: 15px;
}

.store-page-v2 .shop-product-card .product-bottom {
  align-items: center;
  gap: 9px;
  margin-top: 4px;
}

.store-page-v2 .shop-product-card .product-bottom strong {
  color: #9bd9ef;
  flex: 0 0 auto;
  font-size: 1rem;
  margin-right: auto;
}

.store-page-v2 .info-button {
  flex: 0 0 42px;
  padding: 0;
  width: 42px;
}

.store-page-v2 .info-button svg,
.store-page-v2 .buy-button svg {
  height: 18px;
  width: 18px;
}

.store-page-v2 .buy-button {
  flex: 0 0 auto;
  min-width: 148px;
}

@keyframes storePanelIn {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {

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

  .store-page-v2 .store-sidebar {
    align-items: center;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    position: sticky;
    top: 74px;
    z-index: 10;
  }

  .store-page-v2 .store-sidebar > strong {
    display: none;
  }

  .store-page-v2 .store-category {
    flex: 0 0 auto;
    min-width: 160px;
  }

  .store-page-v2 .chibi-product-card {
    grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .store-page-v2 {
    padding-top: 92px;
  }

  .category-section-head {
    align-items: start;
    flex-direction: column;
  }

  .category-section-head p {
    max-width: none;
    text-align: left;
  }

  .store-page-v2 .shop-product-card {
    grid-template-columns: 1fr;
  }

  .store-page-v2 #vips .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .store-page-v2 .shop-product-card .product-media {
    border-right: 0;
    border-bottom: 1px solid rgba(246, 232, 214, 0.08);
    min-height: 190px;
  }

  .store-page-v2 .chibi-product-card .chibi-product-media {
    aspect-ratio: 1 / 0.78;
    border-right: 0;
    min-height: 220px;
  }

  .store-page-v2 .shop-product-card .product-bottom strong {
    flex: 1 0 100%;
  }
}

/* Page-to-page transition */
html.is-transitioning,
html.is-transitioning body {
  overflow: hidden;
}

.page-transition {
  display: none;
}

.has-js .page-transition {
  align-content: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(79, 218, 207, 0.09), transparent 15rem),
    radial-gradient(circle at 50% 52%, rgba(91, 29, 53, 0.12), transparent 27rem),
    #080f17;
  display: grid;
  inset: 0;
  justify-items: center;
  opacity: 1;
  position: fixed;
  transition: opacity 420ms var(--motion-ease-soft), visibility 0s linear 0s;
  visibility: visible;
  z-index: 10000;
}

.has-js .page-transition::before {
  background-image:
    linear-gradient(rgba(142, 232, 208, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 232, 208, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at center, black, transparent 68%);
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
}

.has-js .page-transition.is-ready {
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms var(--motion-ease-out), visibility 0s linear 520ms;
  visibility: hidden;
}

.page-transition-mark {
  display: grid;
  height: 148px;
  place-items: center;
  position: relative;
  width: 148px;
}

.page-transition-mark::after {
  background: rgba(79, 218, 207, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 54px rgba(79, 218, 207, 0.18), 0 0 80px rgba(91, 29, 53, 0.14);
  content: "";
  height: 72px;
  position: absolute;
  width: 72px;
}

.page-transition-ring {
  border: 1px solid rgba(142, 232, 208, 0.13);
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.page-transition-ring::after {
  background: conic-gradient(from 20deg, transparent 0 48%, #4fdacf 64%, #7f2649 79%, transparent 92%);
  border-radius: inherit;
  content: "";
  inset: -1px;
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  position: absolute;
}

.page-transition-ring-outer {
  animation: pageTransitionSpin 2.4s linear infinite;
}

.page-transition-ring-inner {
  animation: pageTransitionSpin 1.8s linear infinite reverse;
  inset: 12px;
  opacity: 0.62;
}

.page-transition-logo {
  align-items: center;
  animation: pageTransitionBreathe 1.8s ease-in-out infinite;
  display: flex;
  height: 82px;
  justify-content: center;
  position: relative;
  width: 82px;
  z-index: 1;
}

.page-transition-logo img {
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.52));
  max-height: 78px;
  object-fit: contain;
  width: 78px;
}

.page-transition-copy {
  display: grid;
  gap: 3px;
  justify-items: center;
  margin-top: 18px;
  position: relative;
}

.page-transition-copy strong {
  color: #fff8ec;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.page-transition-copy span {
  color: #8ca7ac;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-transition-track {
  background: rgba(246, 232, 214, 0.1);
  border-radius: 999px;
  height: 2px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  width: min(190px, 52vw);
}

.page-transition-track::after {
  background: linear-gradient(90deg, transparent, #4fdacf 32%, #8ee8d0 55%, #7f2649 86%, transparent);
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(79, 218, 207, 0.56);
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
}

.page-transition:not(.is-ready) .page-transition-track::after {
  animation: pageTransitionProgress var(--page-transition-duration, 3s) linear both;
}

@keyframes pageTransitionSpin {
  to { transform: rotate(360deg); }
}

@keyframes pageTransitionBreathe {
  0%, 100% { transform: scale(0.96); }
  50% { transform: scale(1.02); }
}

@keyframes pageTransitionProgress {
  0% { transform: scaleX(0); }
  18% { transform: scaleX(0.12); }
  52% { transform: scaleX(0.58); }
  82% { transform: scaleX(0.86); }
  100% { transform: scaleX(1); }
}

@media (max-width: 540px) {
  .store-page-v2 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .store-page-v2 .store-sidebar {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
    top: 64px;
  }

  .store-page-v2 .store-category {
    min-width: 144px;
  }

  .store-page-v2 .buy-button {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* Store cart and product details */
.cart-drawer {
  align-items: center;
  background:
    radial-gradient(circle at 78% 0, rgba(255, 138, 34, 0.16), transparent 22rem),
    rgba(3, 7, 13, 0.78);
  backdrop-filter: none;
  display: flex;
  justify-content: center;
  padding: 22px;
}

.cart-panel {
  background: #151922;
  border: 1px solid rgba(246, 232, 214, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(142, 232, 208, 0.05);
  color: white;
  height: auto;
  margin: 0;
  max-height: calc(100svh - 44px);
  max-width: 560px;
  overflow: auto;
  padding: 0;
  transform: translate3d(0, 14px, 0) scale(0.985);
  width: min(100%, 560px);
}

.cart-drawer.is-open .cart-panel {
  transform: translate3d(0, 0, 0) scale(1);
}

.cart-head {
  border-bottom: 1px solid rgba(246, 232, 214, 0.08);
  padding: 20px 22px;
}

.cart-title {
  align-items: center;
  display: flex;
  gap: 12px;
}

.cart-title-icon {
  align-items: center;
  background: #8df2d8;
  border-radius: 8px;
  box-shadow: 0 0 22px rgba(34, 255, 207, 0.42);
  color: white;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.cart-title-icon svg {
  height: 23px;
  width: 23px;
}

.cart-head h2 {
  color: white;
  font-size: 1.18rem;
  line-height: 1;
}

.cart-head .icon-button {
  background: transparent;
  box-shadow: none;
  color: #cbd0dc;
  height: 40px;
  min-height: 40px;
  width: 40px;
}

.cart-items {
  gap: 10px;
  margin: 0;
  padding: 16px 22px 12px;
}

.cart-empty {
  background: rgba(9, 12, 20, 0.7);
  border: 1px dashed rgba(246, 232, 214, 0.14);
  border-radius: 8px;
  color: #b9bfcb;
  font-weight: 800;
  margin: 0;
  padding: 14px;
}

.cart-row {
  align-items: center;
  background: #0c0f18;
  border: 1px solid rgba(246, 232, 214, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 64px minmax(0, 1fr) auto 34px;
  min-height: 104px;
  padding: 12px;
}

.cart-row > img {
  background: #1d2430;
  border-radius: 8px;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.cart-row strong {
  color: white;
  font-size: 0.95rem;
  line-height: 1.1;
}

.cart-row span {
  color: #ff9a2f;
  font-size: 0.9rem;
  font-weight: 950;
  margin-top: 4px;
}

.cart-quantity {
  align-items: center;
  display: flex;
  gap: 5px;
}

.cart-quantity button,
.cart-quantity strong {
  align-items: center;
  background: #171c27;
  border: 1px solid rgba(246, 232, 214, 0.13);
  border-radius: 6px;
  color: white;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 950;
  height: 32px;
  justify-content: center;
  min-width: 32px;
  padding: 0 9px;
}

.cart-quantity button {
  cursor: pointer;
}

.cart-quantity button:last-child {
  background: #ff8a22;
  border-color: #ff8a22;
}

.cart-remove {
  align-self: start;
  color: #9aa1af;
  padding: 5px;
}

.cart-suggestions {
  background: rgba(75, 45, 88, 0.22);
  border: 1px solid rgba(199, 154, 255, 0.24);
  border-radius: 8px;
  margin: 14px 16px 0;
  overflow: hidden;
  padding: 12px;
}

.cart-suggestions-head {
  align-items: center;
  display: flex;
  gap: 9px;
  margin-bottom: 10px;
}

.cart-suggestions-head svg {
  color: #8df2d8;
  height: 22px;
  width: 22px;
}

.cart-suggestions h3 {
  color: white;
  font-size: 0.9rem;
  line-height: 1;
  margin: 0;
}

.cart-suggestions p {
  color: #aeb4c1;
  font-size: 0.75rem;
  font-weight: 800;
  margin: 3px 0 0;
}

.cart-suggestion-list {
  display: grid;
  gap: 8px;
}

.cart-suggestion-row {
  align-items: center;
  background: rgba(13, 16, 25, 0.72);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 48px minmax(0, 1fr) 44px;
  min-height: 62px;
  padding: 8px;
}

.cart-suggestion-row img {
  background: #1d2430;
  border-radius: 7px;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.cart-suggestion-row strong,
.cart-suggestion-row span {
  display: block;
}

.cart-suggestion-row strong {
  color: white;
  font-size: 0.82rem;
  line-height: 1.15;
}

.cart-suggestion-row span {
  color: #8df2d8;
  font-size: 0.78rem;
  font-weight: 950;
  margin-top: 3px;
}

.cart-suggestion-row button {
  align-items: center;
  background: #8df2d8;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(34, 255, 200, 0.32);
  color: white;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.cart-total {
  border-top: 1px solid rgba(246, 232, 214, 0.1);
  font-size: 1rem;
  margin-top: 16px;
  padding: 20px 24px 4px;
}

.cart-total span {
  color: #b8bfcb;
  font-weight: 900;
}

.cart-total strong {
  color: white;
  font-size: clamp(1.7rem, 4vw, 2.1rem);
  letter-spacing: 0;
}

.cart-panel .checkout-button {
  background: #8df2d8;
  box-shadow: 0 10px 24px rgba(34, 255, 226, 0.26);
  color: white;
  gap: 10px;
  margin: 18px 24px 0;
  min-height: 54px;
  text-transform: uppercase;
  width: calc(100% - 48px);
}

.cart-back-button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(246, 232, 214, 0.12);
  border-radius: 8px;
  color: #b9bfcb;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 950;
  gap: 10px;
  justify-content: center;
  margin: 12px 24px 22px;
  min-height: 48px;
  text-transform: uppercase;
  width: calc(100% - 48px);
}

.store-page-v2 .shop-product-card .product-type,
.store-page-v2 .shop-product-card .package-copy,
.store-page-v2 .shop-product-card .product-perks {
  display: none;
}

.store-page-v2 .shop-product-card {
  min-height: 214px;
}

.store-page-v2 .chibi-product-card {
  min-height: 238px;
}

.store-page-v2 .shop-product-card .product-body {
  align-content: end;
}

.store-page-v2 .shop-product-card h3 {
  color: white;
  font-size: 1.22rem;
}

.store-page-v2 .shop-product-card .product-bottom {
  display: grid;
  gap: 9px;
  grid-template-columns: minmax(0, 126px) 42px;
  justify-content: start;
  margin-top: 10px;
}

.store-page-v2 .shop-product-card .product-bottom strong {
  grid-column: 1 / -1;
}

.store-page-v2 .shop-product-card .buy-button {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  width: 126px;
}

.store-page-v2 .shop-product-card .info-button {
  background: #3fddc8;
  color: #06231f;
  flex: 0 0 42px;
  grid-column: 2;
  grid-row: 2;
  width: 42px;
}

.product-detail-modal {
  align-items: center;
  background: rgba(5, 10, 16, 0.76);
  backdrop-filter: none;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 22px;
  pointer-events: none;
  position: fixed;
  transition: opacity var(--motion-base) var(--motion-ease);
  z-index: 46;
}

.product-detail-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-detail-dialog {
  background: #151922;
  border: 1px solid rgba(246, 232, 214, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  color: white;
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  max-width: 760px;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, 12px, 0) scale(0.985);
  transition: transform var(--motion-slow) var(--motion-ease-out);
  width: min(100%, 760px);
}

.product-detail-modal.is-open .product-detail-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.product-detail-close {
  right: 14px;
  top: 14px;
}

.product-detail-media {
  background:
    linear-gradient(135deg, rgba(142, 232, 208, 0.12), transparent 45%),
    #0d131c;
  min-height: 340px;
}

.product-detail-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-detail-content {
  display: grid;
  gap: 10px;
  padding: 28px;
}

.product-detail-content p {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  margin: 0;
  text-transform: uppercase;
}

.product-detail-content h2 {
  color: white;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.product-detail-content > strong {
  color: #ff9a2f;
  font-size: 1.2rem;
}

.product-detail-content div {
  color: #d8dde7;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
}

.product-detail-content ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.product-detail-content li {
  align-items: center;
  background: rgba(12, 20, 29, 0.68);
  border: 1px solid rgba(246, 232, 214, 0.08);
  border-radius: 8px;
  color: #eef7f4;
  display: flex;
  font-size: 0.82rem;
  font-weight: 850;
  gap: 8px;
  min-height: 36px;
  padding: 8px 10px;
}

.product-detail-content li svg {
  color: var(--green);
  height: 16px;
  width: 16px;
}

.product-detail-content .checkout-button {
  background: #ff8a22;
  color: white;
}

@media (max-width: 720px) {
  .cart-drawer {
    padding: 12px;
  }

  .cart-panel {
    max-height: calc(100svh - 24px);
  }

  .cart-row {
    grid-template-columns: 56px minmax(0, 1fr) auto;
  }

  .cart-row > img {
    height: 56px;
    width: 56px;
  }

  .cart-remove {
    grid-column: 3;
    grid-row: 1;
  }

  .cart-quantity {
    grid-column: 2 / 4;
  }

  .product-detail-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 24px);
    overflow: auto;
  }

  .product-detail-media {
    aspect-ratio: 1 / 0.72;
    min-height: 0;
  }

  .product-detail-content {
    padding: 22px;
  }
}

/* Loja: cards verticais com aura por produto/categoria */
.store-page-v2 .shop-product-grid,
.store-page-v2 #vips .shop-product-grid {
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Loja minimalista: home, categorias e comunidade */
.store-home-grid,
.catalog-shell {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.store-home-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.store-category-showcase,
.store-featured-card,
.store-community-card,
.catalog-product-card {
  background: rgba(10, 17, 24, 0.76);
  border: 1px solid rgba(246, 232, 214, 0.09);
}

.store-category-showcase {
  border-radius: 16px;
  min-width: 0;
  padding: 24px;
}

.store-section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.store-section-heading span,
.rail-kicker,
.catalog-eyebrow {
  color: var(--green);
  display: block;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.store-section-heading h1,
.catalog-hero h1 {
  color: #fff9f0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
  margin: 6px 0 0;
}

.store-section-heading p {
  color: var(--muted);
  font-size: 0.76rem;
  margin: 0;
  max-width: 220px;
  text-align: right;
}

.store-category-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.store-category-card {
  --category-accent: var(--green);
  align-items: center;
  background:
    radial-gradient(220px 220px at 86% 18%, color-mix(in srgb, var(--category-accent) 40%, transparent), transparent 70%),
    radial-gradient(260px 200px at 18% 118%, color-mix(in srgb, var(--category-accent) 16%, transparent), transparent 72%),
    linear-gradient(150deg, #0e141b 0%, #070a0e 62%, #050709 100%);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--category-accent) 46%, rgba(246, 232, 214, 0.12)),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  gap: 16px;
  isolation: isolate;
  justify-content: space-between;
  min-height: 128px;
  overflow: hidden;
  padding: 20px 24px;
  position: relative;
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.store-category-card::before {
  background-image:
    radial-gradient(1.6px 1.6px at 46% 22%, rgba(255, 255, 255, 0.85), transparent 60%),
    radial-gradient(1.3px 1.3px at 58% 52%, rgba(255, 255, 255, 0.6), transparent 60%),
    radial-gradient(1.8px 1.8px at 38% 66%, rgba(255, 255, 255, 0.7), transparent 60%),
    radial-gradient(1.3px 1.3px at 64% 30%, rgba(255, 255, 255, 0.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 52% 78%, rgba(255, 255, 255, 0.45), transparent 60%);
  content: "";
  inset: 0;
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
  transition: opacity 260ms ease;
  z-index: 1;
}

.store-category-card:hover {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--category-accent) 70%, rgba(246, 232, 214, 0.2)),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 28px color-mix(in srgb, var(--category-accent) 40%, transparent),
    0 20px 36px rgba(0, 0, 0, 0.46);
  transform: translateY(-4px);
}

.store-category-card:hover::before {
  opacity: 1;
}

.store-category-card:focus-visible {
  outline: 3px solid var(--category-accent);
  outline-offset: 3px;
}

.category-vips {
  --category-accent: var(--gold);
}

.category-supporters {
  --category-accent: var(--red);
}

.store-category-card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  text-align: left;
  z-index: 2;
}

.store-category-card-copy small {
  color: color-mix(in srgb, var(--category-accent) 70%, white 30%);
  display: block;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-category-card-copy strong {
  -webkit-text-stroke: 1.5px rgba(8, 6, 10, 0.6);
  color: #fff9f0;
  display: block;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  paint-order: stroke fill;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.4), 0 10px 20px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

.store-category-card-copy em {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-style: normal;
}

.store-category-card-art {
  align-items: flex-end;
  align-self: stretch;
  display: flex;
  flex: none;
  justify-content: center;
  position: relative;
  width: clamp(96px, 16vw, 150px);
  z-index: 1;
}

.store-category-card-art::before {
  background: radial-gradient(closest-side, color-mix(in srgb, var(--category-accent) 65%, white 15%), transparent 72%);
  content: "";
  filter: blur(20px);
  inset: 10% -20% -6%;
  opacity: 0.55;
  position: absolute;
  transition: opacity 260ms ease;
  z-index: 0;
}

.store-category-card:hover .store-category-card-art::before {
  opacity: 0.8;
}

.store-category-card-art img {
  height: 168px;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  transition: transform 260ms ease;
  width: auto;
  z-index: 1;
}

.store-category-card:hover .store-category-card-art img {
  transform: scale(1.04);
}

.store-category-card-action {
  align-items: center;
  background: color-mix(in srgb, var(--category-accent) 20%, rgba(5, 7, 10, 0.55));
  border: 1px solid color-mix(in srgb, var(--category-accent) 48%, transparent);
  border-radius: 999px;
  color: #fff9f0;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 900;
  gap: 6px;
  letter-spacing: 0.07em;
  margin-top: 2px;
  padding: 7px 13px;
  text-transform: uppercase;
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
  width: fit-content;
}

.store-category-card:hover .store-category-card-action {
  background: color-mix(in srgb, var(--category-accent) 38%, rgba(5, 7, 10, 0.6));
  border-color: color-mix(in srgb, var(--category-accent) 75%, transparent);
  transform: translateX(3px);
}

.store-category-card-action svg {
  color: var(--category-accent);
  height: 15px;
  width: 15px;
}

.store-home-rail {
  display: grid;
  gap: 18px;
  grid-template-rows: auto 1fr;
}

.store-featured-card,
.store-community-card {
  border-radius: 14px;
  overflow: hidden;
  padding: 20px;
}

/* O tooltip das compras recentes sobe sobre o módulo anterior. */
.tebex-recent-payments-module {
  overflow: visible;
  position: relative;
  z-index: 2;
}

.store-featured-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  text-align: center;
}

.store-featured-card > .rail-kicker {
  font-size: 0.86rem;
}

.featured-product-image {
  align-items: center;
  background: transparent;
  border-radius: 0;
  display: flex;
  flex: 1;
  height: 174px;
  justify-content: center;
  margin: 13px 0 12px;
  min-height: 174px;
  width: 100%;
}

.featured-product-image img {
  height: 158px;
  object-fit: contain;
  width: 100%;
}

.featured-product-copy .product-type,
.featured-product-copy .package-copy {
  color: var(--muted);
  font-size: 0.66rem;
  margin: 0;
}

.featured-product-copy h2 {
  font-size: 1.08rem;
  margin: 0;
}

.featured-product-copy strong {
  color: var(--green);
  display: block;
  font-size: 1.08rem;
  margin: 6px 0 12px;
}

.store-featured-card > button,
.catalog-product-actions button {
  background: var(--green-dark);
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  min-height: 38px;
  padding: 0 14px;
  transition: background 180ms ease, transform 180ms ease;
  width: 100%;
}

.store-featured-card > button:hover,
.catalog-product-actions button:hover {
  background: #3aa596;
  transform: translateY(-1px);
}

.store-community-card header {
  border-bottom: 1px solid rgba(246, 232, 214, 0.1);
  padding-bottom: 13px;
}

.store-community-card header h2 {
  color: #8ee8d0;
  font-size: 1rem;
  margin: 0;
}

.store-community-card header p {
  color: var(--muted);
  font-size: 0.66rem;
  margin: 3px 0 0;
}

.top-donor-winner {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: 70px 1fr;
  margin-top: 12px;
  min-height: 108px;
}

.top-donor-winner > img {
  height: 108px;
  object-fit: contain;
  object-position: center bottom;
  width: 70px;
}

.top-donor-winner small,
.top-donor-winner strong,
.top-donor-winner span {
  display: block;
}

.top-donor-winner small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.top-donor-winner strong {
  color: #fff9f0;
  font-size: 1rem;
  margin-top: 3px;
}

.top-donor-winner span {
  color: var(--muted);
  font-size: 0.63rem;
  margin-top: 3px;
}

.top-donor-list {
  display: grid;
  gap: 5px;
  list-style: none;
  margin: 11px 0 0;
  padding: 0;
}

.top-donor-list li {
  align-items: center;
  background: rgba(246, 232, 214, 0.035);
  border-radius: 7px;
  display: grid;
  gap: 8px;
  grid-template-columns: 16px 42px 1fr;
  min-height: 48px;
  padding: 3px 8px;
}

.top-donor-list li > span {
  color: rgba(246, 232, 214, 0.4);
  font-size: 0.65rem;
  text-align: center;
}

.top-donor-list img {
  height: 42px;
  image-rendering: pixelated;
  object-fit: contain;
  transform: rotate(-3deg);
  width: 42px;
}

.top-donor-list strong {
  font-size: 0.74rem;
}

.recent-buyers {
  border-top: 1px solid rgba(246, 232, 214, 0.1);
  margin-top: 12px;
  padding-top: 13px;
}

.recent-buyers > div {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
}

.recent-buyers strong {
  color: var(--green);
  font-size: 0.7rem;
}

.recent-buyers span {
  color: var(--muted);
  font-size: 0.58rem;
}

.recent-buyers ul {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.recent-buyers li {
  background: rgba(142, 232, 208, 0.06);
  border: 1px solid rgba(142, 232, 208, 0.1);
  border-radius: 6px;
  cursor: help;
  padding: 3px;
  position: relative;
}

.recent-buyers img {
  display: block;
  image-rendering: pixelated;
  width: 100%;
}

.recent-purchase-tooltip {
  background: #05080c;
  border: 1px solid rgba(142, 232, 208, 0.22);
  border-radius: 6px;
  bottom: calc(100% + 8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.48);
  display: flex;
  flex-direction: column;
  left: 50%;
  min-width: 148px;
  max-width: 180px;
  opacity: 0;
  padding: 8px 10px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  transform: translate(-50%, 5px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  visibility: hidden;
  overflow-wrap: anywhere;
  white-space: normal;
  z-index: 20;
}

.recent-purchase-tooltip::after {
  background: #05080c;
  border-bottom: 1px solid rgba(142, 232, 208, 0.22);
  border-right: 1px solid rgba(142, 232, 208, 0.22);
  bottom: -5px;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
}

.recent-purchase-tooltip strong {
  color: #8ee8d0;
  font-size: 0.66rem;
}

.recent-purchase-tooltip span {
  color: #f6e8d6;
  font-size: 0.57rem;
  margin-top: 4px;
}

.recent-buyers li:first-child .recent-purchase-tooltip {
  left: -4px;
  transform: translateY(5px);
}

.recent-buyers li:first-child .recent-purchase-tooltip::after {
  left: 19px;
}

.recent-buyers li:nth-child(5) .recent-purchase-tooltip {
  left: auto;
  right: -4px;
  transform: translateY(5px);
}

.recent-buyers li:nth-child(5) .recent-purchase-tooltip::after {
  left: auto;
  right: 15px;
  transform: rotate(45deg);
}

.recent-buyers li:hover .recent-purchase-tooltip,
.recent-buyers li:focus-visible .recent-purchase-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.recent-buyers li:first-child:hover .recent-purchase-tooltip,
.recent-buyers li:first-child:focus-visible .recent-purchase-tooltip,
.recent-buyers li:nth-child(5):hover .recent-purchase-tooltip,
.recent-buyers li:nth-child(5):focus-visible .recent-purchase-tooltip {
  transform: translateY(0);
}

.recent-buyers li:focus-visible {
  border-color: #8ee8d0;
  outline: 2px solid rgba(142, 232, 208, 0.3);
  outline-offset: 2px;
}

.secure-payment-card {
  background: rgba(4, 10, 16, 0.88);
  border: 1px solid rgba(142, 232, 208, 0.62);
  border-radius: 14px;
  margin: 22px auto 0;
  max-width: 1180px;
  padding: 28px 34px;
}

.secure-payment-card header {
  align-items: center;
  display: flex;
  gap: 14px;
}

.secure-payment-card h2 {
  color: #f6f8fb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  margin: 0;
}

.secure-payment-lock {
  align-items: center;
  background: rgba(142, 232, 208, 0.1);
  border: 1px solid rgba(142, 232, 208, 0.2);
  border-radius: 9px;
  color: #8ee8d0;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.secure-payment-lock svg {
  height: 22px;
  width: 22px;
}

.secure-payment-copy {
  color: #cad3dd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  line-height: 1.55;
  margin-top: 20px;
}

.secure-payment-copy p {
  margin: 0;
}

.secure-payment-copy p + p {
  margin-top: 10px;
}

.secure-payment-copy a {
  color: #8ee8d0;
  font-weight: 800;
}

.secure-payment-copy a:hover {
  color: #b5f7e7;
}

.secure-payment-divider {
  background: linear-gradient(90deg, rgba(142, 232, 208, 0.45), rgba(142, 232, 208, 0.08));
  height: 1px;
  margin: 24px 0;
}

.payment-methods {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(9, minmax(92px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.payment-method {
  align-items: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(202, 211, 221, 0.25);
  border-radius: 10px;
  color: #dce3ea;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 7px;
  height: 70px;
  justify-content: center;
  padding: 9px;
  text-align: center;
}

.payment-method svg {
  height: 20px;
  width: 20px;
}

.payment-visa {
  color: #6584ff;
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: -0.05em;
}

.payment-mastercard {
  flex-direction: column;
  font-size: 0.58rem;
  gap: 3px;
}

.payment-mastercard > span {
  height: 26px;
  position: relative;
  width: 44px;
}

.payment-mastercard > span::before,
.payment-mastercard > span::after {
  border-radius: 50%;
  content: "";
  height: 26px;
  position: absolute;
  top: 0;
  width: 26px;
}

.payment-mastercard > span::before {
  background: #eb3037;
  left: 0;
}

.payment-mastercard > span::after {
  background: rgba(245, 153, 28, 0.92);
  right: 0;
}

.payment-amex {
  color: #60bdff;
  font-size: 0.57rem;
  line-height: 1;
}

.payment-paypal {
  color: #b8bac0;
  font-size: 0.84rem;
  font-style: italic;
  gap: 5px;
}

.payment-paypal strong {
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.paypal-mark {
  color: #b8bac0;
  display: inline-block;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  position: relative;
  text-shadow: 2px 1px 0 rgba(184, 186, 192, 0.38);
  transform: skew(-8deg);
}

.payment-pix {
  color: #a9abb0;
  font-size: 1.38rem;
  font-weight: 500;
  gap: 9px;
}

.payment-pix strong {
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.pix-logo {
  display: block;
  height: 30px;
  object-fit: contain;
  width: 30px;
}

.payment-boleto,
.payment-bank {
  flex-direction: column;
  font-size: 0.58rem;
  gap: 4px;
}

.payment-crypto {
  color: #e7a33a;
  flex-direction: column;
  font-size: 0.58rem;
  gap: 3px;
}

.payment-more {
  background: linear-gradient(145deg, #168da5, #0b637b);
  border-color: rgba(142, 232, 208, 0.5);
  color: white;
  flex-direction: column;
  gap: 1px;
}

.payment-more strong {
  font-size: 1.35rem;
  line-height: 1;
}

.payment-more span {
  font-size: 0.58rem;
  text-transform: uppercase;
}

.payment-methods-note {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  margin: 14px 0 0;
}

@media (max-width: 1050px) {
  .payment-methods {
    grid-template-columns: repeat(5, minmax(92px, 1fr));
  }
}

@media (max-width: 620px) {
  .secure-payment-card {
    padding: 22px 18px;
  }

  .secure-payment-card h2 {
    font-size: 1rem;
  }

  .payment-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-method:last-child {
    grid-column: 1 / -1;
  }
}

/* Páginas de categoria */
.category-page {
  min-height: 0;
  padding-bottom: 100px;
}

.catalog-back {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.72rem;
  gap: 7px;
  margin-bottom: 24px;
}

.catalog-back:hover {
  color: var(--green);
}

.catalog-back svg {
  height: 16px;
  width: 16px;
}

.catalog-hero {
  align-items: end;
  border-bottom: 1px solid rgba(246, 232, 214, 0.12);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 22px;
}

.catalog-hero p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
  max-width: 430px;
  text-align: right;
}

.catalog-product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-product-card {
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease;
}

.catalog-product-card:hover {
  border-color: rgba(142, 232, 208, 0.32);
  transform: translateY(-3px);
}

.catalog-product-card .product-media {
  align-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(142, 232, 208, 0.12), transparent 56%),
    rgba(255, 255, 255, 0.018);
  display: flex;
  height: 245px;
  justify-content: center;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.catalog-product-card .product-media::before {
  background-image:
    radial-gradient(1.6px 1.6px at 46% 22%, rgba(255, 255, 255, 0.85), transparent 60%),
    radial-gradient(1.3px 1.3px at 58% 52%, rgba(255, 255, 255, 0.6), transparent 60%),
    radial-gradient(1.8px 1.8px at 38% 66%, rgba(255, 255, 255, 0.7), transparent 60%),
    radial-gradient(1.3px 1.3px at 64% 30%, rgba(255, 255, 255, 0.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 52% 78%, rgba(255, 255, 255, 0.45), transparent 60%),
    radial-gradient(1.4px 1.4px at 22% 42%, rgba(255, 255, 255, 0.55), transparent 60%),
    radial-gradient(1.2px 1.2px at 80% 58%, rgba(255, 255, 255, 0.5), transparent 60%),
    radial-gradient(1.4px 1.4px at 88% 15%, rgba(255, 255, 255, 0.5), transparent 60%);
  content: "";
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.catalog-product-card .product-media img {
  height: 100%;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}

.catalog-product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px;
}

.catalog-product-card .product-type {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.catalog-product-card h2 {
  font-size: 1rem;
  margin: 5px 0 6px;
}

.catalog-product-card .package-copy {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
  margin: 0;
}

.catalog-product-card .product-perks {
  display: none;
}

.catalog-product-actions {
  align-items: center;
  display: grid;
  gap: 11px;
  grid-template-columns: 1fr auto;
  margin-top: auto;
  padding-top: 18px;
}

.catalog-product-actions strong {
  color: #fff9f0;
  font-size: 0.9rem;
  white-space: nowrap;
}

.catalog-product-actions button {
  min-width: 116px;
  width: auto;
}

.catalog-product-actions button:disabled {
  background: rgba(246, 232, 214, 0.1);
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
}

/* Tipografia compacta dos preços */
.catalog-product-actions > strong,
.catalog-product-card .product-price,
.featured-product-copy > strong,
.store-page-v2 .shop-product-card .product-bottom > strong,
[data-product-detail-price],
[data-cart-total],
.cart-row > div > span,
.cart-suggestion-row > div > span {
  font-family: var(--font-price);
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.7);
  text-rendering: optimizeLegibility;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.72);
}

/* Cards compactos das categorias */
.catalog-product-card {
  background: #10141d;
  border-color: rgba(246, 232, 214, 0.08);
  border-radius: 16px;
  min-height: 0;
}

.catalog-product-card .product-media {
  background: linear-gradient(150deg, #0e141b 0%, #070a0e 62%, #050709 100%);
  height: 258px;
  padding: 28px;
}

.catalog-product-card .product-media img {
  max-height: 210px;
}

/* Renders de personagem (retrato) ocupando o maximo de espaco do card */
.catalog-product-grid-portrait {
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-product-grid-portrait .product-media {
  align-items: flex-end;
  aspect-ratio: 1 / 0.82;
  height: auto;
  padding: 8px 8px 0;
}

.catalog-product-grid-portrait .product-media img {
  max-height: none;
}

.catalog-product-grid-portrait .catalog-product-card-body {
  padding: 12px 13px 13px;
}

.catalog-product-grid-portrait h2 {
  font-size: 0.88rem;
  margin: 0 0 5px;
}

.catalog-product-grid-portrait .product-price {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
}

.catalog-product-grid-portrait .catalog-product-actions {
  gap: 6px;
  margin-top: 10px;
}

.catalog-product-grid-portrait .catalog-product-actions button {
  min-height: 36px;
}

.catalog-product-grid-portrait .catalog-info-button {
  min-width: 36px;
  width: 36px;
}

.catalog-product-card-body {
  background: #111520;
  padding: 15px 16px 16px;
}

.catalog-product-card h2 {
  color: #fff9f0;
  font-size: 1.05rem;
  line-height: 1.15;
  margin: 0 0 7px;
}

.catalog-product-card .product-price {
  color: var(--green);
  display: block;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  margin: 0;
}

.catalog-product-actions {
  gap: 7px;
  grid-template-columns: minmax(0, 1fr) 42px;
  margin-top: 12px;
  padding-top: 0;
}

.catalog-product-actions button {
  min-height: 40px;
}

.catalog-product-actions .catalog-buy-button {
  align-items: center;
  background: var(--green-dark);
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 7px;
  justify-content: center;
  min-width: 0;
  padding: 0 12px;
  width: 100%;
}

.catalog-product-actions .catalog-buy-button svg,
.catalog-product-actions .catalog-info-button svg {
  height: 16px;
  width: 16px;
}

.catalog-product-actions .catalog-info-button {
  align-items: center;
  background: rgba(77, 33, 53, 0.72);
  border: 1px solid rgba(231, 163, 58, 0.38);
  border-radius: 8px;
  color: var(--gold);
  display: inline-flex;
  justify-content: center;
  min-width: 42px;
  padding: 0;
  width: 42px;
}

.catalog-product-actions .catalog-info-button:hover {
  background: rgba(77, 33, 53, 1);
  color: #ffd27e;
}

/* Aviso "leia antes de comprar" nas paginas de produto */
.purchase-notice {
  align-items: flex-start;
  background: linear-gradient(150deg, #17140a 0%, #0d0b06 75%);
  border: 1px solid rgba(231, 163, 58, 0.4);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 26px rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 14px;
  margin: 24px 0 0;
  padding: 16px 20px;
}

.purchase-notice-icon {
  align-items: center;
  color: var(--gold);
  display: flex;
  flex: 0 0 22px;
  height: 22px;
  justify-content: center;
  margin-top: 1px;
  width: 22px;
}

.purchase-notice-icon svg {
  height: 100%;
  width: 100%;
}

.purchase-notice-copy {
  min-width: 0;
}

.purchase-notice-copy > strong {
  color: var(--gold);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.purchase-notice-copy p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

.purchase-notice-copy p strong {
  color: #fff9f0;
  font-weight: 800;
}

@media (max-width: 600px) {
  .purchase-notice {
    padding: 14px 16px;
  }
}

/* Painel de informações do produto */
.product-detail-modal {
  background: rgba(3, 7, 12, 0.84);
  backdrop-filter: blur(6px);
  padding: 20px;
}

.product-detail-dialog {
  background: #10141d;
  border-color: rgba(231, 163, 58, 0.24);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  max-height: min(820px, calc(100svh - 40px));
  max-width: 940px;
  overflow: hidden;
  width: min(100%, 940px);
}

.product-detail-head {
  align-items: center;
  border-bottom: 1px solid rgba(246, 232, 214, 0.1);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 15px 18px;
}

.product-detail-head p {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 0 3px;
  text-transform: uppercase;
}

.product-detail-head h2 {
  color: #fff9f0;
  font-size: 1.08rem;
  margin: 0;
}

.product-detail-head .product-detail-close {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  position: static;
  width: 38px;
}

.product-detail-grid {
  display: grid;
  gap: 8px;
  overflow-y: auto;
  padding: 18px;
  scrollbar-color: var(--green-dark) transparent;
}

.product-detail-panel {
  background: #171c27;
  border-left: 3px solid var(--green-dark);
  border-radius: 10px;
  color: #d9dce3;
  padding: 16px 18px;
}

.product-detail-panel > span {
  align-items: center;
  color: var(--green);
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 8px;
  margin-bottom: 10px;
}

.product-detail-panel > span svg {
  height: 16px;
  width: 16px;
}

.product-detail-panel [data-product-detail-description] p {
  color: #c4c9d2;
  font-size: 0.8rem;
  line-height: 1.65;
  margin: 0;
}

.product-detail-benefits {
  border-left-color: var(--gold);
}

.product-detail-benefits > span {
  color: var(--gold);
}

.product-detail-panel ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-detail-panel li {
  align-items: center;
  color: #eef2f2;
  display: flex;
  font-size: 0.78rem;
  font-weight: 750;
  gap: 9px;
}

.product-detail-panel li svg {
  background: rgba(142, 232, 208, 0.09);
  border-radius: 6px;
  color: var(--green);
  flex: 0 0 24px;
  height: 24px;
  padding: 5px;
  width: 24px;
}

.product-detail-panel li.is-placeholder {
  color: var(--muted);
}

.product-detail-footer {
  align-items: center;
  background: #0d1119;
  border-top: 1px solid rgba(246, 232, 214, 0.1);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 14px 18px;
}

.product-detail-price small,
.product-detail-price strong {
  display: block;
}

.product-detail-price small {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.product-detail-price strong {
  color: var(--green);
  font-size: 1.42rem;
}

.product-detail-footer-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.product-detail-footer-actions > button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
  padding: 0 16px;
}

.product-detail-footer-actions > button:first-child {
  background: transparent;
  color: #fff9f0;
}

.product-detail-footer-actions .checkout-button {
  background: var(--green-dark);
  color: white;
  display: inline-flex;
  margin: 0;
  width: auto;
}

@media (max-width: 620px) {
  .product-detail-modal {
    padding: 10px;
  }

  .product-detail-dialog {
    max-height: calc(100svh - 20px);
  }

  .product-detail-grid {
    padding: 10px;
  }

  .product-detail-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-detail-footer-actions {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 1050px) {
  .store-home-grid {
    grid-template-columns: 1fr;
  }

  .store-home-rail {
    grid-template-columns: 0.85fr 1.15fr;
    grid-template-rows: auto;
  }

  .top-donor-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .store-category-showcase {
    padding: 18px;
  }

  .store-section-heading,
  .catalog-hero {
    align-items: start;
    flex-direction: column;
    gap: 9px;
  }

  .store-section-heading p,
  .catalog-hero p {
    max-width: none;
    text-align: left;
  }

  .catalog-product-grid,
  .store-home-rail {
    grid-template-columns: 1fr;
  }

  .store-category-card {
    min-height: 108px;
    padding: 16px 18px;
  }

  .store-category-card-art {
    width: clamp(78px, 24vw, 120px);
  }

  .store-category-card-art img {
    height: 128px;
  }

  .top-donor-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 481px) and (max-width: 1000px) {
  .catalog-product-grid-portrait {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.store-page-v2 .shop-product-card {
  --product-accent: var(--green);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%),
    rgba(45, 55, 64, 0.96);
  border: 1px solid rgba(246, 232, 214, 0.1);
  border-left-color: rgba(246, 232, 214, 0.1);
  border-top: 4px solid var(--product-accent);
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  isolation: isolate;
  min-height: 430px;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    border-color var(--motion-base) var(--motion-ease),
    box-shadow var(--motion-slow) var(--motion-ease),
    filter var(--motion-base) var(--motion-ease),
    transform var(--motion-slow) var(--motion-ease-out);
}

.store-page-v2 .shop-product-card::before {
  background: none;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: scale(0.96);
  transition:
    opacity var(--motion-slow) var(--motion-ease-out),
    transform var(--motion-slow) var(--motion-ease-out);
  z-index: 0;
}

.store-page-v2 .shop-product-card > * {
  position: relative;
  z-index: 1;
}

.store-page-v2 .shop-product-card:hover {
  border-bottom-color: var(--product-accent);
  border-left-color: var(--product-accent);
  border-right-color: var(--product-accent);
  border-top-color: var(--product-accent);
  filter: brightness(1.05);
  transform: translate3d(0, -7px, 0) scale(1.003);
}

.store-page-v2 .shop-product-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.store-page-v2 .chibi-product-card,
.store-page-v2 .shop-product-card[data-category="passes"],
.store-page-v2 .shop-product-card[data-category="chaves"],
.store-page-v2 .shop-product-card[data-category="character-packs"],
.store-page-v2 .shop-product-card[data-category="boosters"] {
  border-left-color: rgba(246, 232, 214, 0.1);
  border-top-color: var(--product-accent);
}

.store-page-v2 .chibi-product-card:nth-child(2) {
  --product-accent: #a8cf64;
}

.store-page-v2 .chibi-product-card:nth-child(3),
.store-page-v2 .chibi-product-card:nth-child(4) {
  --product-accent: #ef6b66;
}

.store-page-v2 .shop-product-card[data-category="passes"] {
  --product-accent: var(--gold);
}

.store-page-v2 .shop-product-card[data-category="chaves"] {
  --product-accent: #5db5f0;
}

.store-page-v2 .shop-product-card[data-category="character-packs"] {
  --product-accent: var(--lilac);
}

.store-page-v2 .shop-product-card[data-category="boosters"] {
  --product-accent: #ef6b66;
}

.store-page-v2 .shop-product-card .product-media,
.store-page-v2 .chibi-product-card .chibi-product-media {
  align-items: center;
  aspect-ratio: auto;
  background: #27313a;
  border-bottom: 1px solid rgba(246, 232, 214, 0.08);
  border-right: 0;
  display: flex;
  height: clamp(204px, 22vw, 252px);
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
}

.store-page-v2 .chibi-product-card .chibi-product-media {
  background: #111923;
  padding: 10px 12px 0;
}

.store-page-v2 .shop-product-card .product-media img {
  max-height: 100%;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform var(--motion-slow) var(--motion-ease-out);
}

.store-page-v2 .shop-product-card:hover .product-media img {
  transform: translate3d(0, -3px, 0) scale(1.035);
}

.store-page-v2 .shop-product-card.chibi-product-card .chibi-product-media img {
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  width: 100%;
}

.store-page-v2 .shop-product-card .product-body {
  align-content: end;
  gap: 10px;
  min-height: 172px;
  padding: 18px;
}

.store-page-v2 .shop-product-card h3 {
  color: white;
  font-size: 1.16rem;
  line-height: 1.14;
}

.store-page-v2 .shop-product-card .product-bottom {
  display: grid;
  gap: 9px;
  grid-template-columns: minmax(0, 1fr) 42px;
  justify-content: stretch;
  margin-top: 8px;
}

.store-page-v2 .shop-product-card .product-bottom strong {
  color: #9bd9ef;
  grid-column: 1 / -1;
  margin-right: 0;
}

.store-page-v2 .shop-product-card .buy-button {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  width: 100%;
}

.store-page-v2 .shop-product-card .info-button {
  background: var(--product-accent);
  color: #06231f;
  grid-column: 2;
  grid-row: 2;
  width: 42px;
}

@media (max-width: 720px) {
  .store-page-v2 .shop-product-grid,
  .store-page-v2 #vips .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .store-page-v2 .shop-product-card {
    min-height: 404px;
  }

  .store-page-v2 .shop-product-card .product-media,
  .store-page-v2 .chibi-product-card .chibi-product-media {
    height: clamp(210px, 58vw, 260px);
  }
}
