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

::selection {
  background: rgba(25, 214, 235, 0.28);
  color: rgb(15, 23, 42);
}

.flow-shell {
  background:
    linear-gradient(115deg, rgba(209, 244, 249, 0.92), rgba(239, 248, 255, 0.82) 38%, rgba(236, 232, 255, 0.9)),
    rgb(239, 248, 255);
}

.flow-ambient {
  position: absolute;
  inset: auto;
  width: 72vw;
  height: 72vh;
  pointer-events: none;
  filter: blur(68px);
  opacity: 0.52;
}

.flow-ambient-left {
  top: -24vh;
  left: -18vw;
  background: linear-gradient(135deg, rgba(25, 214, 235, 0.55), rgba(255, 255, 255, 0));
}

.flow-ambient-right {
  top: -18vh;
  right: -22vw;
  background: linear-gradient(135deg, rgba(65, 132, 247, 0.35), rgba(126, 86, 244, 0.24), rgba(255, 255, 255, 0));
}

.flow-announce {
  background: linear-gradient(90deg, rgb(28, 207, 230), rgb(82, 118, 246));
  color: white;
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.18);
}

.flow-navbar {
  min-height: 72px;
  padding: 10px 16px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(22px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.flow-navbar:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 78px rgba(15, 23, 42, 0.14);
}

.flow-logo-box {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(220, 250, 255, 0.9), rgba(242, 239, 255, 0.9));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 16px 34px rgba(37, 99, 235, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.flow-logo-box:hover {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), 0 18px 38px rgba(37, 99, 235, 0.16);
}

.flow-search {
  border: 1px solid rgba(148, 163, 184, 0.28) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.flow-header-shell {
  backdrop-filter: blur(10px);
}

.flow-nav-search-wrap,
.flow-mobile-search-wrap {
  position: relative;
}

.flow-nav-search-wrap::before,
.flow-mobile-search-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(25, 214, 235, 0.18), rgba(25, 214, 235, 0));
  opacity: 0.8;
  z-index: -1;
}

.flow-search-primary {
  border-color: rgba(25, 214, 235, 0.28) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.9)),
    rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.flow-search:focus {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 0 0 3px rgba(25, 214, 235, 0.18);
}

.flow-banner,
.flow-category-tile,
.flow-product-card {
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.11);
}

.flow-hero {
  --mx: 62%;
  --my: 42%;
  min-height: clamp(220px, 30vh, 290px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(245, 252, 255, 0.76) 48%, rgba(232, 229, 255, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.13);
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.flow-hero:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 96px rgba(15, 23, 42, 0.15);
}

.flow-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.7) 56%, transparent 100%);
  z-index: -2;
}

.flow-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(135deg, transparent 8%, rgba(25, 214, 235, 0.18) 38%, rgba(126, 86, 244, 0.16) 76%, transparent 100%);
  z-index: -3;
  transition: opacity 0.25s ease;
}

.flow-hero-copy {
  max-width: 680px;
}

.flow-home-hero {
  position: relative;
  display: grid;
  gap: 18px;
}

.flow-home-search-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(230, 247, 255, 0.72) 55%, rgba(236, 232, 255, 0.7)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.11);
  backdrop-filter: blur(18px);
}

.flow-home-search-band h2 {
  color: rgb(15, 23, 42);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
  font-weight: 950;
}

.flow-search-jump {
  min-width: max-content;
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(25, 214, 235, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: rgb(12, 132, 150);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(25, 214, 235, 0.14);
}

.flow-search-jump:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(25, 214, 235, 0.18);
}

.flow-hero-inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.flow-hero-inline-points span,
.flow-home-pill,
.flow-store-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgb(30, 41, 59);
  font-size: 0.83rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.flow-hero-inline-points svg,
.flow-home-pill svg,
.flow-store-chip svg {
  color: rgb(12, 132, 150);
}

.flow-hero-lanes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.flow-home-pill {
  border-color: rgba(25, 214, 235, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.flow-home-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 214, 235, 0.34);
  box-shadow: 0 14px 28px rgba(65, 132, 247, 0.12);
}

.flow-showcase-stack {
  position: relative;
  width: min(580px, 100%);
}

.flow-hero-poster {
  position: absolute;
  inset: 28px 28px auto auto;
  width: min(240px, 42%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  transform: rotate(5deg);
}

.flow-hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(15, 23, 42, 0.74));
}

.flow-hero-poster-badge {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.56);
  color: white;
  font-size: 0.74rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.flow-activation-search-look {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  color: rgb(100, 116, 139);
  font-size: 0.9rem;
  font-weight: 700;
}

.flow-hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.flow-hero-mini-grid div {
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.flow-hero-mini-grid small {
  display: block;
  color: rgb(12, 132, 150);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-hero-mini-grid strong {
  display: block;
  margin-top: 8px;
  color: rgb(15, 23, 42);
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 850;
}

.flow-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgb(12, 132, 150);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.flow-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 8px;
  background: rgb(25, 214, 235);
  box-shadow: 0 0 0 5px rgba(25, 214, 235, 0.16);
}

.flow-hero h1 {
  max-width: 720px;
  color: rgb(15, 23, 42);
  font-size: 2.85rem;
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
}

.flow-hero h1 span {
  background: linear-gradient(90deg, rgb(18, 186, 211), rgb(65, 132, 247), rgb(126, 86, 244));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.flow-hero p {
  max-width: 620px;
  margin-top: 10px;
  color: rgb(100, 116, 139);
  font-weight: 650;
  font-size: 0.92rem;
  line-height: 1.45;
}

.flow-hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.flow-key-showcase {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.flow-key-showcase::before {
  content: "";
  position: absolute;
  inset: 20px -12px 18px 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(226, 246, 252, 0.3), rgba(237, 233, 255, 0.24)),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.035) 0 1px, transparent 1px 28px);
  transform: rotate(-2.5deg) skewX(-5deg);
}

.flow-activation-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 255, 0.8) 58%, rgba(239, 237, 255, 0.78)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 32px 86px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(24px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.flow-hero:hover .flow-activation-dialog {
  transform: translateY(-4px) rotate(0.3deg);
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 36px 94px rgba(65, 132, 247, 0.17);
}

.flow-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 113, 113, 0.16);
  border-radius: 8px;
  background: rgba(254, 226, 226, 0.88);
  color: rgb(220, 38, 38);
  box-shadow: 0 14px 32px rgba(248, 113, 113, 0.12);
}

.flow-dialog-content {
  padding-right: 38px;
}

.flow-dialog-content h2 {
  max-width: 420px;
  color: rgb(15, 23, 42);
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.flow-dialog-content p {
  max-width: 500px;
  margin-top: 12px;
  color: rgb(30, 41, 59);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 520;
}

.flow-hero-games-stage {
  position: relative;
  width: min(430px, 100%);
  min-height: 190px;
}

.flow-hero-games-background {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(225, 244, 255, 0.22) 55%, rgba(236, 232, 255, 0.18)),
    rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}

.flow-hero-games-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.06));
  z-index: 0;
}

.flow-hero-game-poster {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.18);
  opacity: 0.92;
  z-index: 1;
}

.flow-hero-game-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.flow-hero-game-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(15, 23, 42, 0.18));
}

.flow-hero-game-poster-rdr {
  top: 12px;
  left: 14px;
  width: 48%;
  height: 54%;
  transform: rotate(-4deg);
}

.flow-hero-game-poster-spider {
  top: 10px;
  right: 14px;
  width: 37%;
  height: 28%;
  transform: rotate(4deg);
}

.flow-hero-game-poster-resident {
  top: 40%;
  right: 10px;
  width: 40%;
  height: 26%;
  transform: rotate(-2deg);
}

.flow-hero-game-poster-gow {
  left: 10px;
  bottom: 12px;
  width: 60%;
  height: 34%;
  transform: rotate(2deg);
}

.flow-hero:hover .flow-hero-game-poster img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.flow-activation-dialog-compact {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(220px, 100%);
  min-height: 0;
  padding: 14px;
  border-radius: 16px;
}

.flow-activation-dialog-floating {
  z-index: 2;
}

.flow-dialog-content-compact {
  padding-right: 0;
}

.flow-dialog-content-compact .flow-eyebrow {
  margin-bottom: 8px;
}

.flow-dialog-content-compact h2 {
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.05;
}

.flow-dialog-content-compact p {
  margin-top: 6px;
  font-size: 0.74rem;
  line-height: 1.28;
}

.flow-activation-preview {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 40px;
  padding: 0 10px;
  margin-top: 10px;
  color: rgb(100, 116, 139);
  font-size: 0.7rem;
  font-weight: 650;
}

.flow-dialog-actions-compact {
  margin-top: 10px;
  justify-content: flex-start;
}

.flow-dialog-actions-compact b {
  min-width: 0;
  width: 100%;
  height: 34px;
  font-size: 0.78rem;
}

.flow-code-examples {
  display: grid;
  gap: 3px;
  margin-top: 22px;
}

.flow-code-examples span {
  color: rgb(12, 132, 150);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.flow-code-examples strong {
  color: rgb(100, 116, 139);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

.flow-activation-input {
  height: 54px;
  margin-top: 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 10px 30px rgba(15, 23, 42, 0.04);
}

.flow-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.flow-dialog-actions span,
.flow-dialog-actions b {
  min-width: 132px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 850;
}

.flow-dialog-actions span {
  background: rgba(226, 232, 240, 0.78);
  color: rgb(100, 116, 139);
}

.flow-dialog-actions b {
  background: linear-gradient(90deg, rgb(25, 214, 235), rgb(126, 86, 244));
  color: white;
  box-shadow: 0 16px 38px rgba(65, 132, 247, 0.22);
}

.flow-steam-window {
  position: relative;
  z-index: 1;
  width: min(470px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(24px);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.flow-hero:hover .flow-steam-window {
  transform: translateY(-4px) rotate(0.4deg);
  box-shadow: 0 34px 88px rgba(65, 132, 247, 0.16);
}

.flow-window-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.64);
}

.flow-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 8px;
  background: rgb(148, 163, 184);
}

.flow-window-bar span:nth-child(1) {
  background: rgb(255, 93, 93);
}

.flow-window-bar span:nth-child(2) {
  background: rgb(255, 190, 68);
}

.flow-window-bar span:nth-child(3) {
  background: rgb(34, 197, 94);
}

.flow-window-bar strong {
  margin-left: 8px;
  color: rgb(71, 85, 105);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-steam-body {
  padding: 16px;
}

.flow-game-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 64, 175, 0.86)),
    rgb(15, 23, 42);
  color: white;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.flow-game-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgb(25, 214, 235), rgb(126, 86, 244));
  box-shadow: 0 14px 30px rgba(25, 214, 235, 0.22);
}

.flow-game-card small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-game-card strong {
  display: block;
  color: white;
  font-size: 1.18rem;
  font-weight: 950;
}

.flow-redeem-card {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.flow-redeem-card span {
  color: rgb(12, 132, 150);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-redeem-card p {
  margin-top: 12px;
  color: rgb(100, 116, 139);
  font-size: 0.85rem;
  font-weight: 650;
  line-height: 1.5;
}

.flow-code-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.flow-code-line b {
  min-width: 0;
  padding: 10px 8px;
  border: 1px solid rgba(25, 214, 235, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(240, 253, 255, 0.96), rgba(255, 255, 255, 0.86));
  color: rgb(15, 23, 42);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.flow-steps div {
  min-height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: rgb(100, 116, 139);
  font-size: 0.78rem;
  font-weight: 850;
}

.flow-steps .done {
  color: rgb(22, 101, 52);
  background: rgba(220, 252, 231, 0.76);
}

.flow-steps .active {
  color: rgb(15, 89, 103);
  background: rgba(207, 250, 254, 0.82);
  border-color: rgba(25, 214, 235, 0.34);
}

.flow-floating-badge {
  position: absolute;
  z-index: 2;
  right: 6px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(25, 214, 235, 0.92), rgba(126, 86, 244, 0.92));
  color: white;
  box-shadow: 0 18px 42px rgba(65, 132, 247, 0.22);
  font-size: 0.8rem;
  font-weight: 900;
  animation: flow-float 3.2s ease-in-out infinite;
}

.flow-section-heading {
  margin-bottom: 18px;
}

.flow-section-heading h2 {
  color: rgb(15, 23, 42);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.flow-section-heading p {
  margin-top: 10px;
  max-width: 560px;
  color: rgb(100, 116, 139);
  font-weight: 650;
}

.flow-metrics {
  position: relative;
  overflow: hidden;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 252, 255, 0.78) 52%, rgba(236, 232, 255, 0.74)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  isolation: isolate;
}

.flow-metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(25, 214, 235, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(126, 86, 244, 0.16), transparent 24%);
  z-index: -1;
}

.flow-home-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.flow-home-shortcuts-embedded {
  margin-bottom: 10px;
}

.flow-home-shortcut {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 850;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.flow-home-shortcut:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.flow-home-shortcut-primary {
  border: 1px solid rgba(16, 185, 129, 0.22);
  background: linear-gradient(90deg, rgb(16, 185, 129), rgb(52, 211, 153));
  color: white;
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.18);
}

.flow-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.flow-metric-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 251, 255, 0.68)),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(16px);
  transform: translateY(12px);
  opacity: 0;
  animation: flow-metric-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--metric-delay, 0s);
  animation-play-state: paused;
}

.flow-metric-icon {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 1;
  font-size: 1rem;
  line-height: 1;
  filter: saturate(1.05);
  opacity: 0.95;
}

.flow-metric-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -70% auto;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(25, 214, 235, 0.18), rgba(126, 86, 244, 0.12));
  filter: blur(4px);
}

.flow-metrics.visible .flow-metric-card {
  animation-play-state: running;
}

.flow-metric-card small {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(12, 132, 150);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.flow-metric-card small::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(25, 214, 235), rgb(65, 132, 247));
  box-shadow: 0 0 0 4px rgba(25, 214, 235, 0.12);
}

.flow-metric-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: rgb(15, 23, 42);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.flow-metric-card-rating {
  background:
    linear-gradient(180deg, rgba(255, 251, 235, 0.92), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.8);
}

.flow-rating-stars {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 3px;
  color: rgb(245, 158, 11);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 14px rgba(245, 158, 11, 0.18);
}

.flow-category-tile {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: white;
}

.flow-category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(15, 23, 42, 0.7));
  pointer-events: none;
}

.flow-category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(65, 132, 247, 0.18);
}

.flow-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.flow-category-tile-home {
  min-height: 210px;
}

.flow-category-tile-home span {
  width: calc(100% - 20px);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(12px);
}

.flow-category-heading {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(25, 214, 235, 0.32);
  background: rgba(255, 255, 255, 0.72);
  color: rgb(15, 23, 42);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  font-size: 0.95rem;
  font-weight: 900;
}

.flow-category-heading::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: rgb(25, 214, 235);
  box-shadow: 0 0 0 5px rgba(25, 214, 235, 0.14);
}

.flow-product-card {
  position: relative;
  border: 1px solid rgba(205, 223, 234, 0.9);
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.75);
  isolation: isolate;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    filter 0.28s ease;
}

.flow-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(69, 182, 255, 0.42);
  box-shadow:
    0 22px 44px rgba(15, 23, 42, 0.12),
    0 0 0 3px rgba(34, 211, 238, 0.08);
}

.flow-product-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.08) 26%, transparent 38%);
  pointer-events: none;
  z-index: 0;
}

.flow-product-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0), rgba(34, 211, 238, 0.75), rgba(59, 130, 246, 0.8), rgba(34, 211, 238, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.flow-product-card:hover::after {
  opacity: 1;
  transform: scaleX(1.02);
}

.flow-product-card > * {
  position: relative;
  z-index: 1;
}

.flow-product-card-media {
  margin: 8px 8px 0;
  border: 1px solid rgba(233, 240, 247, 0.95);
  border-radius: 14px;
  background: linear-gradient(180deg, rgb(241, 245, 249), rgb(226, 232, 240));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.flow-product-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.02) 0%, rgba(5, 8, 15, 0.02) 40%, rgba(8, 11, 20, 0.12) 100%),
    linear-gradient(135deg, rgba(34, 211, 238, 0.03), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.02));
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.flow-card-image {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.flow-product-card:hover .flow-card-image {
  transform: scale(1.02);
  filter: saturate(1.04);
}

.flow-card-stock {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18, 27, 48, 0.94), rgba(16, 24, 39, 0.9));
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
}

.flow-card-content {
  gap: 10px;
  padding-top: 12px;
  background: transparent;
}

.flow-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 141, 96, 0.28);
  border-radius: 999px;
  background: rgba(255, 247, 243, 0.96);
  color: rgb(249, 115, 22);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.flow-card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.flow-card-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.flow-card-title {
  color: rgb(30, 41, 59);
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 850;
}

.flow-card-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.flow-card-price-block {
  min-width: 0;
}

.flow-card-compare {
  color: rgb(100, 116, 139);
  font-size: 0.74rem;
}

.flow-card-discount {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 7px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  background: rgba(255, 115, 0, 0.08);
  color: rgb(251, 146, 60);
  white-space: nowrap;
  font-size: 0.72rem;
}

.flow-card-price {
  color: rgb(15, 23, 42);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.flow-card-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.flow-card-pix {
  color: rgb(100, 116, 139);
  font-weight: 650;
}

.flow-card-inline-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(236, 254, 255, 0.95);
  color: rgb(12, 132, 150);
  font-size: 0.68rem;
  font-weight: 800;
}

.flow-store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 253, 255, 0.74) 45%, rgba(236, 232, 255, 0.7)),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.1);
}

.flow-store-toolbar-copy strong {
  display: block;
  color: rgb(15, 23, 42);
  font-size: 1rem;
  font-weight: 900;
}

.flow-store-toolbar-copy span {
  display: block;
  margin-top: 4px;
  color: rgb(100, 116, 139);
  font-size: 0.88rem;
  font-weight: 650;
}

.flow-store-toolbar-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-ghost,
button,
a {
  transition-property: transform, box-shadow, background-color, border-color, color, opacity, filter;
  transition-duration: 0.22s;
  transition-timing-function: ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-primary:active,
.btn-secondary:active,
.btn-outline:active,
.btn-ghost:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 46%, transparent 62%);
  transform: translateX(-130%);
}

.btn-primary:hover::after {
  animation: flow-shine 0.75s ease forwards;
}

.flow-product-card,
.flow-category-tile,
.flow-package-main,
.flow-description-card,
.flow-faq-card,
.flow-trust-card,
.flow-payment-card,
.flow-mini-summary,
.flow-activation-dialog,
.flow-dialog-close,
.flow-activation-input,
.flow-dialog-actions span,
.flow-dialog-actions b,
.flow-steam-window,
.flow-redeem-card,
.flow-game-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.flow-product-card:hover,
.flow-package-main:hover,
.flow-description-card:hover,
.flow-trust-card:hover,
.flow-payment-card:hover,
.flow-mini-summary:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 214, 235, 0.34);
  box-shadow: 0 30px 76px rgba(65, 132, 247, 0.14);
}

.flow-trust-card:hover .flow-trust-icon,
.flow-payment-card:hover .flow-trust-icon {
  transform: scale(1.06) rotate(-2deg);
}

.flow-trust-icon,
.flow-game-icon {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.flow-category-tile:hover img,
.flow-product-card:hover img {
  filter: saturate(1.08) contrast(1.03);
}

.flow-package-media img {
  transition: filter 0.25s ease, transform 0.25s ease;
}

.flow-package-media:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: none;
}

.flow-search:hover,
input:hover,
select:hover {
  border-color: rgba(25, 214, 235, 0.38) !important;
  box-shadow: 0 0 0 3px rgba(25, 214, 235, 0.08);
}

@keyframes flow-shine {
  from {
    transform: translateX(-130%);
  }
  to {
    transform: translateX(130%);
  }
}

@keyframes flow-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes flow-faq-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes flow-faq-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(3deg);
  }
}

@keyframes flow-faq-blob {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, 10px, 0) scale(1.08);
  }
}

@keyframes flow-faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flow-metric-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes flow-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.42);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.flow-footer {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
}

.flow-footer-trust-strip {
  display: flex;
  align-items: center;
  gap: 14px 18px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 253, 255, 0.76) 52%, rgba(238, 242, 255, 0.72)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.flow-footer-trust-lead {
  flex: 0 0 auto;
}

.flow-footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 999px;
  background: rgba(240, 253, 244, 0.88);
  color: rgb(21, 128, 61);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-footer-trust-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgb(34, 197, 94);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.flow-footer-trust-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 420px;
  flex-wrap: wrap;
}

.flow-footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: rgb(30, 41, 59);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.flow-footer-trust-item svg {
  color: rgb(22, 163, 74);
}

.flow-footer-rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.flow-footer-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgb(250, 204, 21);
}

.flow-footer-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 320px;
  min-height: 38px;
}

.flow-footer-rating-copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  color: rgb(71, 85, 105);
  font-size: 0.86rem;
  font-weight: 700;
}

.flow-footer-rating-copy strong {
  color: rgb(15, 23, 42);
  font-size: 1rem;
  font-weight: 900;
}

.flow-footer-discord-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(25, 214, 235, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  color: rgb(12, 132, 150);
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(25, 214, 235, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.flow-footer-discord-inline:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 214, 235, 0.3);
  box-shadow: 0 18px 30px rgba(25, 214, 235, 0.14);
}

.flow-feedbacks-shell {
  display: grid;
  gap: 18px;
}

.flow-feedbacks-topbar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.flow-feedbacks-back {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: rgb(15, 23, 42);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.flow-feedbacks-title {
  color: rgb(15, 23, 42);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  font-weight: 950;
}

.flow-feedbacks-subtitle {
  margin-top: 8px;
  max-width: 700px;
  color: rgb(100, 116, 139);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
}

.flow-feedbacks-callout {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(241, 249, 255, 0.78) 56%, rgba(237, 233, 254, 0.7)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.flow-feedbacks-callout p {
  color: rgb(51, 65, 85);
  font-weight: 700;
}

.flow-feedbacks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.flow-feedback-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 255, 0.74)),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.flow-feedback-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -55% auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25, 214, 235, 0.16), rgba(25, 214, 235, 0));
  pointer-events: none;
}

.flow-feedback-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-feedback-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 214, 235, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.92), rgba(224, 242, 254, 0.88));
  color: rgb(12, 132, 150);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.flow-feedback-card-top strong {
  display: block;
  color: rgb(15, 23, 42);
  font-size: 1.08rem;
  line-height: 1.1;
  font-weight: 900;
}

.flow-feedback-card-top small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: rgb(12, 132, 150);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-feedback-card-top small::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(25, 214, 235), rgb(65, 132, 247));
  box-shadow: 0 0 0 4px rgba(25, 214, 235, 0.12);
}

.flow-feedback-card p {
  margin-top: 16px;
  color: rgb(51, 65, 85);
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 700;
}

.flow-live-popup {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 50;
  width: min(238px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 8px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(18, 190, 214), rgb(67, 121, 245));
  color: white;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(18px);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.flow-live-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.flow-live-popup-avatar {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.flow-live-popup-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.flow-live-popup-copy strong,
.flow-live-popup-copy span,
.flow-live-popup-copy b {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-live-popup-copy strong {
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 900;
}

.flow-live-popup-copy span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
}

.flow-live-popup-copy b {
  font-size: 0.92rem;
  line-height: 1.1;
  font-weight: 900;
}

.flow-live-popup-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.95);
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.12);
}

.flow-product-page {
  position: relative;
}

.flow-product-container {
  max-width: 1380px !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.flow-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  align-items: start;
}

.flow-package-main,
.flow-description-card,
.flow-faq-card,
.flow-trust-card,
.flow-payment-card,
.flow-mini-summary {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(20px);
}

.flow-package-main {
  padding: 14px;
}

.flow-package-grid {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(320px, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.flow-package-media {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  min-width: 0;
  align-self: start;
  aspect-ratio: auto;
  max-height: none;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.flow-package-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(15, 23, 42, 0.06));
}

.flow-package-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  min-height: 0;
  border-radius: 8px;
  object-fit: contain;
  padding: 0;
}

.flow-package-buybox {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 2px 0;
}

.flow-package-title {
  color: rgb(15, 23, 42);
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 900;
}

.flow-package-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.flow-pill {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: rgb(71, 85, 105);
  font-size: 0.75rem;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.flow-pill-primary {
  border-color: rgba(25, 214, 235, 0.32);
  background: rgba(207, 250, 254, 0.82);
  color: rgb(15, 89, 103);
}

.flow-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgb(239, 68, 68);
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.42);
  animation: flow-live-pulse 1.8s ease-out infinite;
}

.flow-viewing-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  color: rgb(100, 116, 139);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.flow-viewing-inline-top {
  margin-top: 0;
  white-space: nowrap;
}

.flow-live-dot-inline {
  width: 5px;
  height: 5px;
  opacity: 0.75;
}

.flow-price-panel {
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 253, 255, 0.74)),
    rgba(255, 255, 255, 0.72);
}

.flow-package-price {
  color: rgb(15, 23, 42);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 900;
}

.flow-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(25, 214, 235, 0.28);
  border-radius: 8px;
  background: rgba(207, 250, 254, 0.72);
  color: rgb(12, 132, 150);
  font-size: 0.75rem;
  font-weight: 900;
}

.flow-action-panel {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.flow-description-card {
  padding: 20px;
}

.flow-faq-card {
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  isolation: isolate;
}

.flow-faq-card::before {
  content: "";
  position: absolute;
  inset: -10% auto auto -8%;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25, 214, 235, 0.18), rgba(25, 214, 235, 0));
  z-index: -1;
  animation: flow-faq-blob 9s ease-in-out infinite;
}

.flow-faq-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 22px;
  width: 118px;
  height: 118px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(207, 250, 254, 0.14)),
    repeating-linear-gradient(90deg, rgba(12, 132, 150, 0.06) 0 1px, transparent 1px 18px);
  opacity: 0.78;
  transform: rotate(12deg);
  z-index: -1;
}

.flow-description-card .centralcart-content {
  color: rgb(30, 41, 59);
  font-size: 1rem;
  line-height: 1.75;
}

.flow-description-card .centralcart-content hr {
  border-color: rgba(15, 23, 42, 0.18);
  margin: 24px 0;
}

.flow-description-card .centralcart-content ul,
.flow-description-card .centralcart-content ol {
  padding-left: 1.2rem;
}

.flow-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.flow-faq-header h3 {
  color: rgb(15, 23, 42);
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 900;
}

.flow-faq-orbit {
  position: relative;
  width: 132px;
  height: 84px;
  flex: 0 0 auto;
}

.flow-faq-orbit-ring {
  position: absolute;
  inset: 10px 16px;
  border: 1px dashed rgba(12, 132, 150, 0.24);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  animation: flow-faq-spin 13s linear infinite;
}

.flow-faq-orbit-chip {
  position: absolute;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(65, 132, 247, 0.14);
  backdrop-filter: blur(14px);
  animation: flow-faq-float 3.6s ease-in-out infinite;
}

.flow-faq-orbit-chip svg {
  width: 18px;
  height: 18px;
}

.flow-faq-orbit-chip-primary {
  top: 0;
  left: 10px;
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.96), rgba(255, 255, 255, 0.92));
  color: rgb(22, 163, 74);
}

.flow-faq-orbit-chip-secondary {
  right: 8px;
  top: 18px;
  background: linear-gradient(135deg, rgba(207, 250, 254, 0.96), rgba(255, 255, 255, 0.92));
  color: rgb(8, 145, 178);
  animation-delay: -1.2s;
}

.flow-faq-orbit-chip-accent {
  left: 42px;
  bottom: 0;
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.96), rgba(255, 255, 255, 0.92));
  color: rgb(79, 70, 229);
  animation-delay: -2.1s;
}

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

.flow-faq-item {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 251, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.flow-faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 214, 235, 0.28);
  box-shadow: 0 18px 34px rgba(65, 132, 247, 0.1);
}

.flow-faq-item[open] {
  border-color: rgba(25, 214, 235, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 250, 255, 0.86)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 42px rgba(65, 132, 247, 0.12);
}

.flow-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  color: rgb(15, 23, 42);
  font-size: 0.95rem;
  font-weight: 850;
}

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

.flow-faq-item summary span {
  position: relative;
  padding-left: 30px;
}

.flow-faq-item summary span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(25, 214, 235, 0.22), rgba(126, 86, 244, 0.18));
  box-shadow: 0 0 0 6px rgba(25, 214, 235, 0.08);
  transform: translateY(-50%);
}

.flow-faq-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: rgb(12, 132, 150);
  transition: transform 0.22s ease;
}

.flow-faq-item[open] .flow-faq-icon {
  transform: rotate(45deg);
}

.flow-faq-item p {
  padding: 0 16px 15px;
  color: rgb(100, 116, 139);
  font-size: 0.89rem;
  font-weight: 600;
  line-height: 1.55;
  animation: flow-faq-answer-in 0.22s ease;
}

.flow-product-sidebar {
  position: sticky;
  top: 112px;
}

.flow-trust-card,
.flow-payment-card {
  display: flex;
  gap: 12px;
  padding: 14px;
}

.flow-payment-card {
  display: block;
}

.flow-trust-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(207, 250, 254, 0.95), rgba(238, 242, 255, 0.95));
  color: rgb(12, 132, 150);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.flow-trust-icon svg {
  width: 20px;
  height: 20px;
}

.flow-trust-card p,
.flow-payment-card p {
  color: rgb(15, 23, 42);
  line-height: 1.2;
}

.flow-trust-card span,
.flow-payment-card span {
  display: block;
  margin-top: 5px;
  color: rgb(100, 116, 139);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
}

.flow-payment-icons {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.flow-payment-icons img {
  width: 28px;
  height: 28px;
}

.flow-mini-summary {
  padding: 14px;
}

.flow-mini-summary > span {
  display: block;
  margin-bottom: 12px;
  color: rgb(12, 132, 150);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-mini-summary div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: rgb(51, 65, 85);
  font-size: 0.84rem;
  font-weight: 750;
}

.flow-mini-summary svg {
  color: rgb(12, 132, 150);
}

.flow-variation-list {
  padding-right: 4px;
}

.rounded-xl,
.rounded-2xl,
.rounded-\[calc\(var\(--radius\)\+16px\)\],
.rounded-\[0\.7rem\] {
  border-radius: 8px !important;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}

body.cart-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      scale: 50%;
  }
  to {
      opacity: 1;
      scale: 100%;
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      scale: 100%;
  }
  to {
      opacity: 0;
      scale: 50%;
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.grid-background {
  background-image: linear-gradient(to right,rgba(15,23,42,.045) 1px,transparent 1px),linear-gradient(to bottom,rgba(15,23,42,.045) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.6) 64%, transparent 100%)
}

.custom-bg-mask {
	mask-image: linear-gradient(hsl(var(--background)), rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0));
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

/* Top donators shine */
.top-donators-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(25,214,235,0.25), transparent);
  pointer-events: none;
  transition: left 0.5s ease-in;
}

.top-donators-pill:hover::after {
  left: 120%;
  transition: left 0.6s ease-out;
}

.detail-dash {
  background-image: linear-gradient(to right, rgba(15, 23, 42, 0.12) 50%, hsl(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

@media (max-width: 1180px) {
  .flow-feedbacks-grid {
    grid-template-columns: 1fr;
  }

  .flow-home-search-band,
  .flow-store-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .flow-store-toolbar-pills {
    justify-content: flex-start;
  }

  .flow-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .flow-package-grid {
    grid-template-columns: minmax(0, 58%) minmax(320px, 1fr);
  }

  .flow-product-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-mini-summary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .flow-home-shortcuts {
    grid-template-columns: 1fr;
  }

  .flow-footer-trust-strip {
    align-items: flex-start;
  }

  .flow-footer-rating-inline {
    flex-basis: 100%;
  }

  .flow-footer-discord-inline {
    width: 100%;
  }

  .flow-navbar {
    min-height: 76px;
    padding: 10px 12px;
  }

  .flow-nav-search-wrap::before,
  .flow-mobile-search-wrap::before {
    inset: -5px;
  }

  .flow-logo-box {
    width: 48px;
    height: 48px;
  }

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

  .flow-home-search-band h2 {
    font-size: 1.2rem;
  }

  .flow-hero h1 {
    font-size: 2.8rem;
  }

  .flow-section-heading h2 {
    font-size: 2.2rem;
  }

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

  .flow-key-showcase {
    min-height: 0;
  }

  .flow-key-showcase::before {
    inset: 18px 6px 10px 18px;
  }

  .flow-hero-games-stage {
    width: 100%;
    min-height: 220px;
  }

  .flow-hero-game-poster-rdr {
    width: 50%;
    height: 48%;
  }

  .flow-hero-game-poster-spider {
    width: 38%;
    height: 24%;
  }

  .flow-hero-game-poster-resident {
    width: 40%;
    height: 24%;
  }

  .flow-hero-game-poster-gow {
    width: 58%;
    height: 28%;
  }

  .flow-activation-dialog-compact {
    width: min(260px, calc(100% - 16px));
  }

  .flow-product-sidebar {
    position: static;
  }

  .flow-product-container {
    max-width: 100% !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

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

  .flow-package-grid {
    grid-template-columns: 1fr;
  }

  .flow-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-package-media {
    max-height: none;
  }

  .flow-package-media img {
    height: 100%;
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 520px) {
  .flow-live-popup {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 12px 14px;
    border-radius: 16px;
    grid-template-columns: 40px minmax(0, 1fr) 8px;
    gap: 10px;
  }

  .flow-live-popup-avatar {
    width: 40px;
    height: 40px;
  }

  .flow-live-popup-copy strong {
    font-size: 0.94rem;
  }

  .flow-live-popup-copy span,
  .flow-live-popup-copy b {
    font-size: 0.76rem;
  }

  .flow-feedbacks-topbar {
    gap: 12px;
  }

  .flow-feedbacks-back {
    width: 38px;
    height: 38px;
  }

  .flow-feedback-card {
    padding: 16px;
  }

  .flow-feedback-card p {
    font-size: 0.9rem;
  }

  .flow-footer-trust-strip {
    padding: 14px;
  }

  .flow-footer-trust-items,
  .flow-footer-rating-inline {
    flex-basis: 100%;
  }

  .flow-footer-trust-item,
  .flow-footer-discord-inline {
    width: 100%;
    justify-content: flex-start;
  }

  .flow-footer-rating-inline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .flow-package-heading-row {
    align-items: flex-start;
    gap: 6px;
  }

  .flow-home-search-band {
    padding: 14px;
  }

  .flow-search-jump {
    width: 100%;
    justify-content: center;
  }

  .flow-metrics {
    padding: 10px;
  }

  .flow-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .flow-metric-card strong {
    font-size: 1.2rem;
  }

  .flow-hero {
    padding: 18px;
  }

  .flow-hero h1 {
    font-size: 2.1rem;
  }

  .flow-hero-inline-points,
  .flow-hero-lanes,
  .flow-store-toolbar-pills {
    gap: 8px;
  }

  .flow-hero-inline-points span,
  .flow-home-pill,
  .flow-store-chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .flow-showcase-stack {
    min-height: 0;
  }

  .flow-hero-poster {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 8;
    margin-bottom: 14px;
    transform: none;
  }

  .flow-hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .flow-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .flow-category-tile-home {
    min-height: 180px;
  }

  .flow-section-heading h2 {
    font-size: 1.9rem;
  }

  .flow-package-main,
  .flow-description-card,
  .flow-faq-card {
    padding: 12px;
  }

  .flow-faq-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .flow-faq-orbit {
    width: 108px;
    height: 70px;
  }

  .flow-faq-orbit-chip {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .flow-faq-orbit-chip svg {
    width: 16px;
    height: 16px;
  }

  .flow-faq-header h3 {
    font-size: 1.35rem;
  }

  .flow-faq-item summary {
    padding: 13px 14px;
    font-size: 0.9rem;
  }

  .flow-faq-item p {
    padding: 0 14px 14px;
    font-size: 0.85rem;
  }

  .flow-card-title {
    font-size: 0.95rem;
  }

  .flow-card-price {
    font-size: 1.45rem;
  }

  .flow-package-title {
    font-size: 1.25rem;
  }

  .flow-package-price {
    font-size: 1.65rem;
  }

  .flow-package-media img {
    height: 100%;
    padding: 0;
  }

  .flow-product-page {
    padding-top: 18px;
  }

  .flow-product-sidebar {
    display: block;
  }

  .flow-steam-body {
    padding: 16px;
  }

  .flow-key-showcase {
    min-height: 0;
    padding: 0;
  }

  .flow-key-showcase::before {
    inset: 12px 2px 6px 8px;
  }

  .flow-hero-games-stage {
    min-height: 240px;
  }

  .flow-hero-game-poster-rdr {
    width: 50%;
    height: 46%;
  }

  .flow-hero-game-poster-spider {
    width: 38%;
    height: 22%;
  }

  .flow-hero-game-poster-resident {
    width: 40%;
    height: 22%;
  }

  .flow-hero-game-poster-gow {
    width: 58%;
    height: 26%;
  }

  .flow-activation-dialog,
  .flow-activation-dialog-compact {
    min-height: 0;
    padding: 20px;
  }

  .flow-activation-dialog-compact {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .flow-dialog-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .flow-dialog-content {
    padding-right: 0;
  }

  .flow-dialog-content h2 {
    max-width: calc(100% - 48px);
    font-size: 1.55rem;
  }

  .flow-dialog-content-compact h2 {
    max-width: 100%;
    font-size: 1.12rem;
  }

  .flow-dialog-content-compact p {
    font-size: 0.78rem;
  }

  .flow-dialog-content p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .flow-code-examples {
    margin-top: 18px;
  }

  .flow-code-examples strong {
    font-size: 0.78rem;
    overflow-wrap: anywhere;
  }

  .flow-activation-input {
    height: 48px;
    margin-top: 18px;
  }

  .flow-dialog-actions {
    gap: 8px;
  }

  .flow-dialog-actions span,
  .flow-dialog-actions b {
    min-width: 0;
    width: 50%;
    height: 42px;
    font-size: 0.88rem;
  }

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

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-floating-badge {
    right: 16px;
    bottom: 4px;
  }
}

/* Sidebar categories */
.flow-navbar,
.flow-logo-box,
.flow-search,
.flow-hero,
.flow-key-showcase::before,
.flow-activation-dialog,
.flow-dialog-close,
.flow-activation-input,
.flow-dialog-actions span,
.flow-dialog-actions b,
.flow-steam-window,
.flow-game-card,
.flow-game-icon,
.flow-redeem-card,
.flow-steps div,
.flow-floating-badge,
.flow-category-tile,
.flow-category-heading,
.flow-product-card,
.flow-package-main,
.flow-description-card,
.flow-faq-card,
.flow-trust-card,
.flow-payment-card,
.flow-mini-summary,
.flow-package-media,
.flow-package-media img,
.flow-price-panel,
.flow-action-panel,
.flow-trust-icon,
.flow-payment-icons,
.rounded-xl,
.rounded-2xl,
.rounded-\[calc\(var\(--radius\)\+16px\)\],
.rounded-\[0\.7rem\] {
  border-radius: 12px !important;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-ghost,
.flow-pill,
.flow-discount-badge,
.flow-code-line b {
  border-radius: 10px !important;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}

.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Sidebar categories */
