:root {
  --bg: #05070b;
  --bg-soft: #0a0f18;
  --card: #0d1420;
  --card-2: #111a29;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
  --text: #f7f9fc;
  --muted: #8d9aae;
  --blue: #2878ff;
  --blue-2: #60a5fa;
  --blue-glow: rgba(40,120,255,.32);
  --white: #ffffff;
  --success: #27d980;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0,0,0,.38);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 15%, rgba(40,120,255,.13), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(40,120,255,.09), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
}

button, input {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .025;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.topbar {
  width: min(1180px, calc(100% - 34px));
  height: 76px;
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 16px auto 0;
  padding: 0 18px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(7,11,18,.78);
  box-shadow: 0 18px 55px rgba(0,0,0,.26);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.6px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: linear-gradient(145deg, #4a95ff, #0e54d8);
  box-shadow: 0 8px 28px rgba(40,120,255,.34), inset 0 1px rgba(255,255,255,.25);
}

.brand-dot {
  color: var(--blue-2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: #aab6c9;
  font-size: 13px;
  font-weight: 700;
  transition: .2s ease;
}

.nav a:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ghost-btn, .cart-btn {
  height: 43px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: .2s ease;
}

.ghost-btn:hover {
  background: rgba(255,255,255,.06);
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: #05070b;
}

.cart-btn:hover {
  transform: translateY(-1px);
}

.cart-btn span {
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #eaf2ff;
  color: #1261dc;
  font-size: 10px;
}

.hero {
  width: min(1180px, calc(100% - 34px));
  min-height: 690px;
  position: relative;
  overflow: hidden;
  margin: 24px auto 0;
  padding: 74px 64px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(130deg, rgba(40,120,255,.12), transparent 38%),
    linear-gradient(180deg, #0b111b 0%, #070b11 100%);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -100px;
  bottom: -160px;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(150px);
  opacity: .14;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 23px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(96,165,250,.2);
  border-radius: 999px;
  background: rgba(40,120,255,.07);
  color: #a9ccff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4d9bff;
  box-shadow: 0 0 0 0 rgba(77,155,255,.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(77,155,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(77,155,255,0); }
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(54px, 6vw, 86px);
  line-height: .94;
  letter-spacing: -5px;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  margin-top: 9px;
  color: #60a5fa;
}

.hero-copy > p {
  max-width: 560px;
  margin-top: 24px;
  color: #9aa8bb;
  font-size: 16px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 31px;
  display: flex;
  gap: 11px;
}

.primary-btn, .secondary-btn {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 900;
  transition: .2s ease;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, #3f8cff, #1763e5);
  box-shadow: 0 14px 35px rgba(40,120,255,.25);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(40,120,255,.34);
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.secondary-btn:hover {
  background: rgba(255,255,255,.065);
}

.hero-stats {
  margin-top: 48px;
  display: flex;
  gap: 34px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-size: 20px;
}

.hero-stats span {
  color: #6f7e93;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-card-wrap {
  position: relative;
  z-index: 2;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(390px, 100%);
  min-height: 360px;
  position: relative;
  z-index: 3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.015)),
    #0c131e;
  box-shadow: 0 35px 80px rgba(0,0,0,.45);
  transform: rotate(2.5deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(96,165,250,.4), transparent 35%, transparent 70%, rgba(40,120,255,.14));
  opacity: .35;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8997aa;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.status {
  padding: 6px 8px;
  border-radius: 7px;
  background: rgba(39,217,128,.12);
  color: #63efa7;
}

.hero-product {
  display: flex;
  align-items: center;
  gap: 18px;
}

.game-badge {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 20px;
  color: white;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.game-badge.fortnite {
  background: linear-gradient(145deg, #3e92ff, #1457c5);
  box-shadow: inset 0 1px rgba(255,255,255,.25), 0 20px 40px rgba(20,87,197,.25);
}

.hero-product .mini {
  margin-bottom: 7px;
  color: #5f9fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.hero-product h3 {
  margin-bottom: 6px;
  font-size: 25px;
  letter-spacing: -1px;
}

.hero-product > div:last-child > p:last-child {
  color: #7f8ea2;
  font-size: 12px;
}

.hero-price {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.hero-price div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-price span {
  color: #6e7c90;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-price strong {
  font-size: 28px;
  letter-spacing: -1px;
}

.mini-buy {
  padding: 11px 14px;
  border: 0;
  border-radius: 11px;
  background: white;
  color: #05070b;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 210px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px;
  background: rgba(13,20,32,.88);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
}

.float-one {
  top: 28px;
  right: -18px;
  transform: rotate(-2deg);
}

.float-two {
  left: -25px;
  bottom: 45px;
  transform: rotate(1deg);
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(40,120,255,.14);
  color: #6fa9ff;
}

.floating-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.floating-card b {
  font-size: 11px;
}

.floating-card small {
  color: #748397;
  font-size: 9px;
}

.ticker {
  width: min(1180px, calc(100% - 34px));
  margin: 14px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #080c13;
}

.ticker-track {
  width: max-content;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: ticker 24s linear infinite;
  color: #78869a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.ticker-track span:first-child {
  margin-left: 24px;
}

.ticker-track i {
  color: #2f7cff;
  font-style: normal;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-35%); }
}

.shop-section,
.why-section,
.reviews-section,
.faq-section {
  width: min(1180px, calc(100% - 34px));
  margin: 105px auto 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.section-kicker {
  color: #4f91f7;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.section-head h2 {
  margin-top: 8px;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -2.1px;
}

.section-head > p {
  max-width: 430px;
  color: #748397;
  font-size: 12px;
  line-height: 1.65;
  text-align: right;
}

.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.tabs {
  padding: 5px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #080c13;
}

.tab {
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #7e8b9e;
  cursor: pointer;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  transition: .2s ease;
}

.tab:hover {
  color: white;
}

.tab.active {
  background: white;
  color: #05070b;
}

.search {
  min-width: 255px;
  height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #080c13;
}

.search span {
  color: #647286;
  font-size: 18px;
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 11px;
}

.search input::placeholder {
  color: #576477;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #0b111b, #080c13);
  transition: .22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91,153,255,.24);
  box-shadow: 0 24px 55px rgba(0,0,0,.24);
}

.product-visual {
  min-height: 190px;
  position: relative;
  overflow: hidden;
  padding: 18px;
  display: flex;
  align-items: end;
  background:
    radial-gradient(circle at 72% 28%, var(--accent-soft), transparent 36%),
    linear-gradient(135deg, #101927, #0a0f17);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 30px 30px;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(5,7,11,.55);
  color: #b8c4d5;
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-symbol {
  position: relative;
  z-index: 1;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -5px;
  color: var(--accent);
  text-shadow: 0 14px 40px var(--accent-soft);
}

.product-content {
  padding: 18px;
}

.product-game {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-content h3 {
  min-height: 44px;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -.45px;
}

.product-meta {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-meta span {
  padding: 6px 7px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,.025);
  color: #77869a;
  font-size: 8px;
  font-weight: 700;
}

.product-bottom {
  margin-top: 20px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-price span {
  color: #647286;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-price strong {
  font-size: 20px;
  letter-spacing: -.5px;
}

.buy-btn {
  padding: 11px 13px;
  border: 0;
  border-radius: 10px;
  background: white;
  color: #05070b;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  transition: .2s ease;
}

.buy-btn:hover {
  background: #dce9ff;
}

.empty-state {
  display: none;
  padding: 60px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  color: #748397;
  text-align: center;
  font-size: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(160deg, #0c121c, #080c12);
}

.feature-number {
  width: 38px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border: 1px solid rgba(96,165,250,.18);
  border-radius: 9px;
  background: rgba(40,120,255,.08);
  color: #63a3ff;
  font-size: 9px;
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 15px;
}

.feature-card p {
  color: #768498;
  font-size: 10px;
  line-height: 1.7;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #090e16;
}

.stars {
  margin-bottom: 16px;
  color: #64a6ff;
  font-size: 11px;
  letter-spacing: 2px;
}

.review-card > p {
  min-height: 68px;
  color: #c6d0df;
  font-size: 12px;
  line-height: 1.6;
}

.reviewer {
  margin-top: 24px;
  padding-top: 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-top: 1px solid var(--line);
}

.reviewer > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #111c2c;
  color: #7eb4ff;
  font-size: 10px;
  font-weight: 900;
}

.reviewer > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.reviewer b {
  font-size: 10px;
}

.reviewer small {
  color: #607084;
  font-size: 8px;
}

.faq-section {
  margin-bottom: 105px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: #5d9fff;
  font-size: 20px;
  font-weight: 400;
  transition: .2s ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 740px;
  padding: 0 4px 22px;
  color: #758397;
  font-size: 11px;
  line-height: 1.7;
}

details code {
  color: #9fc5ff;
}

footer {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #080c13;
}

.footer-brand p {
  margin-top: 10px;
  color: #647286;
  font-size: 10px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a,
.footer-links button {
  border: 0;
  background: transparent;
  color: #7d8b9e;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links button:hover {
  color: white;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #4f5c6d;
  font-size: 9px;
}

.cart-drawer {
  width: min(440px, 100%);
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  padding: 26px;
  display: flex;
  flex-direction: column;
  background: #080c13;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(0,0,0,.64);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  backdrop-filter: blur(3px);
}

.drawer-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin-top: 6px;
  font-size: 24px;
  letter-spacing: -1px;
}

.close-cart, .modal-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.03);
  color: #8b98aa;
  cursor: pointer;
  font-size: 22px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 0;
}

.cart-item {
  padding: 13px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0b111a;
}

.cart-item + .cart-item {
  margin-top: 9px;
}

.cart-item-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(40,120,255,.1);
  color: #68a6ff;
  font-size: 12px;
  font-weight: 900;
}

.cart-item-info h4 {
  margin-bottom: 4px;
  font-size: 11px;
}

.cart-item-info span {
  color: #768498;
  font-size: 9px;
}

.remove-item {
  border: 0;
  background: transparent;
  color: #5f6d80;
  cursor: pointer;
  font-size: 18px;
}

.cart-empty {
  flex: 1;
  display: none;
  place-items: center;
  align-content: center;
  text-align: center;
}

.cart-empty.show {
  display: grid;
}

.empty-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(40,120,255,.1);
  color: #5b9eff;
  font-size: 18px;
  font-weight: 900;
}

.cart-empty h3 {
  margin-bottom: 7px;
  font-size: 15px;
}

.cart-empty p {
  max-width: 250px;
  color: #6c7a8e;
  font-size: 10px;
  line-height: 1.6;
}

.cart-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-footer.hide {
  display: none;
}

.cart-total {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-total span {
  color: #718095;
  font-size: 10px;
  font-weight: 700;
}

.cart-total strong {
  font-size: 23px;
}

.checkout-btn {
  width: 100%;
  height: 49px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #3e8cff, #1765e8);
  color: white;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.cart-footer small {
  margin-top: 10px;
  display: block;
  color: #526073;
  font-size: 8px;
  text-align: center;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.72);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  backdrop-filter: blur(8px);
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: min(520px, 100%);
  position: relative;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(180deg, #0d1420, #080c13);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  transform: translateY(14px) scale(.98);
  transition: .2s ease;
}

.modal-overlay.show .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal h2 {
  margin: 9px 0 10px;
  font-size: 29px;
  letter-spacing: -1.2px;
}

.modal p {
  color: #7b899d;
  font-size: 11px;
  line-height: 1.7;
}

.modal-action {
  width: 100%;
  height: 48px;
  margin-top: 22px;
  border: 0;
  border-radius: 12px;
  background: white;
  color: #05070b;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  min-width: 290px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(12,18,28,.95);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  backdrop-filter: blur(15px);
  transform: translateY(120px);
  opacity: 0;
  transition: .3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(39,217,128,.12);
  color: #4de499;
  font-size: 11px;
}

.toast > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.toast b {
  font-size: 10px;
}

.toast small {
  color: #6d7b8f;
  font-size: 8px;
}

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

  .hero {
    min-height: auto;
    padding: 58px 40px;
    grid-template-columns: 1fr;
  }

  .hero-card-wrap {
    min-height: 390px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .topbar {
    width: calc(100% - 20px);
    top: 10px;
    margin-top: 10px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .ghost-btn {
    display: none;
  }

  .hero,
  .ticker,
  .shop-section,
  .why-section,
  .reviews-section,
  .faq-section,
  footer {
    width: calc(100% - 20px);
  }

  .hero {
    margin-top: 14px;
    padding: 45px 22px 34px;
    border-radius: 23px;
  }

  .hero h1 {
    font-size: 51px;
    letter-spacing: -3.5px;
  }

  .hero-copy > p {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-card-wrap {
    min-height: 350px;
  }

  .hero-card {
    min-height: 310px;
    transform: rotate(0);
  }

  .float-one {
    right: 0;
  }

  .float-two {
    left: 0;
    bottom: 12px;
  }

  .floating-card {
    min-width: 185px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .section-head > p {
    text-align: left;
  }

  .shop-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .search {
    min-width: 0;
  }

  .products-grid,
  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

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

  .copyright {
    grid-column: 1;
  }

  .cart-drawer {
    width: 100%;
  }
}


/* =========================================================
   KACHED refined pass
   Keeps the uploaded storefront design, but removes the
   oversized billboard-style hero.
   ========================================================= */

:root{
  --bg:#060a10;
  --bg-soft:#0a1018;
  --card:#0d1520;
  --card-2:#111c29;
  --line:rgba(190,220,255,.09);
  --line-strong:rgba(190,220,255,.15);
  --text:#f7f9fc;
  --muted:#8d9aae;
  --blue:#78baff;
  --blue-2:#a3d0ff;
  --blue-glow:rgba(120,186,255,.20);
  --radius:18px;
}

body{
  background:
    radial-gradient(circle at 18% 2%, rgba(120,186,255,.08), transparent 25%),
    radial-gradient(circle at 86% 8%, rgba(120,186,255,.05), transparent 23%),
    #060a10;
}

.brand-logo{
  width:38px;
  height:38px;
  border-radius:50%;
  object-fit:cover;
  flex:none;
}

.topbar{
  width:min(1180px,calc(100% - 34px));
  height:70px;
  top:12px;
  margin-top:12px;
  border-radius:16px;
  background:rgba(7,11,18,.86);
  box-shadow:0 12px 38px rgba(0,0,0,.22);
}

.brand{
  font-size:17px;
}

.nav{
  gap:26px;
}

.nav a{
  font-size:11px;
}

.ghost-btn,
.cart-btn{
  height:40px;
  border-radius:10px;
}

/* Compact premium hero */
.hero.hero-refined{
  width:min(1180px,calc(100% - 34px));
  min-height:0;
  margin-top:22px;
  padding:42px 48px;
  grid-template-columns:1.14fr .86fr;
  gap:44px;
  border-radius:20px;
  background:
    linear-gradient(115deg,rgba(120,186,255,.07),transparent 38%),
    linear-gradient(180deg,#0b1119,#080c12);
  box-shadow:0 22px 65px rgba(0,0,0,.28);
}

.hero.hero-refined::after{
  width:300px;
  height:300px;
  right:-110px;
  bottom:-150px;
  background:#78baff;
  filter:blur(130px);
  opacity:.10;
}

.hero.hero-refined .hero-grid{
  opacity:.035;
  background-size:42px 42px;
}

.hero.hero-refined .eyebrow{
  margin-bottom:17px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(120,186,255,.055);
  border-color:rgba(163,208,255,.16);
  color:#acd5ff;
  font-size:9px;
}

.hero.hero-refined h1{
  max-width:570px;
  font-size:clamp(42px,4.7vw,64px);
  line-height:.96;
  letter-spacing:-3.8px;
  font-weight:850;
}

.hero.hero-refined h1 span{
  display:inline;
  margin:0;
  color:#8fc6ff;
}

.hero.hero-refined .hero-copy > p{
  max-width:520px;
  margin-top:18px;
  color:#94a2b5;
  font-size:13px;
  line-height:1.65;
}

.hero.hero-refined .hero-actions{
  margin-top:24px;
  gap:9px;
}

.hero.hero-refined .primary-btn,
.hero.hero-refined .secondary-btn{
  min-height:44px;
  padding:0 16px;
  border-radius:10px;
  font-size:10px;
}

.hero.hero-refined .primary-btn{
  color:#06101b;
  background:#85c1ff;
  box-shadow:0 10px 26px rgba(120,186,255,.15);
}

.hero.hero-refined .primary-btn:hover{
  background:#9bcfff;
  box-shadow:0 14px 34px rgba(120,186,255,.20);
}

.hero.hero-refined .hero-stats{
  margin-top:29px;
  gap:25px;
}

.hero.hero-refined .hero-stats strong{
  font-size:14px;
}

.hero.hero-refined .hero-stats span{
  font-size:8px;
}

.hero.hero-refined .hero-card-wrap{
  min-height:320px;
  align-content:center;
  gap:10px;
}

.hero-card.hero-card-refined{
  width:min(350px,100%);
  min-height:250px;
  padding:17px;
  border-radius:16px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.01)),
    #0c141e;
  box-shadow:0 22px 52px rgba(0,0,0,.32);
  transform:none;
}

.hero-card.hero-card-refined::before{
  border-radius:inherit;
  background:linear-gradient(140deg,rgba(140,198,255,.22),transparent 38%,transparent 75%);
  opacity:.28;
}

.hero-card.hero-card-refined .game-badge{
  width:64px;
  height:64px;
  border-radius:14px;
  font-size:19px;
  background:linear-gradient(145deg,#73b7ff,#347fd1);
  box-shadow:none;
}

.hero-card.hero-card-refined .hero-product{
  gap:14px;
}

.hero-card.hero-card-refined .hero-product h3{
  font-size:19px;
}

.hero-card.hero-card-refined .hero-product > div:last-child > p:last-child{
  font-size:10px;
}

.hero-card.hero-card-refined .hero-price strong{
  font-size:22px;
}

.hero-card.hero-card-refined .mini-buy{
  padding:10px 12px;
  border-radius:9px;
  background:#edf6ff;
}

.hero-mini-proof{
  width:min(350px,100%);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.hero-mini-proof > div{
  padding:12px 13px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#0a1018;
}

.hero-mini-proof b{
  display:block;
  font-size:9px;
}

.hero-mini-proof span{
  display:block;
  margin-top:3px;
  color:#68788e;
  font-size:8px;
}

/* Retire the floating UI around the old hero */
.hero-refined .floating-card{
  display:none !important;
}

.ticker{
  margin-top:10px;
  border-radius:12px;
}

.ticker-track{
  padding:11px 0;
}

/* Bring the actual store up sooner */
.shop-section,
.why-section,
.reviews-section,
.faq-section{
  margin-top:78px;
}

.section-head{
  margin-bottom:24px;
}

.section-head h2{
  font-size:clamp(30px,4vw,42px);
}

.products-grid{
  gap:12px;
}

.product-card{
  border-radius:16px;
  background:linear-gradient(180deg,#0c131d,#080d14);
}

.product-visual{
  min-height:175px;
}

.product-content{
  padding:16px;
}

.product-content h3{
  font-size:15px;
}

.buy-btn{
  border-radius:9px;
  background:#eef6ff;
}

.feature-card,
.review-card{
  border-radius:16px;
}

footer{
  border-radius:17px;
}

/* Mobile */
@media(max-width:900px){
  .hero.hero-refined{
    grid-template-columns:1fr;
    padding:36px 34px;
  }

  .hero.hero-refined .hero-card-wrap{
    min-height:0;
  }

  .hero-card.hero-card-refined,
  .hero-mini-proof{
    width:100%;
    max-width:520px;
  }
}

@media(max-width:620px){
  .hero.hero-refined{
    padding:28px 20px;
    border-radius:16px;
  }

  .hero.hero-refined h1{
    font-size:42px;
    letter-spacing:-2.8px;
  }

  .hero.hero-refined .hero-actions{
    flex-direction:column;
  }

  .hero.hero-refined .primary-btn,
  .hero.hero-refined .secondary-btn{
    width:100%;
  }

  .hero.hero-refined .hero-stats{
    gap:16px;
  }

  .hero-mini-proof{
    grid-template-columns:1fr;
  }
}
.game-card-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.game-art-card{position:relative;aspect-ratio:2.56/1;overflow:hidden;border:1px solid rgba(255,255,255,.09);border-radius:18px;background:#080c13;box-shadow:0 18px 50px #0004;transition:.22s}.game-art-card:hover{transform:translateY(-4px);border-color:#8fc6ff47}.game-art-card img{width:100%;height:100%;object-fit:cover;transition:.35s}.game-art-card:hover img{transform:scale(1.025)}.game-card-overlay{position:absolute;inset:auto 0 0;padding:38px 18px 16px;display:flex;align-items:flex-end;justify-content:space-between;background:linear-gradient(transparent,#03060aeb)}.game-card-overlay span{display:block;color:#92c8ff;font-size:8px;font-weight:900;letter-spacing:.14em}.game-card-overlay strong{font-size:12px}.game-card-overlay i{width:34px;height:34px;display:grid;place-items:center;border-radius:10px;background:#fff;color:#07101a;font-style:normal}.discord-proof{margin-top:14px;padding:16px 18px;border:1px solid #8fc6ff24;border-radius:14px;background:#78baff0b;display:flex;align-items:center;justify-content:space-between}.discord-proof b{font-size:11px}.discord-proof span{display:block;margin-top:3px;color:#75869b;font-size:8px}.discord-proof a{padding:10px 13px;border-radius:9px;background:#86c2ff;color:#07101a;font-size:8px;font-weight:900}.category-page{width:min(1180px,calc(100% - 34px));margin:28px auto 100px}.category-hero{position:relative;overflow:hidden;min-height:300px;border:1px solid var(--line);border-radius:20px}.category-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.category-hero:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,#03060ae8,#03060a73,#03060a26)}.category-hero-copy{position:relative;z-index:2;padding:48px;max-width:620px}.category-hero-copy h1{font-size:clamp(36px,5vw,58px);letter-spacing:-3px;margin:8px 0}.category-hero-copy p{color:#a3afbd;font-size:11px}.category-products{margin-top:50px}@media(max-width:760px){.game-card-grid{grid-template-columns:1fr}.discord-proof{flex-direction:column;align-items:flex-start;gap:12px}}
/* KACHED navigation + brand-blue correction */
:root{
  --blue:#1677ff;
  --blue-2:#43a2ff;
  --blue-glow:rgba(22,119,255,.25);
}

.topbar{
  min-height:70px;
  height:auto;
  padding:10px 14px;
}

.top-actions{
  display:flex;
  align-items:center;
  gap:9px;
  flex-wrap:nowrap;
}

.top-actions .ghost-btn,
.top-actions .cart-btn{
  width:auto !important;
  min-width:92px;
  height:40px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  white-space:nowrap;
  font-size:10px;
  line-height:1;
}

.top-actions .ghost-btn{
  position:relative;
  overflow:hidden;
  color:#fff;
  border:1px solid rgba(67,162,255,.55);
  background:linear-gradient(135deg,#1677ff,#3296ff);
  box-shadow:0 8px 24px rgba(22,119,255,.22);
}

.top-actions .ghost-btn:hover{
  border-color:#64b3ff;
  background:linear-gradient(135deg,#2584ff,#48a7ff);
  box-shadow:0 10px 30px rgba(22,119,255,.32);
}

.top-actions .cart-btn{
  color:#eaf4ff;
  border:1px solid rgba(255,255,255,.11);
  background:#0d1622;
}

.primary-btn,
.discord-proof a{
  background:linear-gradient(135deg,#1677ff,#43a2ff) !important;
  color:#fff !important;
}

.game-card-overlay span,
.section-kicker,
.brand-dot{
  color:#43a2ff !important;
}

.game-art-card:hover{
  border-color:rgba(67,162,255,.55) !important;
  box-shadow:0 22px 60px rgba(0,0,0,.35),0 0 0 1px rgba(22,119,255,.08);
}

.discord-proof{
  border-color:rgba(67,162,255,.24);
  background:linear-gradient(110deg,rgba(22,119,255,.11),rgba(67,162,255,.025));
}

@media(max-width:760px){
  .top-actions{gap:6px}
  .top-actions .ghost-btn,.top-actions .cart-btn{
    min-width:auto;
    padding:0 11px;
    height:38px;
  }
}


/* ===== KACHED SUPPORT + ADMIN ===== */
.discord-nav-btn,.support-nav-btn{
  min-height:40px;padding:0 14px;display:inline-flex;align-items:center;justify-content:center;
  border-radius:10px;font-size:10px;font-weight:900;white-space:nowrap
}
.discord-nav-btn{
  color:#fff;background:linear-gradient(135deg,#1677ff,#43a2ff);
  border:1px solid rgba(89,174,255,.55);box-shadow:0 9px 28px rgba(22,119,255,.22)
}
.support-nav-btn{border:1px solid var(--line);background:rgba(255,255,255,.035)}
.support-promo{
  width:min(1180px,calc(100% - 34px));margin:78px auto 0;padding:28px 30px;
  display:flex;align-items:center;justify-content:space-between;gap:28px;
  border:1px solid rgba(67,162,255,.18);border-radius:18px;
  background:linear-gradient(110deg,rgba(22,119,255,.10),#090e16 48%,#080c13)
}
.support-promo h2{margin-top:8px;font-size:28px;letter-spacing:-1.2px}
.support-promo p{max-width:620px;margin-top:8px;color:#7c8ba0;font-size:11px;line-height:1.65}
.support-promo-actions{display:flex;gap:8px;flex-shrink:0}

.support-shell{width:min(1040px,calc(100% - 34px));margin:34px auto 100px}
.support-hero{padding:34px 0 25px}
.support-hero h1{font-size:clamp(38px,6vw,64px);letter-spacing:-3px;line-height:.96}
.support-hero p{max-width:650px;margin-top:12px;color:#8593a7;font-size:12px;line-height:1.7}
.support-grid{display:grid;grid-template-columns:1fr .82fr;gap:14px}
.support-card{padding:24px;border:1px solid var(--line);border-radius:18px;background:#090e16}
.support-card h2{margin-top:7px;font-size:23px;letter-spacing:-.8px}
.support-card>p{margin-top:7px;color:#748399;font-size:10px;line-height:1.65}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:20px}
.field{display:flex;flex-direction:column;gap:7px}.field.full{grid-column:1/-1}
.field label{color:#8c9bb0;font-size:9px;font-weight:800}
.field input,.field select,.field textarea{
  width:100%;border:1px solid rgba(255,255,255,.10);border-radius:11px;outline:0;
  background:#070b11;color:#f5f8fc;padding:0 12px;font-size:11px
}
.field input,.field select{height:44px}.field textarea{min-height:132px;padding-top:12px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:rgba(67,162,255,.55);box-shadow:0 0 0 3px rgba(22,119,255,.08)}
.turnstile-box{margin-top:14px;min-height:65px}
.form-action{margin-top:14px;width:100%;height:46px;border:0;border-radius:11px;cursor:pointer;
  background:linear-gradient(135deg,#1677ff,#43a2ff);color:#fff;font-size:10px;font-weight:900}
.form-action:disabled{opacity:.55;cursor:not-allowed}
.form-status{min-height:18px;margin-top:10px;font-size:9px;text-align:center;color:#8c9bb0}
.form-status.error{color:#ff8585}.form-status.success{color:#69dda8}
.lookup-result{display:none;margin-top:16px}.lookup-result.show{display:block}
.ticket-summary{padding:15px;border:1px solid var(--line);border-radius:13px;background:#070b11}
.ticket-summary-head{display:flex;align-items:center;justify-content:space-between;gap:15px}
.ticket-ref{font-size:13px;font-weight:900}.status-chip,.priority-chip{padding:6px 8px;border-radius:999px;font-size:7px;font-weight:900;text-transform:uppercase}
.status-chip{background:rgba(67,162,255,.12);color:#83bcff}.priority-chip{background:rgba(255,255,255,.055);color:#a7b3c4}
.messages{margin-top:12px;display:flex;flex-direction:column;gap:8px}
.message{max-width:88%;padding:11px 12px;border-radius:12px;background:#101722;border:1px solid var(--line)}
.message.admin{margin-left:auto;background:#0e2137;border-color:rgba(67,162,255,.20)}
.message small{display:block;margin-top:5px;color:#5f6f84;font-size:7px}
.discord-card{margin-top:14px;padding:17px;border-radius:14px;border:1px solid rgba(67,162,255,.18);background:rgba(22,119,255,.055)}
.discord-card strong{font-size:12px}.discord-card p{margin-top:5px;color:#718197;font-size:9px}
.discord-card a{margin-top:12px;height:40px;padding:0 13px;display:inline-flex;align-items:center;border-radius:9px;background:#1677ff;color:#fff;font-size:9px;font-weight:900}

.admin-body{min-height:100vh;background:#06090e}
.admin-login-shell{min-height:100vh;display:grid;place-items:center;padding:20px}
.admin-login-card{width:min(410px,100%);padding:25px;border:1px solid var(--line);border-radius:18px;background:#090e16;box-shadow:0 30px 80px rgba(0,0,0,.4)}
.admin-brand{display:flex;align-items:center;gap:10px;font-size:15px;font-weight:900}
.admin-brand img{width:38px;height:38px;border-radius:50%}
.admin-login-card h1{margin-top:22px;font-size:25px;letter-spacing:-1px}
.admin-login-card p{margin-top:7px;color:#77879c;font-size:10px;line-height:1.6}

.admin-layout{min-height:100vh;display:grid;grid-template-columns:240px 1fr}
.admin-sidebar{padding:20px 16px;border-right:1px solid #18212c;background:#080c12}
.admin-logo{display:flex;align-items:center;gap:10px;font-weight:900}.admin-logo img{width:36px;height:36px;border-radius:50%}
.admin-side-label{margin:26px 8px 8px;color:#4f6075;font-size:7px;font-weight:900;letter-spacing:.13em}
.admin-nav-button{width:100%;padding:10px 11px;display:flex;align-items:center;justify-content:space-between;border:0;border-radius:9px;background:transparent;color:#8b99ac;cursor:pointer;font-size:9px;font-weight:800}
.admin-nav-button.active,.admin-nav-button:hover{background:#0f1722;color:#fff}
.admin-count{min-width:23px;height:20px;padding:0 5px;display:grid;place-items:center;border-radius:999px;background:#13243a;color:#81baff;font-size:7px}
.admin-logout{margin-top:28px;color:#ff9d9d}
.admin-main{padding:26px;overflow:hidden}
.admin-top{display:flex;align-items:center;justify-content:space-between;gap:18px}
.admin-top h1{font-size:28px;letter-spacing:-1.2px}.admin-top p{margin-top:4px;color:#68788d;font-size:9px}
.admin-tools{display:flex;gap:8px}
.admin-tools input,.admin-tools select{height:39px;padding:0 11px;border:1px solid var(--line);border-radius:9px;background:#080c12;color:#dfe6ee;font-size:9px;outline:0}
.admin-stats{margin-top:20px;display:grid;grid-template-columns:repeat(4,1fr);gap:9px}
.admin-stat{padding:16px;border:1px solid var(--line);border-radius:13px;background:#090e16}
.admin-stat span{color:#68778b;font-size:8px}.admin-stat strong{display:block;margin-top:5px;font-size:22px}
.admin-workspace{margin-top:12px;display:grid;grid-template-columns:minmax(300px,.82fr) minmax(400px,1.18fr);gap:10px;height:calc(100vh - 190px)}
.ticket-list,.ticket-detail{overflow:auto;border:1px solid var(--line);border-radius:14px;background:#080c12}
.ticket-list{padding:7px}.ticket-list-empty{padding:40px 15px;color:#617086;font-size:10px;text-align:center}
.ticket-row{padding:13px;border-radius:10px;cursor:pointer;border:1px solid transparent}
.ticket-row+.ticket-row{margin-top:4px}.ticket-row:hover,.ticket-row.active{background:#0e1621;border-color:#1c2b3d}
.ticket-row-top{display:flex;align-items:center;justify-content:space-between;gap:10px}
.ticket-row strong{font-size:10px}.ticket-row p{margin-top:5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#77869a;font-size:9px}
.ticket-row-meta{margin-top:8px;display:flex;gap:7px;color:#536378;font-size:7px}
.ticket-detail{padding:20px}.ticket-detail-empty{height:100%;display:grid;place-items:center;color:#55657a;font-size:10px}
.detail-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}
.detail-head h2{font-size:19px;letter-spacing:-.6px}.detail-head p{margin-top:5px;color:#65758a;font-size:8px}
.detail-controls{display:flex;gap:6px;flex-wrap:wrap;margin-top:14px}
.detail-controls select{height:36px;padding:0 9px;border:1px solid var(--line);border-radius:8px;background:#070b11;color:#dbe3eb;font-size:8px}
.detail-messages{margin-top:18px;padding-top:16px;border-top:1px solid var(--line)}
.admin-reply{margin-top:15px}.admin-reply textarea{width:100%;min-height:100px;padding:11px;border:1px solid var(--line);border-radius:10px;background:#070b11;color:#fff;outline:0;resize:vertical;font-size:10px}
.admin-reply button{margin-top:8px;height:39px;padding:0 13px;border:0;border-radius:8px;background:#1677ff;color:#fff;cursor:pointer;font-size:9px;font-weight:900}

@media(max-width:900px){
  .support-grid{grid-template-columns:1fr}.support-promo{align-items:flex-start;flex-direction:column}
  .admin-layout{grid-template-columns:1fr}.admin-sidebar{display:none}.admin-workspace{grid-template-columns:1fr;height:auto}.ticket-list{max-height:420px}.ticket-detail{min-height:500px}
}
@media(max-width:620px){.form-grid{grid-template-columns:1fr}.field.full{grid-column:auto}.admin-main{padding:16px}.admin-stats{grid-template-columns:1fr 1fr}.admin-tools{width:100%;flex-direction:column}.admin-top{align-items:flex-start;flex-direction:column}}

/* floating support pill */
.floating-support-pill{
  position:fixed;right:20px;bottom:20px;z-index:150;
  min-height:48px;padding:0 16px 0 12px;display:inline-flex;align-items:center;gap:10px;
  border:1px solid rgba(67,162,255,.45);border-radius:999px;
  background:linear-gradient(135deg,#1677ff,#43a2ff);color:#fff;
  box-shadow:0 18px 44px rgba(22,119,255,.30),0 10px 28px rgba(0,0,0,.30);
  font-size:10px;font-weight:900;transition:.18s ease
}
.floating-support-pill:hover{transform:translateY(-3px);filter:brightness(1.06);box-shadow:0 22px 50px rgba(22,119,255,.38)}
.floating-support-pill .support-dot{width:10px;height:10px;border-radius:50%;background:#fff;box-shadow:0 0 0 0 rgba(255,255,255,.45);animation:supportPulse 2s infinite}
.floating-support-pill small{display:block;margin-top:2px;color:rgba(255,255,255,.74);font-size:7px;font-weight:700}
@keyframes supportPulse{70%{box-shadow:0 0 0 8px rgba(255,255,255,0)}100%{box-shadow:0 0 0 0 rgba(255,255,255,0)}}
@media(max-width:620px){.floating-support-pill{right:14px;bottom:14px;min-height:45px;padding:0 14px 0 11px}}

/* ===== LIVE TICKET CHAT ===== */
.ticket-chat-body{min-height:100vh;background:#060a10}
.livechat-shell{width:min(940px,calc(100% - 34px));margin:34px auto 90px}
.livechat-top{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;padding:28px 2px 22px}
.livechat-top h1{margin-top:7px;font-size:clamp(34px,5vw,52px);letter-spacing:-2.4px}
.livechat-top p{margin-top:7px;color:#728197;font-size:10px}
.chat-state{height:38px;padding:0 13px;display:flex;align-items:center;gap:8px;border:1px solid rgba(67,162,255,.19);border-radius:999px;background:#0a121c;color:#9bcaff;font-size:8px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.live-dot{width:8px;height:8px;border-radius:50%;background:#5fdda3;box-shadow:0 0 0 5px rgba(95,221,163,.07)}
.livechat-card{overflow:hidden;border:1px solid rgba(255,255,255,.09);border-radius:20px;background:#090e16;box-shadow:0 28px 80px rgba(0,0,0,.30)}
.livechat-head{min-height:67px;padding:0 20px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(255,255,255,.07);background:#0b111a}
.livechat-head>div{display:flex;flex-direction:column;gap:4px}
.livechat-head strong{font-size:11px}.livechat-head div span{color:#68788d;font-size:8px}
.livechat-messages{height:min(55vh,540px);min-height:350px;padding:21px;overflow:auto;scroll-behavior:smooth;background:radial-gradient(circle at 70% 0,rgba(22,119,255,.035),transparent 32%),#070b11}
.chat-loading,.chat-error{height:100%;display:grid;place-items:center;color:#67778b;font-size:10px}.chat-error{color:#ff9292}
.chat-message{display:flex;align-items:flex-end;gap:9px;margin:12px 0}
.chat-message.customer{flex-direction:row-reverse}
.chat-avatar{width:30px;height:30px;display:grid;place-items:center;flex:none;border-radius:9px;background:#101925;border:1px solid rgba(255,255,255,.07);color:#8bbfff;font-size:7px;font-weight:900}
.chat-message.customer .chat-avatar{background:#14243a;color:#a9d1ff}
.chat-bubble{max-width:min(72%,610px);padding:11px 13px;border-radius:14px 14px 14px 4px;border:1px solid rgba(255,255,255,.07);background:#0f1620}
.chat-message.customer .chat-bubble{border-radius:14px 14px 4px 14px;border-color:rgba(67,162,255,.17);background:linear-gradient(135deg,#10243d,#0d1a2a)}
.chat-author{margin-bottom:5px;color:#91c4ff;font-size:7px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.chat-text{color:#dbe3ec;font-size:10px;line-height:1.6;overflow-wrap:anywhere}
.chat-bubble time{display:block;margin-top:6px;color:#506076;font-size:7px}
.livechat-compose{padding:14px 15px 15px;border-top:1px solid rgba(255,255,255,.07);background:#0b1119}
.livechat-compose textarea{width:100%;min-height:86px;max-height:180px;padding:12px 13px;border:1px solid rgba(255,255,255,.09);border-radius:12px;outline:0;resize:vertical;background:#070b11;color:#fff;font-size:10px;line-height:1.55}
.livechat-compose textarea:focus{border-color:rgba(67,162,255,.48);box-shadow:0 0 0 3px rgba(22,119,255,.07)}
.compose-foot{margin-top:9px;display:flex;align-items:center;justify-content:space-between;gap:15px}
.compose-foot span{color:#53647a;font-size:8px}
.compose-foot button{height:39px;padding:0 15px;border:0;border-radius:10px;background:linear-gradient(135deg,#1677ff,#43a2ff);color:#fff;cursor:pointer;font-size:9px;font-weight:900}
.compose-foot button:disabled{opacity:.55;cursor:not-allowed}
.livechat-discord{margin-top:11px;padding:15px 17px;display:flex;align-items:center;justify-content:space-between;gap:15px;border:1px solid rgba(67,162,255,.14);border-radius:14px;background:rgba(22,119,255,.045)}
.livechat-discord strong{font-size:10px}.livechat-discord span{display:block;margin-top:3px;color:#66778c;font-size:8px}
.livechat-discord a{padding:10px 12px;border-radius:9px;background:#1677ff;color:#fff;font-size:8px;font-weight:900}
@media(max-width:620px){.livechat-top{align-items:flex-start;flex-direction:column}.livechat-messages{height:52vh;padding:14px}.chat-bubble{max-width:84%}.livechat-discord{align-items:flex-start;flex-direction:column}}

/* KACHED messenger refinement */
.livechat-card{
  border-color:rgba(75,158,255,.16);
  background:#080d14;
  box-shadow:0 30px 90px rgba(0,0,0,.36),0 0 0 1px rgba(22,119,255,.025);
}
.livechat-head{
  background:linear-gradient(180deg,#0d1520,#0a1018);
}
.livechat-messages{
  background:
    radial-gradient(circle at 85% 0,rgba(22,119,255,.055),transparent 28%),
    radial-gradient(circle at 10% 80%,rgba(67,162,255,.025),transparent 25%),
    #070b11;
}
.chat-message{
  animation:chatIn .18s ease both;
}
@keyframes chatIn{
  from{opacity:0;transform:translateY(4px)}
  to{opacity:1;transform:none}
}
.chat-message.support .chat-bubble{
  background:#101722;
  border-color:rgba(255,255,255,.075);
}
.chat-message.customer .chat-bubble{
  background:linear-gradient(135deg,#12305a,#0d2545);
  border-color:rgba(67,162,255,.28);
}
.chat-message.sending{opacity:.62}
.chat-message.failed{opacity:1}
.chat-message.failed .chat-bubble{border-color:rgba(255,100,100,.35)}
.livechat-compose{
  background:#0a1018;
}
.livechat-compose textarea{
  min-height:74px;
  background:#060a10;
}
.compose-foot button{
  min-width:110px;
  background:linear-gradient(135deg,#1677ff,#43a2ff);
  box-shadow:0 8px 24px rgba(22,119,255,.16);
}
.livechat-discord{
  background:linear-gradient(105deg,rgba(22,119,255,.07),rgba(67,162,255,.02));
}

/* Ticket lookup -> live chat */
.lookup-livechat-btn{
  margin-top:12px;
  min-height:54px;
  padding:0 14px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(67,162,255,.28);
  border-radius:12px;
  background:linear-gradient(110deg,rgba(22,119,255,.16),rgba(67,162,255,.07));
  color:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  transition:transform .16s ease,border-color .16s ease,background .16s ease;
}
.lookup-livechat-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(67,162,255,.5);
  background:linear-gradient(110deg,rgba(22,119,255,.24),rgba(67,162,255,.10));
}
.lookup-live-dot{
  width:10px;height:10px;flex:none;border-radius:50%;
  background:#66dda5;
  box-shadow:0 0 0 5px rgba(102,221,165,.08);
}
.lookup-livechat-btn span:nth-child(2){display:flex;flex-direction:column;gap:3px}
.lookup-livechat-btn b{font-size:10px}
.lookup-livechat-btn small{color:#7790ab;font-size:8px}
.lookup-livechat-btn i{margin-left:auto;font-style:normal;font-size:15px;font-weight:900;color:#8dc4ff}

/* =========================================================
   KACHED HUMANIZED PASS
   Remove template-like UI clutter and let the real artwork lead.
   ========================================================= */

.hero.hero-refined{
  padding:46px 50px;
  grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr);
  gap:42px;
  align-items:center;
  background:
    radial-gradient(circle at 86% 10%,rgba(22,119,255,.055),transparent 28%),
    linear-gradient(180deg,#0a1018,#070b11);
}

.hero.hero-refined .hero-copy{
  padding:0;
  justify-content:center;
}

.hero.hero-refined h1{
  max-width:590px;
  margin-top:0;
  font-size:clamp(48px,5.2vw,72px);
  line-height:.94;
  letter-spacing:-4.6px;
}

.hero.hero-refined h1 span{
  color:#66adff;
}

.hero.hero-refined .hero-copy>p{
  max-width:560px;
  font-size:13px;
  line-height:1.7;
  color:#91a0b2;
}

.hero-community{
  margin-top:25px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#dce8f6;
}

.community-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#4b9eff;
  box-shadow:0 0 0 5px rgba(75,158,255,.08);
}

.hero-community strong{
  display:block;
  font-size:10px;
}

.hero-community small{
  display:block;
  margin-top:2px;
  color:#65768b;
  font-size:8px;
}

.hero-banner-wrap{
  position:relative;
  overflow:hidden;
  width:100%;
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  background:#05070b;
  box-shadow:0 20px 55px rgba(0,0,0,.28);
}

.hero-brand-banner{
  width:100%;
  height:auto;
  aspect-ratio:2048/765;
  display:block;
  object-fit:cover;
}

.hero-banner-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(90,165,255,.025);
}

/* Kill leftover template hero/card styles in this version. */
.hero-refined .hero-card-wrap,
.hero-refined .hero-mini-proof,
.hero-refined .eyebrow{
  display:none!important;
}

/* Cleaner buttons: less pill-everything, fewer artificial gradients. */
.hero-refined .primary-btn{
  background:#2688f8;
  color:#fff;
  box-shadow:none;
}

.hero-refined .primary-btn:hover{
  background:#3694ff;
  box-shadow:none;
}

.hero-refined .secondary-btn{
  background:#0b1119;
  border-color:#263447;
}

/* Real FAQ presentation */
.faq-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.faq-item{
  border:1px solid rgba(255,255,255,.08);
  border-radius:13px;
  background:#0a1017;
  overflow:hidden;
}

.faq-item summary{
  position:relative;
  padding:16px 42px 16px 16px;
  cursor:pointer;
  list-style:none;
  color:#e7edf4;
  font-size:10px;
  font-weight:800;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  color:#6caeff;
  font-size:17px;
  font-weight:500;
}

.faq-item[open] summary::after{
  content:"–";
}

.faq-item p{
  padding:0 16px 16px;
  color:#8190a2;
  font-size:9px;
  line-height:1.7;
}

/* Tone down generic card glow and excessive floating. */
.game-art-card,
.product-card,
.feature-card,
.review-card,
.support-promo,
.faq-item{
  box-shadow:none;
}

.game-art-card:hover,
.product-card:hover{
  transform:translateY(-2px);
}

/* Less fake stats / micro-box clutter */
.ticker{
  opacity:.9;
}

.support-promo{
  background:#0a1018;
}

/* Chat compose now speaks for itself; no automated hint line. */
#chatHint:empty{
  display:none;
}

.compose-foot{
  justify-content:flex-end;
}

/* More measured typography throughout */
.section-head h2{
  letter-spacing:-1.5px;
}

.section-kicker{
  letter-spacing:.11em;
}

@media(max-width:920px){
  .hero.hero-refined{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .hero.hero-refined{
    padding:28px 22px;
  }
  .faq-list{
    grid-template-columns:1fr;
  }
}

.product-visual img{width:100%;height:100%;object-fit:cover}.product-card h3{font-size:14px;letter-spacing:-.3px}.product-card p{text-transform:none}
.checkout-shell,.policy-shell{width:min(1120px,calc(100% - 34px));margin:44px auto 90px}.back-link{display:inline-block;margin-bottom:22px;color:#7f91a8;font-size:9px}.checkout-grid{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(280px,.7fr);gap:16px}.checkout-main,.checkout-side{border:1px solid rgba(255,255,255,.08);border-radius:16px;background:#090e15;padding:24px}.checkout-main h1,.policy-shell h1{font-size:clamp(36px,5vw,56px);letter-spacing:-3px;margin:8px 0 24px}.checkout-product{display:grid;grid-template-columns:84px 1fr auto;align-items:center;gap:15px;padding:14px;border:1px solid rgba(255,255,255,.07);border-radius:13px;background:#070b11;margin-bottom:22px}.checkout-product img{width:84px;height:58px;object-fit:cover;border-radius:8px}.checkout-product small{color:#5e9ff2;font-size:8px;font-weight:900}.checkout-product h2{font-size:14px;margin:4px 0}.checkout-product p,.checkout-side p,.field-note{color:#718197;font-size:8px;line-height:1.6}.checkout-product>strong{font-size:18px}.checkout-main>label:not(.legal-check){display:grid;gap:7px;font-size:9px;font-weight:800}.checkout-main input[type=email]{height:45px;border:1px solid rgba(255,255,255,.1);border-radius:10px;background:#060a10;color:#fff;padding:0 13px;outline:0}.legal-check{display:flex;align-items:flex-start;gap:9px;margin-top:14px;color:#8595a9;font-size:8px;line-height:1.55}.legal-check a,.policy-shell a{color:#6faeff}.checkout-pay{width:100%;height:48px;margin-top:20px;border:0;border-radius:10px;background:#2688f8;color:#fff;font-weight:900;cursor:pointer}.checkout-msg{min-height:20px;margin-top:10px;color:#8fbfff;font-size:8px}.summary-row{display:flex;justify-content:space-between;gap:15px;padding:13px 0;border-bottom:1px solid rgba(255,255,255,.06);font-size:9px}.summary-row span{color:#74849a}.summary-row.total{font-size:12px;border-bottom:0}.policy-shell{max-width:850px}.policy-shell h2{font-size:16px;margin:28px 0 8px}.policy-shell p{color:#8795a7;font-size:10px;line-height:1.8}.policy-updated{margin-top:-15px}.legal-warning{padding:14px 15px;border:1px solid rgba(255,193,91,.22);border-radius:11px;background:rgba(255,193,91,.05);color:#c6a76d;font-size:9px;line-height:1.6}.legal-footer{width:min(1180px,calc(100% - 34px));margin:30px auto 22px;padding:20px 0;border-top:1px solid rgba(255,255,255,.07);display:flex;align-items:center;justify-content:space-between;gap:20px}.legal-footer>div{display:flex;flex-direction:column;gap:3px}.legal-footer b{font-size:10px}.legal-footer span{color:#5f6e82;font-size:8px}.legal-footer nav{display:flex;gap:14px;flex-wrap:wrap}.legal-footer a{color:#718197;font-size:8px}.legal-footer a:hover{color:#fff}@media(max-width:760px){.checkout-grid{grid-template-columns:1fr}.checkout-product{grid-template-columns:64px 1fr}.checkout-product img{width:64px}.checkout-product>strong{grid-column:2}.legal-footer{align-items:flex-start;flex-direction:column}}

/* polished footer */
.site-footer{
  width:min(1180px,calc(100% - 34px));
  margin:64px auto 24px;
  padding:28px 0 0;
  display:block;
  grid-template-columns:none;
  gap:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.footer-main{display:grid;grid-template-columns:1fr 1.6fr;gap:60px;padding-bottom:28px}
.footer-brand{display:flex;align-items:center;gap:11px;width:max-content}.footer-brand img{width:34px;height:34px;object-fit:contain}.footer-brand span{display:flex;flex-direction:column;gap:3px}.footer-brand b{font-size:12px;letter-spacing:-.2px}.footer-brand small{color:#647489;font-size:8px}
.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:34px}.footer-links>div{display:flex;flex-direction:column;align-items:flex-start;gap:9px}.footer-links strong{margin-bottom:3px;color:#dce5ef;font-size:9px}.footer-links a{color:#65758a;font-size:8px;transition:.15s}.footer-links a:hover{color:#a9cbf5}
.footer-bottom{padding:16px 0 2px;border-top:1px solid rgba(255,255,255,.055);display:flex;justify-content:space-between;gap:15px;color:#4f5e71;font-size:7px}

/* cookie preferences */
.cookie-consent{position:fixed;left:20px;right:20px;bottom:20px;z-index:1000;margin:auto;width:min(760px,calc(100% - 40px));padding:15px 16px;display:flex;align-items:center;justify-content:space-between;gap:22px;border:1px solid rgba(255,255,255,.11);border-radius:14px;background:rgba(9,14,21,.97);box-shadow:0 22px 70px rgba(0,0,0,.48);backdrop-filter:blur(16px);opacity:0;visibility:hidden;transform:translateY(12px);transition:.2s ease}.cookie-consent.show{opacity:1;visibility:visible;transform:none}
.cookie-copy strong{font-size:10px}.cookie-copy p{max-width:490px;margin:4px 0;color:#8291a4;font-size:8px;line-height:1.55}.cookie-copy a{color:#72aff8;font-size:8px}.cookie-actions{display:flex;gap:7px;flex:none}.cookie-actions button{height:36px;padding:0 12px;border-radius:8px;cursor:pointer;font-size:8px;font-weight:850}.cookie-secondary{border:1px solid rgba(255,255,255,.11);background:#0d141e;color:#c2ccd8}.cookie-primary{border:1px solid #2688f8;background:#2688f8;color:#fff}

/* checkout security */
.checkout-security{margin-top:18px;padding:13px;border:1px solid rgba(255,255,255,.07);border-radius:11px;background:#070b11}.checkout-pay:disabled{opacity:.48;cursor:not-allowed}

@media(max-width:760px){.footer-main{grid-template-columns:1fr;gap:28px}.footer-links{gap:20px}.cookie-consent{align-items:stretch;flex-direction:column}.cookie-actions{justify-content:flex-end}}
@media(max-width:520px){.footer-links{grid-template-columns:1fr 1fr}.footer-bottom{flex-direction:column}.cookie-actions button{flex:1}}

.account-nav-link,.account-nav-create{height:40px;padding:0 13px;display:inline-flex;align-items:center;border-radius:9px;font-size:9px;font-weight:850}.account-nav-link{color:#cbd6e2}.account-nav-create{background:#eef6ff;color:#07101a}
.auth-shell{width:min(460px,calc(100% - 34px));margin:70px auto}.auth-card{padding:28px;border:1px solid rgba(255,255,255,.09);border-radius:18px;background:#090e15}.auth-card h1{margin:8px 0;font-size:34px;letter-spacing:-1.8px}.auth-card>p{color:#74849a;font-size:9px;line-height:1.6}.auth-card form{display:grid;gap:13px;margin-top:22px}.auth-card label{display:grid;gap:7px;color:#8b9aaf;font-size:9px;font-weight:800}.auth-card input{height:44px;padding:0 12px;border:1px solid rgba(255,255,255,.1);border-radius:10px;background:#060a10;color:#fff}.auth-card button{height:45px;border:0;border-radius:10px;background:#2688f8;color:#fff;font-size:9px;font-weight:900}.auth-switch{margin-top:16px;text-align:center;color:#65758a;font-size:8px}.auth-switch a{color:#70b0fa}
.customer-shell{width:min(1100px,calc(100% - 34px));margin:44px auto 90px}.customer-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:22px}.customer-head h1{font-size:42px;letter-spacing:-2.2px}.customer-head p{color:#6d7c91;font-size:9px}.customer-logout{height:38px;padding:0 12px;border:1px solid rgba(255,255,255,.09);border-radius:9px;background:#0a1017;color:#d3dce6}.customer-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}.customer-panel{padding:19px;border:1px solid rgba(255,255,255,.08);border-radius:15px;background:#090e15}.panel-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:13px}.panel-head h2{font-size:15px}.panel-head a{font-size:8px;color:#6faeff}.customer-list{display:grid;gap:7px}.customer-row{padding:11px;border:1px solid rgba(255,255,255,.06);border-radius:10px;background:#070b11;display:grid;grid-template-columns:1fr auto auto;gap:12px;align-items:center}.customer-row b{font-size:9px}.customer-row span{display:block;margin-top:3px;color:#5f6f84;font-size:7px}.customer-row strong{font-size:10px}.customer-row em{font-style:normal;color:#7eb9ff;font-size:7px;text-transform:uppercase}.customer-empty{padding:30px;text-align:center;color:#56667b;font-size:9px}
.coupon-box{margin-top:14px;padding:12px;border:1px solid rgba(255,255,255,.07);border-radius:10px;background:#070b11}.coupon-box label{font-size:8px;font-weight:800}.coupon-entry{display:flex;gap:7px;margin-top:7px}.coupon-entry input{flex:1;height:38px;border:1px solid rgba(255,255,255,.09);border-radius:8px;background:#05090e;color:#fff;padding:0 10px}.coupon-entry button{padding:0 12px;border:0;border-radius:8px;background:#1d7fe9;color:#fff;font-size:8px;font-weight:900}.coupon-ok,.coupon-error{margin-top:7px;font-size:7px}.coupon-ok{color:#6cdda8}.coupon-error{color:#ff8d8d}

/* =========================================================
   HEADER ACCOUNT CONTROLS + SUPPORT PILL POLISH
   ========================================================= */

/* Make the top-right controls feel like navigation, not giant cards */
.top-actions,
.header-actions{
  display:flex;
  align-items:center;
  gap:8px;
}

.account-nav-link{
  height:36px;
  padding:0 10px;
  border-radius:8px;
  background:transparent;
  border:1px solid transparent;
  color:#a8b5c5;
  font-size:9px;
  font-weight:800;
}

.account-nav-link:hover{
  color:#fff;
  background:rgba(255,255,255,.035);
  border-color:rgba(255,255,255,.07);
}

.account-nav-create{
  height:36px;
  padding:0 12px;
  border-radius:8px;
  background:#101822;
  border:1px solid rgba(255,255,255,.09);
  color:#eef4fb;
  font-size:9px;
  font-weight:850;
  box-shadow:none;
}

.account-nav-create:hover{
  background:#15202d;
  border-color:rgba(105,174,255,.2);
}

/* Cart should be compact and dark, with the number as the blue accent */
.cart-btn{
  min-width:auto !important;
  height:36px !important;
  padding:0 10px 0 12px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  border-radius:8px !important;
  background:#101822 !important;
  border:1px solid rgba(255,255,255,.09) !important;
  color:#edf3fa !important;
  box-shadow:none !important;
  font-size:9px !important;
  font-weight:850 !important;
}

.cart-btn:hover{
  background:#15202d !important;
  border-color:rgba(105,174,255,.2) !important;
}

/* If the cart count is a nested span, make it the only bright element */
.cart-btn span,
#cartCount{
  min-width:21px;
  height:21px;
  padding:0 6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:7px;
  background:#142b48;
  color:#78baff;
  font-size:8px;
  font-weight:900;
}

/* Discord stays the strongest CTA */
.discord-nav-btn,
.top-actions .ghost-btn[href*="discord.gg"],
.header-actions .ghost-btn[href*="discord.gg"]{
  height:36px;
  padding:0 12px;
  border-radius:8px;
}

/* Bigger floating support control */
.floating-support-pill{
  right:22px !important;
  bottom:22px !important;
  min-height:58px !important;
  padding:0 20px 0 15px !important;
  gap:12px !important;
  border-radius:999px !important;
  font-size:11px !important;
  box-shadow:
    0 20px 50px rgba(22,119,255,.34),
    0 12px 30px rgba(0,0,0,.30) !important;
}

.floating-support-pill .support-dot{
  width:12px !important;
  height:12px !important;
  box-shadow:0 0 0 6px rgba(255,255,255,.08) !important;
}

.floating-support-pill > span:last-child{
  line-height:1.1;
}

.floating-support-pill small{
  margin-top:4px !important;
  font-size:8px !important;
  color:rgba(255,255,255,.76) !important;
}

.floating-support-pill:hover{
  transform:translateY(-3px) scale(1.015) !important;
}

@media(max-width:760px){
  .top-actions,
  .header-actions{
    gap:6px;
  }

  .account-nav-link{
    display:none;
  }

  .account-nav-create,
  .cart-btn,
  .discord-nav-btn,
  .top-actions .ghost-btn[href*="discord.gg"],
  .header-actions .ghost-btn[href*="discord.gg"]{
    height:34px !important;
    padding-left:9px !important;
    padding-right:9px !important;
    font-size:8px !important;
  }

  .floating-support-pill{
    right:14px !important;
    bottom:14px !important;
    min-height:54px !important;
    padding:0 17px 0 13px !important;
  }
}

/* Simple KACHED cookie notice */
.simple-cookie-banner{
  position:fixed;
  left:50%;
  bottom:22px;
  transform:translate(-50%,18px);
  z-index:1200;
  width:min(680px,calc(100% - 28px));
  padding:15px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:rgba(8,13,20,.98);
  box-shadow:0 24px 70px rgba(0,0,0,.45);
  backdrop-filter:blur(16px);
  opacity:0;
  visibility:hidden;
  transition:.2s ease;
}
.simple-cookie-banner.show{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
}
.simple-cookie-text{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.simple-cookie-text strong{
  font-size:10px;
  color:#f4f7fb;
}
.simple-cookie-text span{
  color:#7f8ea2;
  font-size:8px;
  line-height:1.5;
}
.simple-cookie-actions{
  display:flex;
  gap:8px;
  flex:none;
}
.simple-cookie-actions button{
  height:36px;
  padding:0 13px;
  border-radius:8px;
  font-size:8px;
  font-weight:900;
  cursor:pointer;
}
.cookie-decline-btn{
  border:1px solid rgba(255,255,255,.11);
  background:#0d141d;
  color:#c4ced9;
}
.cookie-accept-btn{
  border:1px solid #2688f8;
  background:#2688f8;
  color:#fff;
}
@media(max-width:620px){
  .simple-cookie-banner{
    align-items:stretch;
    flex-direction:column;
  }
  .simple-cookie-actions button{
    flex:1;
  }
}

/* =========================================================
   CANONICAL KACHED NAVBAR
   ========================================================= */
.topbar{
  width:min(1180px,calc(100% - 34px));
  min-height:70px;
  height:auto;
  margin:12px auto 0;
  padding:10px 14px;
  display:flex;
  align-items:center;
  gap:28px;
  position:sticky;
  top:12px;
  z-index:100;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(7,11,18,.90);
  backdrop-filter:blur(18px);
  box-shadow:0 12px 36px rgba(0,0,0,.20);
}

.topbar .brand{
  display:flex;
  align-items:center;
  gap:10px;
  flex:none;
}

.topbar .brand-logo{
  width:38px;
  height:38px;
  border-radius:50%;
  object-fit:cover;
}

.topbar .nav{
  display:flex;
  align-items:center;
  gap:24px;
}

.topbar .nav a{
  color:#8e9caf;
  font-size:10px;
  font-weight:750;
  transition:.15s ease;
}

.topbar .nav a:hover{
  color:#fff;
}

.topbar .top-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:7px;
}

.topbar .account-nav-link,
.topbar .account-nav-create,
.topbar .ghost-btn,
.topbar .cart-btn{
  height:36px !important;
  padding:0 11px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:8px !important;
  white-space:nowrap;
  font-size:8.5px !important;
  font-weight:850 !important;
}

.topbar .account-nav-link{
  color:#b8c5d4;
  background:transparent;
  border:1px solid transparent;
}

.topbar .account-nav-link:hover{
  color:#fff;
  background:rgba(255,255,255,.035);
}

.topbar .account-nav-create{
  background:#101822;
  border:1px solid rgba(255,255,255,.09);
  color:#eef4fb;
}

.topbar .ghost-btn{
  background:linear-gradient(135deg,#1677ff,#43a2ff);
  border:1px solid rgba(67,162,255,.50);
  color:#fff;
}

.topbar .cart-btn{
  background:#0f1721 !important;
  border:1px solid rgba(255,255,255,.09) !important;
  color:#eef4fb !important;
}

.topbar #cartCount{
  min-width:20px;
  height:20px;
  margin-left:7px;
  padding:0 5px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  background:#15365c;
  color:#82bdff;
  font-size:7px;
  font-weight:900;
}

[hidden]{
  display:none!important;
}

@media(max-width:980px){
  .topbar{
    gap:16px;
  }

  .topbar .nav{
    display:none;
  }
}

@media(max-width:720px){
  .topbar{
    top:8px;
    margin-top:8px;
  }

  .topbar .ghost-btn{
    display:none!important;
  }

  .topbar .account-nav-create[data-nav-create]{
    display:none!important;
  }

  .topbar .account-nav-link,
  .topbar .account-nav-create,
  .topbar .cart-btn{
    padding-left:9px!important;
    padding-right:9px!important;
  }
}


/* =========================================================
   AUTH NAVBAR VISIBILITY FIX
   The previous button display rules overrode HTML [hidden].
   ========================================================= */

/* Strong enough to beat .topbar .account-nav-* display rules */
.topbar [hidden],
.topbar a[hidden],
.topbar .account-nav-link[hidden],
.topbar .account-nav-create[hidden]{
  display:none !important;
}

/* Give the right side breathing room without making it bulky */
.topbar .top-actions{
  gap:8px !important;
}

.topbar .account-nav-link,
.topbar .account-nav-create,
.topbar .cart-btn,
.topbar .ghost-btn{
  flex:none;
}

/* My account should feel like navigation rather than another CTA */
.topbar [data-nav-account]{
  color:#d6e1ec;
  background:transparent;
  border-color:transparent;
}

.topbar [data-nav-account]:hover{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.06);
}

/* Logout is deliberately quiet */
.topbar [data-nav-logout]{
  background:#0d141d;
  color:#9eabba;
  border-color:rgba(255,255,255,.07);
}

.topbar [data-nav-logout]:hover{
  color:#fff;
  background:#121b26;
}

/* Prevent any auth-state flash from creating weird wrapping */
.topbar{
  overflow:visible;
}

@media(max-width:1080px){
  .topbar .top-actions{
    gap:6px !important;
  }

  .topbar .account-nav-link,
  .topbar .account-nav-create,
  .topbar .cart-btn,
  .topbar .ghost-btn{
    padding-left:9px !important;
    padding-right:9px !important;
  }
}


/* =========================================================
   NAV TEXT — SLIGHTLY LARGER, SAME HEADER SIZE
   ========================================================= */
.topbar .nav a{
  font-size:11.5px !important;
  font-weight:780 !important;
}

.topbar .account-nav-link,
.topbar .account-nav-create,
.topbar .ghost-btn,
.topbar .cart-btn{
  font-size:9.5px !important;
  padding-left:12px !important;
  padding-right:12px !important;
}

@media(max-width:1080px){
  .topbar .nav a{
    font-size:10.5px !important;
  }
}

/* =========================================================
   VERIFIED REVIEWS
   ========================================================= */
.review-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.verified-review-badge{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:0 8px;
  border:1px solid rgba(109,184,255,.17);
  border-radius:999px;
  background:rgba(53,135,222,.08);
  color:#7fc0ff;
  font-size:7px;
  font-weight:850;
  white-space:nowrap;
}

.review-empty{
  grid-column:1/-1;
  padding:34px 18px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:13px;
  background:#090e15;
  color:#647389;
  text-align:center;
  font-size:9px;
}

.customer-review-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:12px;
}

.customer-review-panel,
.customer-review-history{
  min-height:100%;
}

.customer-review-panel .panel-head small{
  display:block;
  margin-top:4px;
  color:#66758a;
  font-size:7px;
  font-weight:500;
}

.customer-review-form{
  display:grid;
  gap:12px;
}

.customer-review-form label{
  display:grid;
  gap:6px;
  color:#8695a8;
  font-size:8px;
  font-weight:800;
}

.customer-review-form input,
.customer-review-form select,
.customer-review-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.09);
  border-radius:9px;
  background:#070b11;
  color:#edf3fa;
  outline:0;
}

.customer-review-form input,
.customer-review-form select{
  height:40px;
  padding:0 10px;
}

.customer-review-form textarea{
  min-height:105px;
  max-height:220px;
  padding:10px;
  resize:vertical;
  line-height:1.55;
}

.customer-review-form input:focus,
.customer-review-form select:focus,
.customer-review-form textarea:focus{
  border-color:rgba(67,162,255,.35);
  box-shadow:0 0 0 3px rgba(67,162,255,.05);
}

.review-form-row{
  display:grid;
  grid-template-columns:1fr 150px;
  gap:10px;
}

.review-submit-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.review-submit-row span{
  color:#69788c;
  font-size:8px;
}

.review-submit-row .review-success{
  color:#73d9a7;
}

.review-submit-row .review-error{
  color:#f08b8b;
}

.review-submit-row button{
  height:40px;
  padding:0 14px;
  border:0;
  border-radius:9px;
  background:#2688f8;
  color:#fff;
  font-size:8px;
  font-weight:900;
  cursor:pointer;
}

.review-submit-row button:disabled{
  opacity:.55;
  cursor:wait;
}

.customer-review-row{
  grid-template-columns:1fr auto;
}

.customer-review-row span{
  max-width:100%;
  white-space:normal;
  line-height:1.5;
}

@media(max-width:820px){
  .customer-review-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:560px){
  .review-form-row{
    grid-template-columns:1fr;
  }

  .review-card-top{
    align-items:flex-start;
    flex-direction:column;
  }
}

.ai-support-note{
  margin-top:8px;
  font-size:12px;
  color:#8fa4bd;
  line-height:1.55;
}
.ai-support-note strong{color:#dcecff;font-weight:700}

.embedded-checkout-wrap{
  margin-top:18px;
  width:100%;
  min-height:420px;
}
.embedded-checkout-wrap[hidden]{display:none}
#embeddedCheckout{
  width:100%;
  min-height:420px;
}


/* =========================================================
   CHECKOUT — CLEANER / LARGER / MORE READABLE
   Scoped to checkout classes so the rest of KACHED stays unchanged.
   ========================================================= */

.checkout-shell{
  width:min(1240px,calc(100% - 40px));
  margin:54px auto 96px;
}

.checkout-shell .back-link{
  margin-bottom:24px;
  color:#8c9caf;
  font-size:12px;
  font-weight:650;
  text-decoration:none;
}

.checkout-shell .back-link:hover{
  color:#dce8f5;
}

.checkout-grid{
  grid-template-columns:minmax(0,1.55fr) minmax(340px,.72fr);
  gap:22px;
  align-items:start;
}

.checkout-main,
.checkout-side{
  padding:32px;
  border:1px solid rgba(255,255,255,.085);
  border-radius:18px;
  background:#090e15;
  box-shadow:0 18px 55px rgba(0,0,0,.16);
}

.checkout-main .section-kicker,
.checkout-side .section-kicker{
  font-size:10px;
  letter-spacing:.13em;
}

.checkout-main h1{
  margin:8px 0 8px;
  font-size:clamp(38px,4.6vw,54px);
  line-height:1.03;
  letter-spacing:-2.7px;
}

.checkout-intro{
  max-width:630px;
  margin:0 0 28px;
  color:#8190a4;
  font-size:13px;
  line-height:1.65;
}

.checkout-product{
  grid-template-columns:112px minmax(0,1fr) auto;
  gap:18px;
  margin-bottom:28px;
  padding:17px;
  border-radius:14px;
  background:#070b11;
}

.checkout-product img{
  width:112px;
  height:76px;
  border-radius:10px;
}

.checkout-product small{
  font-size:10px;
  letter-spacing:.06em;
}

.checkout-product h2{
  margin:5px 0 5px;
  font-size:18px;
  line-height:1.25;
  letter-spacing:-.35px;
}

.checkout-product p,
.checkout-side p,
.field-note{
  font-size:11px;
  line-height:1.65;
}

.checkout-product>strong{
  padding-left:12px;
  font-size:24px;
  letter-spacing:-.6px;
}

.checkout-main>label:not(.legal-check){
  gap:9px;
  color:#d4dde8;
  font-size:12px;
  font-weight:750;
}

.checkout-main input[type=email]{
  height:52px;
  padding:0 15px;
  border-radius:11px;
  font-size:13px;
}

.checkout-main input[type=email]::placeholder,
.coupon-entry input::placeholder{
  color:#526174;
}

.field-note{
  margin-top:7px;
  color:#68788d;
}

.legal-check{
  gap:11px;
  margin-top:18px;
  color:#93a2b5;
  font-size:11px;
  line-height:1.65;
}

.legal-check input{
  width:17px;
  height:17px;
  flex:0 0 auto;
  margin-top:1px;
  accent-color:#2688f8;
}

.legal-check a{
  font-weight:700;
}

.checkout-security{
  margin-top:22px;
  padding:16px;
  border-radius:12px;
}

.checkout-pay{
  height:54px;
  margin-top:22px;
  border-radius:11px;
  font-size:13px;
  letter-spacing:.01em;
}

.checkout-pay:hover:not(:disabled){
  background:#3292ff;
}

.checkout-msg{
  min-height:22px;
  margin-top:11px;
  font-size:11px;
  line-height:1.5;
}

.embedded-checkout-wrap{
  margin-top:22px;
  min-height:470px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.07);
}

#embeddedCheckout{
  min-height:470px;
}

/* Summary */
.checkout-side{
  position:sticky;
  top:92px;
}

.summary-heading{
  padding-bottom:15px;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.summary-heading h2{
  margin-top:7px;
  font-size:24px;
  letter-spacing:-.8px;
}

.summary-row{
  gap:20px;
  padding:17px 0;
  font-size:12px;
  line-height:1.4;
}

.summary-row span{
  color:#7e8da1;
}

.summary-row b{
  max-width:62%;
  color:#e9eff6;
  text-align:right;
  font-size:12px;
}

.summary-row.total{
  padding:19px 0 15px;
  font-size:15px;
}

.summary-row.total span{
  color:#d8e1ec;
  font-weight:750;
}

.summary-row.total b{
  color:#fff;
  font-size:22px;
  letter-spacing:-.5px;
}

.coupon-box{
  margin-top:17px;
  padding:15px;
  border-radius:12px;
}

.coupon-box label{
  font-size:11px;
}

.coupon-entry{
  gap:8px;
  margin-top:9px;
}

.coupon-entry input{
  height:44px;
  padding:0 12px;
  border-radius:9px;
  font-size:12px;
}

.coupon-entry button{
  min-width:72px;
  padding:0 14px;
  border-radius:9px;
  font-size:10px;
}

.coupon-ok,
.coupon-error,
#couponStatus{
  margin-top:8px;
  font-size:10px;
  line-height:1.45;
}

.checkout-side>p{
  margin-top:16px;
  color:#66768a;
}

@media(max-width:900px){
  .checkout-shell{
    width:min(760px,calc(100% - 28px));
    margin-top:38px;
  }

  .checkout-grid{
    grid-template-columns:1fr;
  }

  .checkout-side{
    position:static;
    order:2;
  }
}

@media(max-width:620px){
  .checkout-shell{
    width:calc(100% - 20px);
    margin-top:28px;
  }

  .checkout-main,
  .checkout-side{
    padding:21px;
    border-radius:15px;
  }

  .checkout-main h1{
    font-size:38px;
    letter-spacing:-2px;
  }

  .checkout-intro{
    font-size:12px;
  }

  .checkout-product{
    grid-template-columns:82px minmax(0,1fr);
    gap:13px;
    padding:13px;
  }

  .checkout-product img{
    width:82px;
    height:62px;
  }

  .checkout-product h2{
    font-size:15px;
  }

  .checkout-product>strong{
    grid-column:2;
    padding-left:0;
    font-size:20px;
  }

  .legal-check{
    font-size:10.5px;
  }

  .summary-heading h2{
    font-size:21px;
  }
}

.kached-cart-overlay{position:fixed;inset:0;z-index:190;background:rgba(0,0,0,.58);opacity:0;pointer-events:none;transition:.2s}.kached-cart-overlay.show{opacity:1;pointer-events:auto}.kached-cart-drawer{position:fixed;top:0;right:0;bottom:0;z-index:200;width:min(460px,100%);display:flex;flex-direction:column;background:#080d14;border-left:1px solid rgba(255,255,255,.1);box-shadow:-24px 0 70px rgba(0,0,0,.42);transform:translateX(102%);transition:.24s}.kached-cart-drawer.open{transform:none}.kached-cart-head{padding:24px;display:flex;justify-content:space-between;border-bottom:1px solid rgba(255,255,255,.08)}.kached-cart-head span{color:#60a5fa;font-size:9px;font-weight:900;letter-spacing:.14em}.kached-cart-head h2{margin-top:5px;font-size:25px}.kached-cart-head button{width:36px;height:36px;border:1px solid rgba(255,255,255,.08);border-radius:9px;background:#0e151f;color:#8d9aae;font-size:19px}.kached-cart-lines{padding:10px 18px;overflow:auto;flex:1}.kached-cart-line{display:grid;grid-template-columns:46px minmax(0,1fr) auto;gap:12px;align-items:center;padding:14px 4px;border-bottom:1px solid rgba(255,255,255,.065)}.kached-cart-icon{width:46px;height:46px;display:grid;place-items:center;border-radius:11px;background:#101a28;color:#70adff;font-size:11px;font-weight:900}.kached-cart-info>strong{display:block;font-size:12px}.kached-cart-info>span{display:block;margin-top:4px;color:#708096;font-size:9px}.kached-qty{display:flex;margin-top:9px}.kached-qty button,.kached-qty input{width:31px;height:29px;border:1px solid rgba(255,255,255,.09);background:#0b121b;color:#dfe8f2;text-align:center}.kached-qty input{width:38px}.kached-cart-line-right{text-align:right}.kached-cart-line-right button{margin-top:9px;border:0;background:none;color:#66778d;font-size:9px}.kached-cart-foot{padding:20px 22px;border-top:1px solid rgba(255,255,255,.08)}.kached-cart-subtotal{display:flex;justify-content:space-between}.kached-cart-subtotal strong{font-size:24px}.kached-cart-foot p{margin:8px 0 15px;color:#5f6f84;font-size:9px}.kached-cart-foot>a{height:50px;display:flex;align-items:center;justify-content:center;border-radius:11px;background:#2878ff;color:white;font-size:11px;font-weight:900}.kached-cart-empty{margin:auto;padding:40px;display:flex;flex-direction:column;gap:7px;text-align:center}.kached-cart-empty span{color:#718096;font-size:10px}.checkout-cart-review{display:grid;gap:9px;margin-bottom:28px}.checkout-review-line{display:grid;grid-template-columns:72px 1fr auto;gap:14px;align-items:center;padding:13px;border:1px solid rgba(255,255,255,.07);border-radius:12px;background:#070b11}.checkout-review-line img{width:72px;height:54px;object-fit:cover;border-radius:8px}.checkout-review-line small{color:#5e9ff2;font-size:9px;font-weight:900}.checkout-review-line div>strong{display:block;margin-top:4px;font-size:13px}.checkout-review-line div>span{display:block;margin-top:4px;color:#718197;font-size:10px}.checkout-review-qty{text-align:right}.checkout-cart-empty{padding:24px;border:1px solid rgba(255,255,255,.08);border-radius:12px;background:#070b11;display:flex;flex-direction:column;gap:7px}.checkout-cart-empty a{color:#6facff;font-size:11px;font-weight:800}@media(max-width:560px){.kached-cart-drawer{width:100%}.kached-cart-line{grid-template-columns:42px 1fr}.kached-cart-line-right{grid-column:2;display:flex;justify-content:space-between}.checkout-review-line{grid-template-columns:58px 1fr}.checkout-review-line img{width:58px;height:48px}.checkout-review-qty{grid-column:2;display:flex;justify-content:space-between}}

/* =========================================================
   KACHED CUSTOM ACCOUNT AI
   ========================================================= */
.custom-account-promo{
  width:min(1180px,calc(100% - 34px));margin:14px auto 0;padding:30px 32px;
  display:flex;align-items:center;justify-content:space-between;gap:30px;
  border:1px solid rgba(255,255,255,.08);border-radius:18px;background:#080d14;
}
.custom-account-copy{max-width:760px}
.custom-account-copy h2{margin:7px 0 8px;font-size:31px;letter-spacing:-1.4px}
.custom-account-copy p{max-width:700px;color:#8493a7;font-size:12px;line-height:1.65}
.custom-account-promo>.primary-btn{border:0;cursor:pointer;white-space:nowrap}

.custom-account-modal{
  position:fixed;inset:0;z-index:260;display:none;place-items:center;padding:18px;
  background:rgba(0,0,0,.68);backdrop-filter:blur(8px);
}
.custom-account-modal.show{display:grid}
.custom-account-panel{
  width:min(680px,100%);height:min(760px,calc(100vh - 36px));display:flex;flex-direction:column;
  overflow:hidden;border:1px solid rgba(255,255,255,.12);border-radius:20px;
  background:#080d14;box-shadow:0 32px 100px rgba(0,0,0,.55);
}
.custom-account-head{
  padding:22px 23px 18px;display:flex;justify-content:space-between;gap:18px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.custom-account-head h2{margin-top:5px;font-size:28px;letter-spacing:-1.2px}
.custom-account-head p{margin-top:5px;color:#718096;font-size:10px}
.custom-account-head>button{
  width:38px;height:38px;flex:0 0 auto;border:1px solid rgba(255,255,255,.08);
  border-radius:9px;background:#0e151f;color:#8d9aae;cursor:pointer;font-size:20px;
}
.custom-account-ref{
  padding:10px 23px;border-bottom:1px solid rgba(255,255,255,.06);
  color:#607087;font-size:9px
}
.custom-account-ref strong{color:#6eacff}
.custom-account-thread{
  flex:1;overflow:auto;padding:22px;display:flex;flex-direction:column;gap:11px;
}
.custom-account-msg{max-width:84%;display:flex;flex-direction:column;gap:5px}
.custom-account-msg>div{
  padding:12px 13px;border:1px solid rgba(255,255,255,.075);border-radius:12px;
  background:#0e151f;color:#dce5ef;font-size:11px;line-height:1.6;
}
.custom-account-msg small{padding:0 3px;color:#58677b;font-size:8px}
.custom-account-msg.customer{align-self:flex-end}
.custom-account-msg.customer>div{background:#1677ff;border-color:#1677ff;color:#fff}
.custom-account-msg.customer small{text-align:right}
.custom-account-form{
  padding:16px 18px 18px;border-top:1px solid rgba(255,255,255,.07);background:#090f17;
}
.custom-account-form textarea{
  width:100%;min-height:82px;max-height:150px;padding:12px;border:1px solid rgba(255,255,255,.1);
  border-radius:11px;background:#060a10;color:#eef4fb;outline:0;resize:vertical;
  font:500 11px/1.55 Inter,system-ui,sans-serif;
}
.custom-account-form textarea:focus{border-color:rgba(96,165,250,.52)}
.custom-account-form>div{margin-top:9px;display:flex;align-items:center;justify-content:space-between;gap:15px}
.custom-account-form span{color:#59697d;font-size:8px}
.custom-account-form button{
  min-width:90px;height:40px;border:0;border-radius:9px;background:#2878ff;color:#fff;
  cursor:pointer;font-size:10px;font-weight:900
}
.custom-account-form button:disabled{opacity:.55;cursor:not-allowed}
@media(max-width:700px){
  .custom-account-promo{width:calc(100% - 20px);padding:24px 20px;align-items:flex-start;flex-direction:column}
  .custom-account-promo>.primary-btn{width:100%}
  .custom-account-modal{padding:0;align-items:flex-end}
  .custom-account-panel{width:100%;height:92vh;border-radius:18px 18px 0 0;border-left:0;border-right:0;border-bottom:0}
  .custom-account-msg{max-width:91%}
}

/* Custom account request tracking on customer dashboard */
.customer-requests-panel .panel-head small{
  display:block;margin-top:4px;color:#68788d;font-size:9px;font-weight:500
}
.customer-request-status-key{
  margin:0 0 8px;padding:10px 12px;display:flex;align-items:center;gap:8px;
  border:1px solid rgba(255,255,255,.06);border-radius:9px;background:#070b11;
  color:#718197;font-size:8px;font-weight:750
}
.customer-request-status-key i{color:#3b74b9;font-style:normal}
.customer-request-row>div small{
  display:block;margin-top:5px;color:#70a9ee;font-size:8px
}
.request-status{
  min-width:max-content;padding:5px 7px;border-radius:7px;
  border:1px solid rgba(255,255,255,.08);background:#0c131d;
  color:#9cacbe!important;font-size:8px!important;font-weight:850
}
.request-status-submitted{
  border-color:rgba(40,120,255,.2);background:rgba(40,120,255,.08);color:#72adff!important
}
.request-status-reviewing-request{
  border-color:rgba(242,184,75,.2);background:rgba(242,184,75,.08);color:#edc66f!important
}
.request-status-ready{
  border-color:rgba(57,217,138,.2);background:rgba(57,217,138,.08);color:#62dfa3!important
}
@media(max-width:620px){
  .customer-request-status-key{flex-wrap:wrap}
}

/* Custom-account live market search input lock */
.custom-account-form.quote-searching textarea{
  cursor:wait;
  opacity:.72;
  border-color:rgba(96,165,250,.18);
  background:#080d14;
}
.custom-account-form.quote-searching textarea::placeholder{
  color:#76adf5;
  opacity:1;
}
.custom-account-form.quote-searching button{
  cursor:wait;
  opacity:.62;
}

.custom-quote-actions{margin-top:10px;display:flex;gap:7px;flex-wrap:wrap}
.custom-quote-actions button{height:32px;padding:0 11px;border-radius:7px;cursor:pointer;font-size:8px;font-weight:850}
.quote-accept{border:1px solid rgba(57,217,138,.28);background:rgba(57,217,138,.09);color:#6fe2aa}
.quote-decline{border:1px solid rgba(226,93,104,.25);background:rgba(226,93,104,.08);color:#f07f88}
.request-status-quote-ready{border-color:rgba(124,131,255,.25);background:rgba(124,131,255,.08);color:#9da3ff!important}
.request-status-quote-accepted{border-color:rgba(57,217,138,.2);background:rgba(57,217,138,.08);color:#62dfa3!important}
.request-status-quote-declined{border-color:rgba(226,93,104,.2);background:rgba(226,93,104,.08);color:#ef7a83!important}

.customer-custom-requests-panel{
  width:min(1180px,calc(100% - 34px));
  margin:14px auto 0;
}
.customer-custom-requests-panel .panel-head small{
  display:block;margin-top:4px;color:#68788d;font-size:9px;font-weight:500
}
.customer-staff-quote{
  margin-top:9px;display:flex;align-items:center;gap:8px
}
.customer-staff-quote span{
  color:#718197;font-size:8px;font-weight:700;text-transform:uppercase;letter-spacing:.45px
}
.customer-staff-quote strong{
  color:#edf6ff;font-size:14px;font-weight:900
}
.customer-quote-note{
  margin-top:5px!important;color:#9babc0!important
}

.custom-request-head-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.custom-request-head-meta small{color:#65768d;font-size:8px}
.custom-request-head-meta button{
  height:30px;padding:0 9px;border:1px solid #223148;border-radius:6px;
  background:#0b111a;color:#9cc9ff;font-size:8px;font-weight:800;cursor:pointer
}
.custom-request-empty-debug{display:grid;gap:5px}
.custom-request-empty-debug strong{color:#c8d5e7;font-size:9px}
.custom-request-empty-debug span{color:#7b8da4;font-size:8px}
.custom-request-empty-debug small{color:#55667d;font-size:7px}
.custom-request-error{display:grid;gap:5px;color:#d68189!important}

.custom-ready-payment{margin-top:10px}
.custom-ready-payment a{
  display:inline-flex;align-items:center;justify-content:center;height:34px;
  padding:0 13px;border-radius:7px;background:#1677ff;color:#fff!important;
  font-size:8px;font-weight:900;text-decoration:none
}
.custom-payment-complete{
  margin-top:9px;color:#62dfa3;font-size:8px;font-weight:850
}
.custom-checkout-note{
  margin-top:10px;padding:10px 12px;border:1px solid #1d2b3d;border-radius:8px;
  background:#090e15;color:#93a4ba;font-size:9px;line-height:1.5
}

.customer-order-row{align-items:flex-start}
.customer-order-main{min-width:0;flex:1}
.customer-delivery-details{
  margin-top:10px;padding:11px 12px;border:1px solid #1d2b3d;border-radius:8px;
  background:#080d14
}
.customer-delivery-details small{
  display:block;margin-bottom:7px;color:#6f90b7;font-size:7px;font-weight:900;
  letter-spacing:.55px
}
.customer-delivery-details pre{
  margin:0;color:#dce8f7;font:500 9px/1.6 "Inter",system-ui,sans-serif;
  white-space:pre-wrap;overflow-wrap:anywhere
}
.customer-delivery-details>span{
  display:block;margin-top:7px;color:#52667e;font-size:7px
}

.store-search-wrap{position:relative;width:min(680px,100%);margin:18px 0 22px}
.store-search-box{height:48px;display:flex;align-items:center;gap:10px;padding:0 12px;border:1px solid #223044;border-radius:9px;background:#080d14}
.store-search-box:focus-within{border-color:#355b86}
.store-search-icon{color:#6d87a8;font-size:18px;line-height:1}
.store-search-box input{flex:1;min-width:0;border:0;outline:0;background:transparent;color:#eef6ff;font:600 12px/1 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
.store-search-box input::placeholder{color:#5e6d80}
.store-search-box button{border:0;background:transparent;color:#7fa7d5;font-size:9px;font-weight:800;cursor:pointer}
.store-search-results{position:absolute;z-index:60;top:56px;left:0;right:0;overflow:hidden;border:1px solid #223044;border-radius:9px;background:#090e15;box-shadow:0 18px 45px rgba(0,0,0,.35)}
.store-search-result{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 13px;border-bottom:1px solid #162132;color:inherit;text-decoration:none}
.store-search-result:last-child{border-bottom:0}
.store-search-result:hover{background:#0d1520}
.store-search-result strong{display:block;color:#edf5ff;font-size:10px}
.store-search-result span{display:block;margin-top:4px;color:#65778e;font-size:8px}
.store-search-result i{color:#5f9be0;font-size:14px;font-style:normal}
.store-search-empty{padding:16px 13px}
.store-search-empty strong{display:block;color:#dbe7f6;font-size:10px}
.store-search-empty span{display:block;margin-top:5px;color:#68798f;font-size:8px}
@media(max-width:700px){.store-search-wrap{width:100%}}

/* Storefront-first top section */
.storefront-entry{
  width:min(1180px,calc(100% - 34px));
  margin:26px auto 0;
  padding:0 0 26px;
  border-bottom:1px solid #182231;
}
.storefront-entry-main{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}
.storefront-heading{
  min-width:0;
}
.storefront-label{
  display:block;
  margin-bottom:6px;
  color:#66809f;
  font-size:8px;
  font-weight:900;
  letter-spacing:.9px;
}
.storefront-heading h1{
  margin:0;
  color:#f2f6fb;
  font-size:clamp(28px,4vw,44px);
  line-height:.98;
  letter-spacing:-1.7px;
  font-weight:850;
}
.storefront-heading p{
  margin:9px 0 0;
  color:#74869c;
  font-size:10px;
}
.storefront-entry-actions{
  display:flex;
  align-items:center;
  gap:7px;
  flex-shrink:0;
}
.storefront-entry-actions a{
  display:inline-flex;
  align-items:center;
  height:34px;
  padding:0 11px;
  border:1px solid #223148;
  border-radius:7px;
  text-decoration:none;
  font-size:8px;
  font-weight:850;
}
.storefront-custom-link{
  background:#0d1724;
  color:#9ecaff;
}
.storefront-discord-link{
  background:#090d13;
  color:#7f90a5;
}
.storefront-search-shell{
  position:relative;
  width:min(760px,100%);
  margin-top:20px;
}
.storefront-search-shell .store-search-box{
  height:46px;
  border-radius:7px;
  background:#080c12;
}
.storefront-search-shell .store-search-results{
  top:53px;
}
.game-shop-section{
  padding-top:30px!important;
}
.game-shop-section .section-head{
  margin-bottom:16px;
}
.game-card-grid{
  gap:10px!important;
}
.game-art-card{
  border-radius:9px!important;
}
.custom-request-strip{
  width:min(1180px,calc(100% - 34px));
  margin:22px auto 0;
  padding:14px 0;
  border-top:1px solid #172130;
  border-bottom:1px solid #172130;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.custom-request-strip div{
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
}
.custom-request-strip span{
  color:#66788f;
  font-size:9px;
}
.custom-request-strip strong{
  color:#dce7f4;
  font-size:9px;
}
.custom-request-strip button{
  height:32px;
  padding:0 10px;
  border:1px solid #274d79;
  border-radius:6px;
  background:#0b1725;
  color:#9ccaff;
  font-size:8px;
  font-weight:850;
  cursor:pointer;
}
.reviews-section,.support-promo,.faq-section{
  margin-top:38px!important;
}
@media(max-width:760px){
  .storefront-entry-main{
    display:grid;
    gap:14px;
  }
  .storefront-entry-actions{
    justify-content:flex-start;
  }
  .storefront-heading h1{
    font-size:34px;
  }
  .custom-request-strip{
    align-items:flex-start;
    flex-direction:column;
  }
}

/* KACHED top panel — top-only refresh */
.kached-top-panel{
  width:min(1180px,calc(100% - 34px));
  margin:22px auto 0;
  padding-bottom:22px;
  border-bottom:1px solid #182231;
}
.kached-top-banner{
  overflow:hidden;
  border:1px solid #1d2a3c;
  border-radius:10px;
  background:#080c12;
}
.kached-top-banner img{
  display:block;
  width:100%;
  height:180px;
  object-fit:cover;
}
.kached-top-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:13px;
}
.kached-top-copy span{
  display:block;
  color:#60758f;
  font-size:7px;
  font-weight:900;
  letter-spacing:.9px;
}
.kached-top-copy strong{
  display:block;
  margin-top:4px;
  color:#edf5ff;
  font-size:17px;
  line-height:1.1;
}
.kached-top-links{
  display:flex;
  align-items:center;
  gap:7px;
  flex-shrink:0;
}
.kached-top-links a{
  display:inline-flex;
  align-items:center;
  height:32px;
  padding:0 10px;
  border:1px solid #24344a;
  border-radius:6px;
  background:#0a1018;
  color:#8ea5bf;
  text-decoration:none;
  font-size:8px;
  font-weight:850;
}
.kached-top-links a:first-child{
  border-color:#29517d;
  background:#0b1725;
  color:#9ecbff;
}
.kached-top-panel .storefront-search-shell{
  width:100%;
  margin-top:13px;
}
.kached-top-panel .store-search-box{
  height:44px;
  border-radius:7px;
}
@media(max-width:760px){
  .kached-top-banner img{height:135px}
  .kached-top-row{
    align-items:flex-start;
    flex-direction:column;
  }
}

/* KACHED top refinement v2 */
.kached-top-panel-v2{
  width:min(1180px,calc(100% - 34px));
  margin:20px auto 0;
  padding-bottom:16px;
  border-bottom:1px solid #172230;
}
.kached-top-panel-v2 .kached-top-visual{
  position:relative;
  overflow:hidden;
  min-height:205px;
  border:1px solid #1b2737;
  border-radius:10px;
  background:#070b10;
}
.kached-top-panel-v2 .kached-top-visual>img{
  display:block;
  width:100%;
  height:205px;
  object-fit:cover;
}
.kached-top-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(4,8,13,.78) 0%,rgba(4,8,13,.34) 46%,rgba(4,8,13,.08) 72%,rgba(4,8,13,.28) 100%),
    linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.36));
  pointer-events:none;
}
.kached-top-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  padding:20px;
}
.kached-top-brandline{
  max-width:520px;
}
.kached-top-brandline .kached-top-eyebrow{
  display:block;
  margin-bottom:5px;
  color:#79a9df;
  font-size:8px;
  font-weight:900;
  letter-spacing:1px;
}
.kached-top-brandline strong{
  display:block;
  color:#f4f7fb;
  font-size:22px;
  line-height:1.05;
  letter-spacing:-.45px;
  text-shadow:0 1px 18px rgba(0,0,0,.35);
}
.kached-top-custom-btn{
  height:38px;
  display:inline-flex;
  align-items:center;
  gap:13px;
  padding:0 13px;
  border:1px solid #2c5f98;
  border-radius:7px;
  background:#0b1725;
  color:#b6d8ff;
  font-size:9px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 6px 20px rgba(0,0,0,.18);
}
.kached-top-custom-btn span{
  color:#6daeff;
  font-size:13px;
}
.kached-top-meta{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:0 2px;
}
.kached-top-meta-copy{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  color:#72859c;
  font-size:8px;
  font-weight:700;
}
.kached-top-meta-copy i{
  color:#2f4158;
  font-style:normal;
}
.kached-top-discord{
  color:#7188a3;
  font-size:8px;
  font-weight:800;
  text-decoration:none;
}
.kached-top-discord:hover{
  color:#a8c9ee;
}
@media(max-width:760px){
  .kached-top-panel-v2 .kached-top-visual,
  .kached-top-panel-v2 .kached-top-visual>img{
    min-height:165px;
    height:165px;
  }
  .kached-top-overlay{
    align-items:flex-start;
    flex-direction:column;
    justify-content:flex-end;
    padding:15px;
  }
  .kached-top-brandline strong{
    font-size:18px;
  }
  .kached-top-custom-btn{
    height:34px;
  }
}

.review-source-label{
  color:#75879d;
  font-size:8px;
  font-weight:800;
  letter-spacing:.2px;
}
