/* Kryocore storefront — outcome-focused gaming presentation.
   Scoped to public storefront pages so portal/admin behavior stays untouched. */

html { overflow-x: clip; }

:is(.storefront-home, .storefront-catalog, .storefront-product, .storefront-checkout) {
  --sf-blue: #51c7ff;
  --sf-blue-hi: #9ae5ff;
  --sf-violet: #806cff;
  --sf-green: #4df58b;
  --sf-panel: rgba(10, 17, 32, .88);
  --sf-line: rgba(118, 180, 255, .18);
  background:
    radial-gradient(circle at 8% 5%, rgba(63, 177, 255, .10), transparent 26rem),
    radial-gradient(circle at 90% 20%, rgba(128, 108, 255, .09), transparent 30rem),
    #050912;
}

:is(.storefront-home, .storefront-catalog, .storefront-product, .storefront-checkout)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(91, 149, 222, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 149, 222, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}

:is(.storefront-home, .storefront-catalog, .storefront-product) .site-header-v2 {
  width: 100%;
  min-width: 0;
  padding-inline: clamp(18px, 5vw, 72px);
  background: rgba(5, 9, 18, .82);
  border-bottom-color: rgba(118, 180, 255, .15);
}

:is(.storefront-home, .storefront-catalog, .storefront-product) .site-header-v2 > * {
  min-width: 0;
}

:is(.storefront-home, .storefront-catalog, .storefront-product) .site-brand .mark {
  filter: drop-shadow(0 0 13px rgba(81, 199, 255, .34));
}

:is(.storefront-home, .storefront-catalog, .storefront-product) .btn-primary,
.storefront-checkout .co-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(154, 229, 255, .42);
  background: linear-gradient(135deg, var(--sf-blue-hi), var(--sf-blue) 55%, #3aaaff);
  box-shadow: 0 10px 30px rgba(51, 181, 255, .20), inset 0 1px rgba(255, 255, 255, .38);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

:is(.storefront-home, .storefront-catalog, .storefront-product) .btn-primary:hover,
.storefront-checkout .co-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 14px 38px rgba(51, 181, 255, .30), inset 0 1px rgba(255, 255, 255, .5);
}

/* Home */
.storefront-home .status-strip {
  border-bottom-color: rgba(118, 180, 255, .12);
  background: rgba(7, 13, 25, .82);
}

.storefront-home .hero-split {
  width: min(100%, 1380px);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  min-height: 680px;
  padding: clamp(68px, 7vw, 104px) clamp(24px, 5vw, 68px) 76px;
  gap: clamp(44px, 6vw, 92px);
}

.storefront-home .hero-split > * { min-width: 0; }
.storefront-home .hero-split-left { max-width: 680px; }

.storefront-catalog .shop-eyebrow {
  border-color: rgba(77, 245, 139, .28);
  background: rgba(21, 72, 45, .20);
  color: #a7f8c3;
  box-shadow: inset 0 0 20px rgba(77, 245, 139, .04);
}

.storefront-home .hero-split-title {
  position: relative;
  max-width: 740px;
  padding-left: 22px;
  font-size: clamp(58px, 5.55vw, 80px);
  line-height: .88;
  letter-spacing: -.052em;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.storefront-home .hero-split-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .08em;
  bottom: .12em;
  width: 3px;
  background: linear-gradient(var(--sf-blue-hi), var(--sf-blue) 55%, transparent);
  box-shadow: 0 0 18px rgba(81, 199, 255, .42);
}

.storefront-home .hero-title-line {
  display: block;
  color: var(--steel-hi);
}

.storefront-home .hero-split-title em {
  display: block;
  padding: .14em 0 .10em;
  color: var(--sf-blue);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 0 34px rgba(81, 199, 255, .18);
}

.storefront-home .hero-split-sub {
  max-width: 570px;
  color: #99a8c1;
  font-size: 16.5px;
  line-height: 1.68;
}

.storefront-home .hero-loadout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  color: #7e91ad;
  font: 750 10px var(--f-mono);
  letter-spacing: .18em;
}

.storefront-home .hero-loadout span {
  display: inline-flex;
  align-items: center;
}

.storefront-home .hero-loadout span + span::before {
  content: "/";
  margin: 0 13px;
  color: rgba(81, 199, 255, .48);
}

.storefront-home .hero-split-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 0;
  border: 1px solid var(--sf-line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  background: rgba(8, 15, 29, .66);
}

.storefront-home .hero-split-proof .stat {
  min-width: 0;
  padding: 17px 15px;
  border-right: 1px solid var(--sf-line);
}

.storefront-home .hero-split-proof .stat:last-child { border-right: 0; }
.storefront-home .hero-split-proof .stat strong { color: var(--sf-blue-hi); }

.storefront-home .hero-preview {
  border-color: rgba(81, 199, 255, .27);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .48), 0 0 70px rgba(81, 199, 255, .10);
}

.storefront-home .hero-preview::after,
.storefront-catalog .p-cover::before,
.storefront-product .pd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(transparent 50%, rgba(105, 188, 255, .025) 50%);
  background-size: 100% 4px;
  opacity: .75;
}

.storefront-home .game-marquee.is-single {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}

.storefront-home .game-marquee-track.is-static {
  width: 100%;
  animation: none;
  justify-content: center;
}

.storefront-home .game-marquee.is-single .game-tile {
  width: min(100%, 440px);
}

.storefront-home .prod-wall,
.storefront-home .howit,
.storefront-home .adv-section {
  width: min(100%, 1280px);
}

.storefront-home .howit-head,
.storefront-home .adv-head {
  max-width: 760px;
}

.storefront-home .prod-wall-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  margin-bottom: 34px;
  text-align: left;
}

.storefront-home .prod-wall-browse {
  flex: 0 0 auto;
  padding-bottom: 4px;
  color: var(--sf-blue-hi);
  font: 700 12px var(--f-mono);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.storefront-home .prod-wall-browse:hover { color: #fff; }

.storefront-home .prod-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.storefront-home .prod-wall-grid.count-1 {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.storefront-home .prod-wall-grid.count-2 {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

.storefront-home .prod-card {
  min-width: 0;
  border-color: hsla(var(--game-hue), 76%, 68%, .20);
  background: linear-gradient(165deg, rgba(14, 25, 45, .96), rgba(6, 12, 24, .98));
  box-shadow: 0 22px 62px rgba(0, 0, 0, .25);
}

.storefront-home .prod-card:hover {
  border-color: hsla(var(--game-hue), 88%, 72%, .44);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .36), 0 0 34px hsla(var(--game-hue), 90%, 60%, .09);
}

.storefront-home .prod-card-thumb {
  min-height: 0;
  aspect-ratio: 16 / 10;
  place-items: end start;
  padding: 24px;
  color: hsl(var(--game-hue), 88%, 88%);
  text-decoration: none;
  background:
    radial-gradient(circle at 68% 38%, hsla(var(--game-hue), 90%, 62%, .25), transparent 32%),
    linear-gradient(145deg, hsl(var(--game-hue), 54%, 14%), #050a13 74%);
}

.storefront-home .prod-card-thumb::after {
  z-index: 1;
  background:
    linear-gradient(to top, rgba(3, 7, 15, .92), transparent 58%),
    linear-gradient(45deg, transparent 48%, hsla(var(--game-hue), 90%, 70%, .07) 49%, hsla(var(--game-hue), 90%, 70%, .07) 51%, transparent 52%);
  background-size: 100% 100%, 24px 24px;
}

.storefront-home .prod-card-thumb.has-image::before {
  background: linear-gradient(180deg, rgba(4, 8, 17, .04), rgba(4, 8, 17, .82));
}

.storefront-home .prod-card-status {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  font-size: 10px;
  backdrop-filter: blur(10px);
}

.storefront-home .prod-card-thumb-label {
  position: relative;
  z-index: 3;
  max-width: 100%;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: .10em;
  overflow-wrap: anywhere;
}

.storefront-home .prod-card-body { padding: 22px; }
.storefront-home .prod-card-head { margin-bottom: 10px; }
.storefront-home .prod-card-head h3 { margin-top: 4px; font-size: 23px; }

.storefront-home .prod-card-kicker,
.storefront-catalog .p-kicker {
  display: block;
  color: var(--sf-blue);
  font: 750 9px var(--f-mono);
  letter-spacing: .17em;
}

.storefront-home .prod-card-description {
  display: -webkit-box;
  min-height: 63px;
  margin: 0;
  overflow: hidden;
  color: var(--ink-mut);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.storefront-home .feat-chips { min-height: 29px; margin: 14px 0 16px; }

.storefront-home .prod-card-offer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding: 14px 0;
  border-block: 1px solid rgba(118, 180, 255, .12);
}

.storefront-home .prod-card-offer > div {
  min-width: 0;
  padding: 9px 11px;
  border-radius: 8px;
  background: rgba(18, 31, 54, .72);
}

.storefront-home .prod-card-offer span,
.storefront-home .prod-card-offer strong { display: block; }

.storefront-home .prod-card-offer span {
  color: var(--ink-dim);
  font: 700 8px var(--f-mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.storefront-home .prod-card-offer strong {
  margin-top: 4px;
  color: var(--steel-hi);
  font-size: 15px;
}

.storefront-home .prod-card-offer > div:first-child strong { color: var(--sf-blue); }
.storefront-home .prod-footer { padding-top: 16px; border-top: 0; }

.storefront-home .howit-step,
.storefront-home .adv {
  border: 1px solid rgba(118, 180, 255, .15);
  background: linear-gradient(145deg, rgba(13, 24, 44, .88), rgba(7, 13, 25, .88));
  border-radius: 16px;
}

.storefront-home .howit-step { padding: 28px; }
.storefront-home .adv { padding: 34px 28px; }

/* Required partnership marks: deliberately understated, but fully visible. */
.storefront-home .partner-strip {
  border-top: 1px solid rgba(118, 180, 255, .10);
  border-bottom: 1px solid rgba(118, 180, 255, .08);
  background: #080d17;
}

.storefront-home .partner-strip-inner {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 18px 0 20px;
}

.storefront-home .partner-strip h2 {
  margin: 0 0 12px;
  color: rgba(151, 168, 198, .66);
  font: 700 9px/1 var(--f-mono);
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}

.storefront-home .partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(22px, 5vw, 72px);
}

.storefront-home .partner-logo {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: .64;
  filter: saturate(.74);
  transition: opacity .18s ease, filter .18s ease;
}

.storefront-home .partner-logo:hover {
  opacity: .92;
  filter: saturate(.95);
}

.storefront-home .partner-logo img {
  display: block;
  height: auto;
  max-width: 100%;
}

.storefront-home .partner-logo-ownedcore img,
.storefront-home .partner-logo-elitepvpers img { width: 180px; }
.storefront-home .partner-logo-cheatglobal img { width: 135px; }

/* Catalog */
.storefront-catalog .shop-hero {
  width: min(100%, 1280px);
  padding: clamp(66px, 7vw, 100px) 32px 26px;
}

.storefront-catalog .shop-hero h1 {
  max-width: 900px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -.055em;
}

.storefront-catalog .shop-hero > p { max-width: 700px; font-size: 17px; line-height: 1.7; }

.storefront-catalog .shop-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  gap: 0;
  border: 1px solid var(--sf-line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8, 15, 29, .72);
}

.storefront-catalog .shop-stat-row .cell {
  padding: 16px 18px;
  border-right: 1px solid var(--sf-line);
}

.storefront-catalog .shop-stat-row .cell:last-child { border-right: 0; }
.storefront-catalog .shop-stat-row .n { color: var(--sf-blue-hi); }

.storefront-catalog .shop-toolbar,
.storefront-catalog .shop-wall {
  width: min(100%, 1280px);
}

.storefront-catalog .shop-toolbar {
  padding-block: 18px;
  border-block: 1px solid rgba(118, 180, 255, .10);
}

.storefront-catalog .shop-search { max-width: 520px; }

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

.storefront-catalog .shop-grid.count-1 {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.storefront-catalog .shop-grid.count-2 {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

.storefront-catalog .p-card {
  min-width: 0;
  border-color: hsla(var(--game-hue), 76%, 68%, .20);
  background: linear-gradient(165deg, rgba(14, 25, 45, .96), rgba(6, 12, 24, .98));
  box-shadow: 0 22px 62px rgba(0, 0, 0, .25);
}

.storefront-catalog .p-card:hover {
  border-color: hsla(var(--game-hue), 88%, 72%, .44);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .36), 0 0 34px hsla(var(--game-hue), 90%, 60%, .09);
}

.storefront-catalog .p-cover {
  min-height: 0;
  height: auto;
  aspect-ratio: 16 / 10;
  place-items: end start;
  padding: 22px;
  background:
    radial-gradient(circle at 68% 38%, hsla(var(--game-hue), 90%, 62%, .25), transparent 32%),
    linear-gradient(145deg, hsl(var(--game-hue), 54%, 14%), #050a13 74%);
}

.storefront-catalog .p-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(3, 7, 15, .94), transparent 60%);
}

.storefront-catalog .p-cover.has-image::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(4, 8, 17, .04), rgba(4, 8, 17, .88));
}

.storefront-catalog .p-cover .p-name {
  position: relative;
  z-index: 3;
  max-width: 100%;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1;
  letter-spacing: .10em;
  overflow-wrap: anywhere;
}

.storefront-catalog .p-cover .p-badges { z-index: 5; }

.storefront-catalog .p-body { padding: 21px 22px 22px; }
.storefront-catalog .p-head { margin-bottom: 9px; }
.storefront-catalog .p-head h3 { margin-top: 4px; font-size: 23px; }

.storefront-catalog .p-tagline {
  display: -webkit-box;
  min-height: 63px;
  margin-bottom: 13px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.storefront-catalog .p-features { min-height: 26px; }
.storefront-catalog .p-price-strip { gap: 7px; }
.storefront-catalog .p-price-strip .cell { min-width: 0; padding: 9px; }
.storefront-catalog .p-price-strip .cell .v { overflow-wrap: anywhere; }

/* Product */
.storefront-product .pd-wrap { width: min(100%, 1240px); padding-top: 44px; }

.storefront-product .pd-hero {
  border-color: rgba(81, 199, 255, .24);
  box-shadow: 0 36px 110px rgba(0, 0, 0, .34);
}

.storefront-product .pd-hero-inner {
  min-height: 390px;
  padding: clamp(36px, 5vw, 64px);
  background: linear-gradient(90deg, rgba(5, 9, 18, .94) 0%, rgba(5, 9, 18, .70) 48%, rgba(5, 9, 18, .28) 100%);
}

.storefront-product .pd-title { font-size: clamp(48px, 6vw, 76px); }
.storefront-product .pd-tag { max-width: 680px; font-size: 17px; }

.storefront-product .pd-hero-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-width: 220px;
}

.storefront-product .pd-price-badge { text-align: center; }
.storefront-product .pd-hero-cta { justify-content: center; text-decoration: none; }

.storefront-product .pd-section { scroll-margin-top: 96px; }

.storefront-product .f-card,
.storefront-product .plan-card,
.storefront-product .faq-item {
  background: linear-gradient(150deg, rgba(14, 25, 45, .92), rgba(7, 13, 25, .92));
  border-color: rgba(118, 180, 255, .16);
}

.storefront-product .f-card:hover,
.storefront-product .plan-card:hover {
  border-color: rgba(81, 199, 255, .34);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .26);
}

.storefront-product .plan-card.hot {
  border-color: rgba(81, 199, 255, .58);
  background: linear-gradient(155deg, rgba(24, 71, 102, .34), rgba(11, 19, 35, .96));
  box-shadow: 0 20px 60px rgba(33, 165, 235, .13);
}

/* Checkout */
.storefront-checkout .co-wrap { max-width: 1100px; padding: 46px 24px 90px; }

.storefront-checkout .co-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
}

.storefront-checkout .co-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--sf-blue), var(--sf-violet));
  color: #050912;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(81, 199, 255, .26);
}

.storefront-checkout .co-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.storefront-checkout .co-card,
.storefront-checkout .co-trust-card {
  border: 1px solid rgba(118, 180, 255, .18);
  background: linear-gradient(150deg, rgba(14, 25, 45, .94), rgba(7, 13, 25, .94));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.storefront-checkout .co-card { min-width: 0; }

.storefront-checkout .co-trust-card {
  position: sticky;
  top: 24px;
  border-radius: 18px;
  padding: 28px;
  overflow: hidden;
}

.storefront-checkout .co-trust-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: rgba(81, 199, 255, .12);
  filter: blur(18px);
}

.storefront-checkout .co-trust-kicker {
  color: var(--sf-blue);
  font: 700 10px var(--f-mono);
  letter-spacing: .16em;
}

.storefront-checkout .co-trust-card h2 {
  margin: 13px 0 10px;
  color: var(--steel-hi);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.storefront-checkout .co-trust-card > p { color: var(--ink-mut); line-height: 1.6; }
.storefront-checkout .co-trust-card ul { list-style: none; margin: 26px 0; padding: 0; }

.storefront-checkout .co-trust-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(118, 180, 255, .12);
}

.storefront-checkout .co-trust-card li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(81, 199, 255, .28);
  border-radius: 9px;
  color: var(--sf-blue);
  font: 700 10px var(--f-mono);
}

.storefront-checkout .co-trust-card b,
.storefront-checkout .co-trust-card small { display: block; }
.storefront-checkout .co-trust-card b { color: var(--steel-hi); font-size: 13px; }
.storefront-checkout .co-trust-card small { margin-top: 4px; color: var(--ink-dim); line-height: 1.45; }
.storefront-checkout .co-trust-card > a { color: var(--sf-blue); font-size: 12px; text-decoration: none; }

@media (max-width: 1080px) {
  .storefront-home .hero-split {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .storefront-home .hero-preview { width: min(100%, 760px); }
  .storefront-home .prod-wall-grid,
  .storefront-catalog .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .storefront-home .prod-wall-grid.count-1,
  .storefront-catalog .shop-grid.count-1 { grid-template-columns: minmax(0, 420px); }
  .storefront-product .pd-hero-inner { min-height: 350px; }
}

@media (max-width: 820px) {
  .storefront-product .pd-hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    background: linear-gradient(to top, rgba(5, 9, 18, .96), rgba(5, 9, 18, .48));
  }

  .storefront-product .pd-hero-right { min-width: 0; align-items: flex-start; }
  .storefront-product .pd-hero-cta { width: 100%; }
  .storefront-checkout .co-layout { grid-template-columns: 1fr; }
  .storefront-checkout .co-trust-card { position: static; }
  .storefront-checkout .co-trust-card::before { display: none; }
}

@media (max-width: 720px) {
  :is(.storefront-home, .storefront-catalog, .storefront-product, .storefront-checkout) { width: 100%; overflow-x: clip; }

  :is(.storefront-home, .storefront-catalog, .storefront-product) .site-header-v2 {
    width: 100%;
    padding: 11px 15px;
  }

  :is(.storefront-home, .storefront-catalog, .storefront-product) .site-brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .storefront-home .hero-split {
    width: 100%;
    padding: 48px 18px 52px;
    gap: 38px;
  }

  .storefront-home .hero-split-left { width: 100%; max-width: 100%; }

  .storefront-home .hero-split-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(41px, 12.2vw, 58px);
    line-height: .96;
    letter-spacing: -.055em;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .storefront-home .hero-split-title em { display: block; max-width: 100%; }
  .storefront-home .hero-split-sub { width: 100%; max-width: 100%; font-size: 15.5px; line-height: 1.65; }
  .storefront-home .hero-split-cta { width: 100%; }

  .storefront-home .hero-split-proof,
  .storefront-catalog .shop-stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .storefront-home .hero-split-proof .stat:nth-child(2),
  .storefront-catalog .shop-stat-row .cell:nth-child(2) { border-right: 0; }
  .storefront-home .hero-split-proof .stat:nth-child(-n+2),
  .storefront-catalog .shop-stat-row .cell:nth-child(-n+2) { border-bottom: 1px solid var(--sf-line); }

  .storefront-home .hero-preview { width: 100%; max-width: 100%; }
  .storefront-home .hero-preview-tabs span { flex: 1; padding-inline: 6px; text-align: center; font-size: 10px; }

  .storefront-home .game-marquee.is-single,
  .storefront-home .prod-wall,
  .storefront-home .howit,
  .storefront-home .adv-section { width: 100%; padding-inline: 16px; }

  .storefront-home .partner-strip-inner {
    width: min(100% - 32px, 520px);
    padding-block: 16px 18px;
  }

  .storefront-home .partner-logos {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .storefront-home .partner-logo { height: 40px; }
  .storefront-home .partner-logo-ownedcore img,
  .storefront-home .partner-logo-elitepvpers img { width: 160px; }
  .storefront-home .partner-logo-cheatglobal img { width: 122px; }

  .storefront-home .prod-wall-head { align-items: flex-start; margin-bottom: 28px; }
  .storefront-home .prod-wall-grid,
  .storefront-home .prod-wall-grid.count-1,
  .storefront-home .prod-wall-grid.count-2,
  .storefront-catalog .shop-grid,
  .storefront-catalog .shop-grid.count-1,
  .storefront-catalog .shop-grid.count-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .storefront-home .prod-card-thumb,
  .storefront-catalog .p-cover { min-height: 0; aspect-ratio: 16 / 10; }

  .storefront-home .prod-card-body,
  .storefront-catalog .p-body { padding: 21px 19px; }

  .storefront-home .prod-wall-head h2,
  .storefront-home .howit-head h2,
  .storefront-home .adv-head h2 { font-size: 35px !important; }

  .storefront-catalog .shop-hero,
  .storefront-catalog .shop-toolbar,
  .storefront-catalog .shop-wall,
  .storefront-product .pd-wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 16px;
  }

  .storefront-catalog .shop-hero { padding-top: 52px !important; }
  .storefront-catalog .shop-hero h1 {
    max-width: 100%;
    font-size: clamp(41px, 11vw, 54px) !important;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }
  .storefront-catalog .shop-hero h1 .accent { display: block; max-width: 100%; }
  .storefront-catalog .shop-hero > p { font-size: 15.5px; }
  .storefront-catalog .shop-toolbar { align-items: stretch; }
  .storefront-catalog .shop-search { min-width: 0; max-width: none; width: 100%; }
  .storefront-catalog .shop-chips { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 3px; }
  .storefront-catalog .chip { flex: 0 0 auto; }

  .storefront-product .pd-wrap { padding-top: 28px; padding-bottom: 64px; }
  .storefront-product .pd-hero-inner { min-height: 430px; padding: 28px 22px; }
  .storefront-product .pd-hero-inner > div { min-width: 0; }
  .storefront-product .pd-title {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 50px);
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }
  .storefront-product .pd-tag { font-size: 15px; }
  .storefront-product .pd-meta-row { gap: 8px; }
  .storefront-product .pd-hero-right { width: 100%; }
  .storefront-product .pd-price-badge { width: 100%; }
  .storefront-product .pd-section-head { align-items: flex-start; flex-direction: column; gap: 6px; }

  .storefront-checkout .co-wrap { width: 100%; max-width: 100%; padding: 26px 16px 60px; }
  .storefront-checkout .co-head { gap: 14px; }
  .storefront-checkout .co-secure { max-width: 140px; text-align: right; line-height: 1.4; }
  .storefront-checkout .co-card,
  .storefront-checkout .co-trust-card { padding: 22px; }
  .storefront-checkout .co-summary { min-width: 0; padding: 16px; }
  .storefront-checkout .co-summary strong,
  .storefront-checkout .co-summary small,
  .storefront-checkout .co-price { overflow-wrap: anywhere; }
}

@media (max-width: 400px) {
  .storefront-home .hero-split-title { font-size: 39px; }
  .storefront-home .hero-split-proof .stat,
  .storefront-catalog .shop-stat-row .cell { padding: 14px 11px; }
  .storefront-home .hero-split-proof .stat span,
  .storefront-catalog .shop-stat-row .l { font-size: 9px; }
  .storefront-checkout .co-brand { font-size: 19px; }
  .storefront-checkout .co-brand-mark { width: 30px; height: 30px; }
  .storefront-home .prod-wall-head { display: block; }
  .storefront-home .prod-wall-browse { display: inline-block; margin-top: 14px; }
  .storefront-home .prod-card-thumb,
  .storefront-catalog .p-cover { padding: 18px; }
  .storefront-home .prod-card-thumb-label,
  .storefront-catalog .p-cover .p-name { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  :is(.storefront-home, .storefront-catalog, .storefront-product, .storefront-checkout) *,
  :is(.storefront-home, .storefront-catalog, .storefront-product, .storefront-checkout) *::before,
  :is(.storefront-home, .storefront-catalog, .storefront-product, .storefront-checkout) *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
