:root {
	font-family: Inter, "Segoe UI", system-ui, sans-serif;
	color: #f8f9ff;
	background: #05082f;
	--store-bg: #05082f;
	--store-bg-soft: #0b1040;
	--store-card: #1e2554;
	--store-card-hover: #272f67;
	--store-line: #303970;
	--store-muted: #a8b0d4;
	--store-primary: #5c6cff;
	--store-primary-light: #8190ff;
	--store-green: #50e3aa;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--store-bg);
	color: #f8f9ff;
}

button,
input {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
	text-decoration: none;
}

.store-shell {
	min-height: 100vh;
	background:
		radial-gradient(circle at 16% 11%, rgb(61 74 163 / 16%), transparent 27rem),
		var(--store-bg);
}

.store-container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.announcement-bar {
	background: #030521;
	border-bottom: 1px solid rgb(122 136 215 / 16%);
	color: #b9c0e3;
	font-size: .75rem;
}

.announcement-inner {
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.announcement-inner i {
	margin-right: 6px;
	color: #7f8fff;
}

.store-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgb(5 8 47 / 96%);
	border-bottom: 1px solid var(--store-line);
	box-shadow: 0 10px 35px rgb(0 0 0 / 16%);
	backdrop-filter: blur(14px);
}

.header-main {
	height: 72px;
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(300px, 540px) minmax(180px, 1fr);
	align-items: center;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	font-size: 1.18rem;
	letter-spacing: -.02em;
}

.site-logo {
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	border-radius: 10px;
	object-fit: contain;
	background: #fff;
}
.brand strong {
	color: #fff;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 11px;
	background: linear-gradient(140deg, #54b8ff, #645cff 58%, #b857f0);
	box-shadow: 0 7px 18px rgb(78 99 255 / 38%);
	color: #fff;
	font-weight: 900;
}

.header-search {
	height: 42px;
	display: grid;
	grid-template-columns: 22px 1fr 32px;
	align-items: center;
	gap: 8px;
	padding: 0 7px 0 15px;
	border: 1px solid #39437e;
	border-radius: 12px;
	background: #131946;
	transition: border-color .2s, box-shadow .2s;
}

.header-search:focus-within {
	border-color: #7788ff;
	box-shadow: 0 0 0 3px rgb(92 108 255 / 18%);
}

.header-search > i {
	color: #8994c3;
}

.header-search input {
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
}

.header-search input::placeholder {
	color: #8f98c2;
}

.header-search button,
.mobile-menu-button,
.header-account,
.footer-column button {
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.header-search button {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: #293261;
	color: #bdc7f3;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.header-account {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 11px;
	border-radius: 10px;
	color: #eef0ff;
}

.header-account:hover {
	background: #181e4e;
}

.points-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 10px;
	border: 1px solid #38437e;
	border-radius: 999px;
	background: #171e50;
	color: #dbe0ff;
	font-size: .8rem;
}

.points-pill i {
	color: #ffc85c;
}

.mobile-menu-button {
	display: none;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: #171d4c;
}

.desktop-nav {
	height: 42px;
	display: flex;
	align-items: center;
	gap: 32px;
	font-size: .85rem;
	font-weight: 650;
}

.desktop-nav a {
	height: 42px;
	display: flex;
	align-items: center;
	border-bottom: 2px solid transparent;
	color: #aeb6db;
}

.desktop-nav a:hover,
.desktop-nav a.active {
	border-color: #7181ff;
	color: #fff;
}

.mobile-nav {
	display: none;
}

main {
	min-height: 55vh;
}

.hero {
	height: 300px;
	margin-top: 28px;
	display: grid;
	grid-template-columns: 52% 48%;
	overflow: hidden;
	position: relative;
	border: 1px solid rgb(137 152 255 / 22%);
	border-radius: 18px;
	background:
		linear-gradient(100deg, rgb(25 35 109 / 98%) 0%, rgb(33 42 126 / 94%) 49%, rgb(58 34 123 / 88%) 100%);
	box-shadow: 0 18px 50px rgb(0 0 0 / 18%);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 13% 5%, rgb(94 142 255 / 36%), transparent 16rem),
		linear-gradient(90deg, transparent 65%, rgb(120 70 230 / 16%));
	pointer-events: none;
}

.hero-copy {
	position: relative;
	z-index: 2;
	align-self: center;
	padding: 18px 0 18px 48px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 10px;
	border: 1px solid rgb(164 177 255 / 28%);
	border-radius: 999px;
	background: rgb(99 115 255 / 16%);
	color: #cbd2ff;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .12em;
}

.hero .hero-copy h1 {
	margin: 12px 0 8px;
	color: #fff;
	font-size: clamp(2.4rem, 4vw, 3.2rem);
	line-height: .98;
	letter-spacing: -.055em;
}

.hero-copy h1 span {
	background: linear-gradient(90deg, #7ed1ff, #bca1ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero .hero-copy p {
	max-width: 470px;
	margin: 0 0 14px;
	color: #d8def9;
	font-size: .98rem;
}

.hero-button,
.primary-button,
.secondary-button,
.link-button,
.text-button {
	min-height: 42px;
	border: 0;
	border-radius: 10px;
	padding: 10px 17px;
	font: inherit;
	cursor: pointer;
}

.hero-button,
.primary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(135deg, #6476ff, #5262ee);
	box-shadow: 0 9px 22px rgb(65 83 235 / 34%);
	color: #fff;
	font-weight: 750;
}

.secondary-button {
	background: #252d65;
	color: #e4e8ff;
}

.link-button,
.text-button {
	background: transparent;
	color: #93a1ff;
}

.hero-gallery {
	position: relative;
	height: 100%;
}

.hero-game-card {
	position: absolute;
	width: 152px;
	aspect-ratio: .78;
	overflow: hidden;
	border: 2px solid rgb(255 255 255 / 22%);
	border-radius: 20px;
	background: #202759;
	box-shadow: 0 20px 38px rgb(0 0 0 / 34%);
	transform: rotate(7deg);
}

.hero-game-card:nth-child(1) {
	top: 30px;
	right: 38px;
	z-index: 3;
}

.hero-game-card:nth-child(2) {
	top: 61px;
	right: 171px;
	z-index: 2;
	transform: rotate(-7deg);
}

.hero-game-card:nth-child(3) {
	top: 85px;
	right: 290px;
	z-index: 1;
	transform: rotate(-13deg);
}

.hero-game-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-glow {
	position: absolute;
	right: 60px;
	bottom: -160px;
	width: 360px;
	height: 260px;
	border-radius: 50%;
	background: #7d4aff;
	filter: blur(70px);
	opacity: .3;
}

.hero-carousel {
	height: 300px;
	margin-top: 28px;
	overflow: hidden;
	border: 1px solid rgb(137 152 255 / 22%);
	border-radius: 18px;
	background: #182267;
	box-shadow: 0 18px 50px rgb(0 0 0 / 18%);
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
	height: 100%;
}

.hero-slide {
	height: 300px;
	overflow: hidden;
	position: relative;
	isolation: isolate;
}

.hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 15% 0%, rgb(119 147 255 / 30%), transparent 17rem),
		linear-gradient(90deg, rgb(13 20 73 / 22%), transparent 70%);
	pointer-events: none;
}

.hero-slide-aoem {
	background: linear-gradient(110deg, #501b25 0%, #78272b 55%, #36151d 100%);
}

.hero-slide-lastwar {
	background: linear-gradient(110deg, #0d3c86 0%, #1265aa 58%, #071f5d 100%);
}

.hero-slide-new {
	background: linear-gradient(110deg, #844007 0%, #d77f08 58%, #8d3805 100%);
}

.hero-slide-art {
	width: 58%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -2;
	object-fit: cover;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

.hero-slide-copy {
	width: 54%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	z-index: 2;
	padding: 18px 0 32px 48px;
}

.hero-slide-copy h1 {
	margin: 12px 0 8px;
	color: #fff;
	font-size: clamp(2.35rem, 4vw, 3.05rem);
	line-height: .98;
	letter-spacing: -.055em;
}

.hero-slide-copy h1 span {
	background: linear-gradient(90deg, #9edfff, #d6b9ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-slide-copy p {
	max-width: 470px;
	margin: 0 0 14px;
	color: #eef1ff;
	font-size: .95rem;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
	width: 44px;
	z-index: 5;
	opacity: 0;
	transition: opacity .2s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next,
.hero-carousel:focus-within .carousel-control-prev,
.hero-carousel:focus-within .carousel-control-next {
	opacity: .85;
}

.hero-carousel .carousel-indicators {
	justify-content: flex-start;
	gap: 6px;
	margin: 0 0 13px 48px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
	width: 22px;
	height: 4px;
	margin: 0;
	border: 0;
	border-radius: 99px;
	background-color: #fff;
}

.promo-section {
	margin-top: 22px;
}

.promo-rail {
	display: grid;
	grid-template-columns: repeat(3, minmax(310px, 1fr));
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.promo-rail::-webkit-scrollbar {
	display: none;
}

.promo-card {
	min-height: 126px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 20px 22px;
	overflow: hidden;
	position: relative;
	border-radius: 14px;
	scroll-snap-align: start;
	box-shadow: inset 0 0 0 1px rgb(255 255 255 / 13%);
}

.promo-purple {
	background: linear-gradient(125deg, #6134ba, #9c50d8);
}

.promo-cyan {
	background: linear-gradient(125deg, #1477a8, #24aec2);
}

.promo-orange {
	background: linear-gradient(125deg, #c45832, #e99a3a);
}

.promo-card > div {
	display: grid;
	gap: 5px;
	position: relative;
	z-index: 2;
}

.promo-card span {
	color: rgb(255 255 255 / 72%);
	font-size: .66rem;
	font-weight: 800;
	letter-spacing: .11em;
}

.promo-card strong {
	max-width: 230px;
	color: #fff;
	font-size: 1.08rem;
	line-height: 1.25;
}

.promo-card small {
	color: rgb(255 255 255 / 76%);
}

.promo-card > i {
	font-size: 3.4rem;
	color: rgb(255 255 255 / 22%);
	transform: rotate(-8deg);
}

.catalog-section,
.catalog-page,
.page-shell,
.detail-page {
	padding-top: 54px;
	padding-bottom: 66px;
}

.popular-section {
	padding-top: 6px;
}

.section-heading,
.page-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.eyebrow {
	color: #8898ff;
	font-size: .66rem;
	font-weight: 850;
	letter-spacing: .15em;
}

.section-heading h2,
.page-heading h1 {
	margin: 5px 0 0;
	color: #fff;
	font-size: 1.7rem;
	letter-spacing: -.035em;
}

.section-heading > a {
	color: #a9b3ed;
	font-size: .84rem;
	font-weight: 650;
}

.section-heading > a i {
	margin-left: 7px;
	font-size: .72rem;
}

.game-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px 14px;
}

.game-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #2c356c;
	border-radius: 14px;
	background: var(--store-card);
	box-shadow: 0 10px 24px rgb(0 0 0 / 13%);
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.game-card:hover {
	transform: translateY(-5px);
	border-color: #5969bd;
	background: var(--store-card-hover);
}

.game-cover {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
	background: #141a45;
}

.game-cover::after {
	content: "";
	position: absolute;
	inset: 50% 0 0;
	background: linear-gradient(transparent, rgb(4 7 35 / 38%));
}

.game-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.game-card:hover .game-cover img {
	transform: scale(1.045);
}

.game-card-action {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgb(88 105 255 / 92%);
	box-shadow: 0 4px 12px rgb(0 0 0 / 28%);
	color: #fff;
	font-size: .75rem;
	opacity: 0;
	transform: translateX(-5px);
	transition: opacity .2s, transform .2s;
}

.game-card:hover .game-card-action {
	opacity: 1;
	transform: translateX(0);
}

.popular-tag {
	position: absolute;
	top: 9px;
	left: 9px;
	z-index: 2;
	padding: 5px 8px;
	border-radius: 999px;
	background: rgb(244 87 92 / 92%);
	box-shadow: 0 3px 12px rgb(0 0 0 / 24%);
	color: #fff;
	font-size: .62rem;
	font-weight: 750;
}

.game-card-body {
	min-height: 68px;
	display: grid;
	align-content: center;
	gap: 4px;
	padding: 11px 13px 12px;
}

.game-card-body strong {
	overflow: hidden;
	color: #fff;
	font-size: .9rem;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.game-card-body span {
	overflow: hidden;
	color: #9fa8d1;
	font-size: .72rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.trust-section {
	padding: 64px 0 48px;
	border-top: 1px solid #222957;
	background: #080c35;
}

.trust-heading {
	max-width: 560px;
	margin: 0 auto 32px;
	text-align: center;
}

.trust-heading h2 {
	margin: 7px 0 9px;
	color: #fff;
	font-size: 1.85rem;
	letter-spacing: -.035em;
}

.trust-heading p {
	margin: 0;
	color: var(--store-muted);
}

.feature-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.feature-strip article {
	min-width: 0;
	padding: 21px;
	border: 1px solid #283164;
	border-radius: 13px;
	background: #121844;
}

.feature-icon {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	margin-bottom: 15px;
	border-radius: 11px;
	background: #242d66;
	color: #90a0ff;
}

.feature-strip strong {
	display: block;
	color: #fff;
	font-size: .94rem;
}

.feature-strip p {
	margin: 7px 0 0;
	color: #a5add3;
	font-size: .79rem;
	line-height: 1.55;
}

.payment-trust {
	margin-top: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	color: #828dbd;
	font-size: .75rem;
}

.payment-trust > div {
	display: flex;
	align-items: center;
	gap: 22px;
}

.payment-trust strong {
	color: #c3cae9;
	font-size: .83rem;
}

.store-footer {
	padding: 52px 0 22px;
	border-top: 1px solid #202650;
	background: #02041f;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 52px;
}

.footer-brand p {
	max-width: 290px;
	margin: 17px 0;
	color: #8f98c0;
	font-size: .82rem;
	line-height: 1.6;
}

.social-links {
	display: flex;
	gap: 8px;
}

.social-links span {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border: 1px solid #29305e;
	border-radius: 9px;
	background: #0e1339;
	color: #b1bae0;
}

.footer-column {
	display: grid;
	align-content: start;
	gap: 11px;
	font-size: .8rem;
}

.footer-column strong {
	margin-bottom: 4px;
	color: #fff;
	font-size: .84rem;
}

.footer-column a,
.footer-column span,
.footer-column button {
	width: max-content;
	padding: 0;
	color: #8e98c0;
	font-size: inherit;
}

.footer-column a:hover,
.footer-column button:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 46px;
	padding-top: 20px;
	border-top: 1px solid #1d234b;
	color: #717ba7;
	font-size: .72rem;
}

.footer-bottom > div {
	display: flex;
	gap: 18px;
}

.footer-address {
	display: block;
	margin-top: 5px;
}

.login-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgb(1 3 24 / 82%);
	backdrop-filter: blur(10px);
}

.login-card {
	width: min(440px, 100%);
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	position: relative;
	padding: 28px;
	border: 1px solid #39437a;
	border-radius: 18px;
	background: #181e4d;
	box-shadow: 0 30px 80px rgb(0 0 0 / 42%);
}

.close-button {
	position: absolute;
	right: 0;
	top: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 1.5rem;
}

.form-control {
	width: 100%;
	min-height: 43px;
	margin-bottom: 12px;
	padding: 11px 13px;
	border: 1px solid #364075;
	border-radius: 10px;
	outline: 0;
	background: #111640;
	color: #fff;
}

.form-control:focus {
	border-color: #6d7cff;
	box-shadow: 0 0 0 3px rgb(92 108 255 / 15%);
	background: #111640;
	color: #fff;
	caret-color: #fff;
}

.form-control::placeholder {
	color: #8993bd;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
	-webkit-text-fill-color: #fff;
	-webkit-box-shadow: 0 0 0 1000px #111640 inset;
	caret-color: #fff;
}

.code-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
}

.full {
	width: 100%;
}

.hint {
	display: block;
	margin-top: 10px;
	color: #aab3d6;
	font-size: .76rem;
}

.status-message {
	margin-top: 12px;
	padding: 10px 12px;
	border-radius: 9px;
	background: #1a513f;
	color: #a8f4d3;
}

.status-message.error {
	background: #512331;
	color: #ffbac7;
}

.frontend-auth-card {
	display: grid;
	gap: 0;
}

.frontend-auth-card h2 {
	margin: 7px 0 6px;
	color: #fff;
	font-size: 1.75rem;
	letter-spacing: -.035em;
}

.auth-eyebrow {
	color: #7f8cff;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .17em;
}

.auth-intro {
	margin: 0 0 20px;
	color: #a8b0d4;
	font-size: .82rem;
	line-height: 1.55;
}

.auth-input {
	position: relative;
}

.auth-input > i {
	position: absolute;
	left: 14px;
	top: 21px;
	z-index: 1;
	width: 16px;
	color: #7180c2;
	font-size: .82rem;
	text-align: center;
	transform: translateY(-50%);
	pointer-events: none;
}

.auth-input .form-control {
	padding-left: 42px;
}

.turnstile-panel {
	position: relative;
	margin: 3px 0 14px;
	padding: 8px;
	overflow: hidden;
	border: 1px solid #354178;
	border-radius: 12px;
	background: linear-gradient(145deg, #10163f, #141b49);
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
	transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.turnstile-assurance {
	position: absolute;
	inset: 8px;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	pointer-events: none;
}

.turnstile-copy {
	display: grid;
	gap: 2px;
}

.turnstile-assurance strong {
	color: #e8ebff;
	font-size: .7rem;
}

.turnstile-assurance small {
	color: #8994c4;
	font-size: .61rem;
}

.turnstile-icon {
	position: relative;
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	flex: 0 0 26px;
	border-radius: 8px;
	background: #222a61;
	color: #8290ff;
}

.turnstile-icon .fa-circle-check {
	display: none;
}

.turnstile-retry {
	display: none;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	padding: 7px 10px;
	pointer-events: auto;
	border: 1px solid #75546f;
	border-radius: 8px;
	background: #43243f;
	color: #ffd2dd;
	font-size: .7rem;
	font-weight: 700;
}

.turnstile-retry:hover {
	border-color: #a86a81;
	background: #552b49;
}

.turnstile-widget {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 65px;
	overflow: hidden;
	border-radius: 8px;
}

.turnstile-widget > div,
.turnstile-widget iframe {
	max-width: 100%;
}

.turnstile-panel.is-active {
	border-color: #6675ef;
	box-shadow: 0 0 0 3px rgb(102 117 239 / 12%);
}

.turnstile-panel.is-loading .turnstile-icon,
.turnstile-panel.is-active .turnstile-icon {
	animation: turnstile-pulse 1.4s ease-in-out infinite;
}

.turnstile-panel.is-verified {
	border-color: #2d8f75;
	background: linear-gradient(145deg, #102f38, #132c44);
}

.turnstile-panel.is-verified .turnstile-icon {
	background: #174d45;
	color: #64e2b8;
}

.turnstile-panel.is-verified .fa-shield-halved {
	display: none;
}

.turnstile-panel.is-verified .fa-circle-check {
	display: inline-block;
}

.turnstile-panel.is-error {
	border-color: #9c445c;
	background: linear-gradient(145deg, #321b39, #25183d);
}

.turnstile-panel.is-error .turnstile-assurance {
	justify-content: flex-start;
}

.turnstile-panel.is-error .turnstile-widget {
	visibility: hidden;
}

.turnstile-panel.is-error .turnstile-retry {
	display: inline-flex;
}

@keyframes turnstile-pulse {
	0%, 100% {
		opacity: .62;
		transform: scale(.94);
	}

	50% {
		opacity: 1;
		transform: scale(1);
	}
}

.turnstile-configuration-error {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 3px 0 14px;
	padding: 12px;
	border: 1px solid #8c3c53;
	border-radius: 11px;
	background: #3b1e35;
	color: #ffb4c5;
	font-size: .75rem;
}

.frontend-auth-card .code-row {
	align-items: start;
}

.frontend-auth-card .code-row .form-control {
	margin-bottom: 0;
}

.frontend-auth-card .code-row .auth-input {
	min-width: 0;
}

.auth-submit-button {
	width: 100%;
	margin-top: 12px;
}

.auth-mode-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 5px;
}

.frontend-auth-card button:disabled {
	cursor: not-allowed;
	background: #303757;
	box-shadow: none;
	color: #818aa8;
	opacity: .72;
}

.frontend-auth-card .text-button:disabled {
	background: transparent;
}

@media (max-width: 480px) {
	.login-overlay {
		padding: 10px;
	}

	.login-card {
		padding: 24px 16px;
	}

	.turnstile-panel {
		padding: 6px;
	}

	.auth-mode-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.auth-mode-actions .text-button {
		min-height: 34px;
		padding: 6px 0;
	}
}

.catalog-page-header {
	display: grid;
	grid-template-columns: 1fr minmax(300px, 410px);
	align-items: end;
	gap: 40px;
	margin-bottom: 26px;
	padding: 26px 30px;
	border: 1px solid #293165;
	border-radius: 16px;
	background: linear-gradient(125deg, #121947, #181b51);
}

.catalog-page-header h1 {
	margin: 5px 0 8px;
	color: #fff;
	font-size: 2.1rem;
	letter-spacing: -.04em;
}

.catalog-page-header p {
	max-width: 570px;
	margin: 0;
	color: #aeb7da;
	font-size: .9rem;
}

.catalog-search {
	display: grid;
	grid-template-columns: 20px 1fr auto;
	align-items: center;
	gap: 9px;
	padding: 0 12px;
	border: 1px solid #3a457c;
	border-radius: 11px;
	background: #0d123b;
}

.catalog-search > i {
	color: #8994c2;
}

.catalog-search .form-control,
.catalog-search .form-control:focus {
	min-height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	box-shadow: none;
	background: transparent;
}

.catalog-search button {
	border: 0;
	background: transparent;
	color: #9fa9d1;
	cursor: pointer;
}

.catalog-result-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 17px;
	color: #8f99c4;
	font-size: .76rem;
}

.catalog-result-bar strong {
	color: #dce1fa;
}

.catalog-grid .game-card-body {
	min-height: 78px;
}

.catalog-grid .game-card-body span {
	white-space: normal;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-height: 1.35;
}

.catalog-empty {
	min-height: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	border: 1px dashed #394276;
	border-radius: 16px;
	background: #111641;
	text-align: center;
}

.catalog-empty > i {
	color: #6574d8;
	font-size: 2.4rem;
}

.catalog-empty h1,
.catalog-empty h2 {
	margin: 15px 0 6px;
	color: #fff;
}

.catalog-empty p {
	margin: 0 0 18px;
	color: #a5add2;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 20px;
	color: #8993bd;
	font-size: .76rem;
}

.breadcrumb a:hover {
	color: #fff;
}

.breadcrumb i {
	font-size: .56rem;
}

.detail-heading {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 28px;
	padding: 22px;
	border: 1px solid #2d356a;
	border-radius: 16px;
	background:
		linear-gradient(120deg, rgb(27 34 84 / 96%), rgb(21 26 72 / 96%)),
		#161c4a;
}

.detail-heading > img {
	width: 158px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 12px 28px rgb(0 0 0 / 28%);
}

.detail-heading h1 {
	margin: 5px 0 7px;
	color: #fff;
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	letter-spacing: -.045em;
}

.detail-heading p {
	max-width: 650px;
	margin: 0;
	color: #adb6da;
	font-size: .9rem;
	line-height: 1.55;
}

.detail-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.detail-badges span {
	padding: 6px 9px;
	border: 1px solid #394478;
	border-radius: 999px;
	background: #131944;
	color: #c5cdef;
	font-size: .7rem;
}

.detail-badges i {
	margin-right: 5px;
	color: #7f8fff;
}

.detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: start;
	gap: 22px;
}

.checkout-flow {
	display: grid;
	gap: 14px;
}

.checkout-step,
.order-summary {
	border: 1px solid #2c3569;
	border-radius: 14px;
	background: #151b49;
	box-shadow: 0 9px 24px rgb(0 0 0 / 10%);
}

.checkout-step {
	padding: 22px;
}

.step-heading {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	margin-bottom: 17px;
}

.step-heading > span {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 9px;
	background: linear-gradient(135deg, #6677ff, #5665df);
	color: #fff;
	font-size: .8rem;
	font-weight: 800;
}

.step-heading.compact > span {
	background: #293268;
	color: #99a8ff;
}

.step-heading h2 {
	margin: 0 0 3px;
	color: #fff;
	font-size: 1rem;
}

.step-heading p {
	margin: 0;
	color: #909ac3;
	font-size: .75rem;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.product-option {
	min-height: 108px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	overflow: hidden;
	position: relative;
	padding: 14px;
	border: 1px solid #354078;
	border-radius: 11px;
	background: #101641;
	color: #fff;
	text-align: left;
	cursor: pointer;
	transition: border-color .18s, background .18s, transform .18s;
}

.product-option:hover {
	transform: translateY(-2px);
	border-color: #6374dc;
}

.product-option.selected {
	border-color: #7282ff;
	background: #20285e;
	box-shadow: 0 0 0 2px rgb(92 108 255 / 13%);
}

.product-option > span {
	font-size: .83rem;
	font-weight: 700;
}

.product-option small {
	color: #79dcb5;
	font-size: .67rem;
}

.product-option strong {
	margin-top: auto;
	color: #fff;
	font-size: .96rem;
}

.product-option strong em {
	color: #939dc9;
	font-size: .62rem;
	font-style: normal;
	font-weight: 600;
}

.product-option > i {
	position: absolute;
	top: 8px;
	right: 8px;
	color: #8291ff;
	opacity: 0;
}

.product-option.selected > i {
	opacity: 1;
}

.payment-methods {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.payment-type-picker {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.payment-type-option {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	padding: 8px 12px;
	border: 1px solid #354078;
	border-radius: 999px;
	background: #101641;
	color: #c5cdf0;
	font-size: .73rem;
	cursor: pointer;
}

.payment-type-option i {
	color: #9ca9ff;
}

.payment-type-option.selected {
	border-color: #7282ff;
	background: #303878;
	color: #fff;
}

.payment-channel-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 9px;
	color: #dce2ff;
	font-size: .74rem;
	font-weight: 700;
}

.payment-channel-heading small {
	padding: 4px 8px;
	border-radius: 999px;
	background: #20285e;
	color: #aeb8ee;
	font-size: .64rem;
	font-weight: 600;
}

.payment-option {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	align-items: center;
	gap: 9px;
	padding: 13px;
	border: 1px solid #354078;
	border-radius: 11px;
	background: #101641;
	color: #c5cdf0;
	text-align: left;
	cursor: pointer;
}

.payment-option.selected {
	border-color: #7282ff;
	background: #20285e;
}

.payment-option > i:first-child {
	color: #9ca9ff;
	font-size: 1rem;
}

.payment-option > i:last-child {
	color: #8291ff;
	opacity: 0;
}

.payment-option.selected > i:last-child {
	opacity: 1;
}

.payment-option span {
	min-width: 0;
	display: grid;
	gap: 2px;
}

.payment-option strong {
	color: #fff;
	font-size: .77rem;
}

.payment-option small {
	color: #8f98c0;
	font-size: .62rem;
}

.detail-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.detail-form-grid label,
.detail-single-field {
	display: grid;
	gap: 7px;
	color: #cbd1ec;
	font-size: .76rem;
	font-weight: 650;
}

.detail-single-field {
	max-width: 520px;
}

.detail-form-grid .form-control,
.detail-single-field .form-control,
.promo-code-step .form-control {
	margin: 0;
}

.order-summary {
	position: sticky;
	top: 164px;
	padding: 22px;
}

.order-summary h3 {
	margin: 9px 0 18px;
	color: #fff;
	font-size: 1.06rem;
}

.summary-line {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding: 10px 0;
	border-top: 1px solid #2c3569;
	color: #9da6cd;
	font-size: .76rem;
}

.summary-line strong {
	max-width: 175px;
	color: #e9ecff;
	font-weight: 650;
	text-align: right;
}

.summary-line.total {
	margin-top: 7px;
	padding: 15px 0;
	color: #fff;
	font-size: .92rem;
}

.summary-line.total strong {
	font-size: 1.05rem;
}

.order-summary .checkout-button {
	width: 100%;
	min-height: 45px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, #6677ff, #5262e4);
	box-shadow: 0 8px 20px rgb(67 84 226 / 28%);
	font-weight: 750;
}

.summary-secure {
	margin-top: 12px;
	color: #8892bc;
	font-size: .67rem;
	text-align: center;
}

.summary-secure i {
	margin-right: 5px;
	color: #62d6aa;
}

.mobile-summary-total {
	display: none;
}

.detail-faq {
	max-width: 820px;
	margin-top: 56px;
}

.faq-list {
	display: grid;
	gap: 9px;
}

.faq-list details {
	padding: 0 18px;
	border: 1px solid #2b3467;
	border-radius: 11px;
	background: #131943;
}

.faq-list summary {
	min-height: 52px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: #e6eaff;
	font-size: .84rem;
	font-weight: 650;
	cursor: pointer;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list details[open] summary i {
	transform: rotate(45deg);
}

.faq-list summary i {
	color: #8392f4;
	transition: transform .2s;
}

.faq-list p {
	margin: 0 0 16px;
	color: #9ea7ce;
	font-size: .78rem;
	line-height: 1.6;
}

.checkout-page,
.points-hero,
.status-card {
	color: #f8f9ff;
}

.status-card,
.points-hero {
	padding: 24px;
	border: 1px solid #2d366b;
	border-radius: 14px;
	background: var(--store-card);
}

@media (max-width: 1000px) {
	.header-main {
		grid-template-columns: auto minmax(250px, 1fr) auto;
		gap: 17px;
	}

	.header-account span,
	.points-pill {
		display: none;
	}

	.hero {
		grid-template-columns: 55% 45%;
	}

	.hero-game-card {
		width: 140px;
	}

	.hero-game-card:nth-child(1) {
		right: 22px;
	}

	.hero-game-card:nth-child(2) {
		right: 130px;
	}

	.hero-game-card:nth-child(3) {
		display: none;
	}

	.game-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.feature-strip {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-grid,
	.payment-methods {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.store-container {
		width: min(100% - 28px, 1180px);
	}

	.announcement-inner {
		height: 28px;
	}

	.announcement-support {
		display: none;
	}

	.header-main {
		height: auto;
		min-height: 106px;
		grid-template-columns: 1fr auto;
		grid-template-rows: 48px 44px;
		gap: 5px 10px;
		padding: 7px 0;
	}

	.brand {
		font-size: 1rem;
	}

	.brand-mark {
		width: 32px;
		height: 32px;
		border-radius: 9px;
	}

	.site-logo {
		width: 32px;
		height: 32px;
		flex-basis: 32px;
	}

	.header-search {
		grid-column: 1 / -1;
		grid-row: 2;
		height: 42px;
	}

	.header-actions {
		grid-column: 2;
		grid-row: 1;
	}

	.mobile-menu-button {
		display: grid;
		place-items: center;
	}

	.desktop-nav {
		display: none;
	}

	.mobile-nav {
		display: grid;
		padding: 6px 14px 14px;
		border-top: 1px solid #222a5b;
		background: #080c38;
	}

	.mobile-nav a {
		padding: 12px 5px;
		border-bottom: 1px solid #202857;
		color: #bac2e5;
		font-size: .84rem;
	}

	.hero {
		height: 250px;
		grid-template-columns: 62% 38%;
		margin-top: 16px;
		border-radius: 14px;
	}

	.hero-copy {
		padding: 16px 0 16px 22px;
	}

	.hero .hero-copy h1 {
		margin-top: 12px;
		font-size: 2.05rem;
	}

	.hero .hero-copy p {
		max-width: 300px;
		margin-bottom: 12px;
		font-size: .8rem;
		line-height: 1.45;
	}

	.hero-button {
		min-height: 38px;
		padding: 8px 12px;
		font-size: .76rem;
	}

	.hero-game-card {
		width: 112px;
		border-radius: 15px;
	}

	.hero-game-card:nth-child(1) {
		top: 36px;
		right: -24px;
	}

	.hero-game-card:nth-child(2) {
		top: 73px;
		right: 57px;
	}

	.hero-carousel,
	.hero-slide {
		height: 250px;
	}

	.hero-carousel {
		margin-top: 16px;
		border-radius: 14px;
	}

	.hero-slide-art {
		width: 72%;
		opacity: .76;
		-webkit-mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 82%) 32%, #000 100%);
		mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 82%) 32%, #000 100%);
	}

	.hero-slide-copy {
		width: 72%;
		padding: 15px 0 31px 22px;
	}

	.hero-slide-copy h1 {
		margin-top: 10px;
		font-size: 2rem;
	}

	.hero-slide-copy p {
		max-width: 310px;
		margin-bottom: 11px;
		font-size: .78rem;
		line-height: 1.4;
	}

	.hero-carousel .carousel-control-prev,
	.hero-carousel .carousel-control-next {
		display: none;
	}

	.hero-carousel .carousel-indicators {
		margin: 0 0 10px 22px;
	}

	.promo-section {
		width: 100%;
		padding-left: 14px;
	}

	.promo-rail {
		grid-template-columns: repeat(3, minmax(278px, 82vw));
		gap: 10px;
		padding-right: 14px;
	}

	.promo-card {
		min-height: 112px;
		padding: 17px;
		border-radius: 12px;
	}

	.catalog-section,
	.catalog-page,
	.page-shell,
	.detail-page {
		padding-top: 38px;
		padding-bottom: 48px;
	}

	.popular-section {
		padding-top: 4px;
	}

	.section-heading {
		align-items: end;
		margin-bottom: 15px;
	}

	.section-heading h2 {
		font-size: 1.35rem;
	}

	.section-heading > a {
		font-size: .74rem;
	}

	.game-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 13px 10px;
	}

	.game-card {
		border-radius: 12px;
	}

	.game-card-action {
		opacity: 1;
		transform: none;
	}

	.game-card-body {
		min-height: 62px;
		padding: 9px 10px 10px;
	}

	.game-card-body strong {
		font-size: .8rem;
	}

	.game-card-body span {
		font-size: .65rem;
	}

	.trust-section {
		padding: 44px 0 38px;
	}

	.trust-heading h2 {
		font-size: 1.5rem;
	}

	.feature-strip {
		grid-template-columns: 1fr 1fr;
		gap: 9px;
	}

	.feature-strip article {
		padding: 15px;
	}

	.feature-icon {
		width: 34px;
		height: 34px;
		margin-bottom: 12px;
	}

	.feature-strip p {
		font-size: .7rem;
	}

	.payment-trust {
		align-items: flex-start;
		gap: 11px;
	}

	.payment-trust > div {
		flex-wrap: wrap;
		gap: 10px 15px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 34px 24px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.catalog-page-header {
		grid-template-columns: 1fr;
		gap: 19px;
		padding: 22px 18px;
	}

	.catalog-page-header h1 {
		font-size: 1.75rem;
	}

	.catalog-result-bar span {
		display: none;
	}

	.breadcrumb {
		overflow: hidden;
		white-space: nowrap;
	}

	.detail-heading {
		align-items: flex-start;
		gap: 15px;
		padding: 15px;
	}

	.detail-heading > img {
		width: 96px;
		border-radius: 11px;
	}

	.detail-heading h1 {
		font-size: 1.55rem;
	}

	.detail-heading p {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		font-size: .76rem;
	}

	.detail-badges {
		gap: 5px;
	}

	.detail-badges span:nth-child(3) {
		display: none;
	}

	.detail-layout {
		display: block;
	}

	.checkout-step {
		padding: 17px 14px;
	}

	.step-heading {
		gap: 10px;
	}

	.product-grid,
	.payment-methods {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-option {
		min-height: 104px;
		padding: 12px;
	}

	.payment-option {
		grid-template-columns: 22px 1fr auto;
		padding: 11px;
	}

	.payment-option:last-child {
		grid-column: 1 / -1;
	}

	.detail-form-grid {
		grid-template-columns: 1fr;
	}

	.detail-page {
		padding-bottom: 126px;
	}

	.order-summary {
		position: fixed;
		inset: auto 0 0;
		z-index: 30;
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(145px, .8fr);
		align-items: center;
		gap: 12px;
		padding: 11px max(14px, env(safe-area-inset-right)) max(11px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
		border-width: 1px 0 0;
		border-radius: 0;
		background: rgb(14 19 58 / 97%);
		box-shadow: 0 -12px 32px rgb(0 0 0 / 32%);
		backdrop-filter: blur(16px);
	}

	.summary-top,
	.summary-secure,
	.order-summary .hint,
	.order-summary .status-message {
		display: none;
	}

	.mobile-summary-total {
		min-width: 0;
		display: grid;
		gap: 3px;
	}

	.mobile-summary-total span {
		overflow: hidden;
		color: #9ca6cc;
		font-size: .65rem;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.mobile-summary-total strong {
		color: #fff;
		font-size: .93rem;
	}

	.order-summary .checkout-button {
		min-height: 45px;
	}

	.detail-faq {
		margin-top: 42px;
	}
}

@media (max-width: 400px) {
	.store-container {
		width: calc(100% - 24px);
	}

	.hero {
		width: calc(100% - 24px);
		grid-template-columns: 68% 32%;
	}

	.hero-copy {
		padding-left: 18px;
	}

	.hero .hero-copy h1 {
		font-size: 2.12rem;
	}

	.hero-game-card:nth-child(1) {
		right: -48px;
	}

	.hero-game-card:nth-child(2) {
		right: 25px;
		opacity: .78;
	}

	.hero-carousel {
		width: calc(100% - 24px);
	}

	.hero-slide-copy {
		width: 78%;
		padding-left: 18px;
	}

	.hero-slide-copy h1 {
		font-size: 1.82rem;
	}

	.hero-carousel .carousel-indicators {
		margin-left: 18px;
	}

	.game-grid {
		gap: 11px 8px;
	}

	.game-card-body {
		padding-inline: 9px;
	}

	.feature-strip {
		grid-template-columns: 1fr;
	}

	.detail-heading > img {
		width: 86px;
	}

	.detail-badges span {
		font-size: .62rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

.rewards-page {
	max-width: 1180px;
}

.rewards-heading p {
	margin: 8px 0 0;
	color: var(--store-muted);
	font-size: .88rem;
}

.rewards-orders-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid #38427b;
	border-radius: 10px;
	background: #151b4b;
	color: #dbe1ff;
	font-size: .82rem;
	font-weight: 700;
}

.rewards-orders-link:hover {
	border-color: #6676d4;
	background: #20275a;
	color: #fff;
}

.rewards-balance-card {
	min-height: 220px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	align-items: center;
	gap: 32px;
	overflow: hidden;
	position: relative;
	padding: 34px 38px;
	border: 1px solid rgb(138 150 255 / 32%);
	border-radius: 20px;
	background: linear-gradient(120deg, #222c7a 0%, #3543a7 56%, #653ea5 100%);
	box-shadow: 0 20px 48px rgb(0 0 0 / 22%);
}

.rewards-balance-glow {
	width: 330px;
	height: 330px;
	position: absolute;
	left: -90px;
	top: -170px;
	border-radius: 50%;
	background: rgb(105 211 255 / 28%);
	filter: blur(28px);
}

.rewards-balance-copy,
.rewards-rate-card {
	position: relative;
	z-index: 1;
}

.rewards-balance-copy {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: end;
	column-gap: 12px;
}

.rewards-balance-copy > span {
	grid-column: 1 / -1;
	margin-bottom: 10px;
	color: #d2d8ff;
	font-size: .78rem;
	font-weight: 750;
	letter-spacing: .04em;
}

.rewards-balance-copy > span i {
	margin-right: 7px;
	color: #ffd16c;
}

.rewards-balance-copy > strong {
	color: #fff;
	font-size: clamp(3.6rem, 8vw, 6.2rem);
	line-height: .86;
	letter-spacing: -.07em;
}

.rewards-balance-copy > small {
	padding-bottom: 5px;
	color: #b9c2ff;
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .14em;
}

.rewards-rate-card {
	padding: 22px;
	border: 1px solid rgb(255 255 255 / 17%);
	border-radius: 15px;
	background: rgb(8 12 54 / 36%);
	backdrop-filter: blur(12px);
}

.rewards-rate-card > span,
.rewards-rate-card > strong,
.rewards-rate-card > small {
	display: block;
}

.rewards-rate-card > span {
	color: #aeb8f5;
	font-size: .62rem;
	font-weight: 850;
	letter-spacing: .13em;
}

.rewards-rate-card > strong {
	margin-top: 10px;
	color: #fff;
	font-size: 1.35rem;
}

.rewards-rate-card > small {
	margin-top: 3px;
	color: #c7cdf1;
}

.rewards-rate-card > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 19px;
	color: #fff;
	font-size: .8rem;
	font-weight: 750;
}

.rewards-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.85fr) minmax(280px, .75fr);
	gap: 18px;
	margin-top: 22px;
}

.rewards-panel {
	min-width: 0;
	padding: 24px;
	border: 1px solid var(--store-line);
	border-radius: 16px;
	background: var(--store-card);
	box-shadow: 0 12px 30px rgb(0 0 0 / 14%);
}

.rewards-panel-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.rewards-panel h2 {
	margin: 5px 0 0;
	color: #fff;
	font-size: 1.1rem;
}

.rewards-entry-count {
	padding: 5px 9px;
	border-radius: 999px;
	background: #2b346d;
	color: #cbd2f7;
	font-size: .68rem;
	font-weight: 750;
}

.rewards-table {
	--bs-table-bg: transparent;
	--bs-table-color: #edf0ff;
	--bs-table-striped-bg: rgb(255 255 255 / 2.5%);
	--bs-table-striped-color: #edf0ff;
	--bs-table-border-color: #343e75;
}

.rewards-table .table {
	margin-bottom: 0;
	color: #edf0ff;
}

.rewards-table .table > thead > tr > th {
	padding-block: 10px;
	border-bottom-color: #414b83;
	background: transparent;
	color: #9fa9d1;
	font-size: .67rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.rewards-table .table > tbody > tr > td {
	padding-block: 13px;
	border-color: #30396e;
	vertical-align: middle;
}

.rewards-table .table > tbody > tr > td {
	background-color: #171d49 !important;
	color: #edf0ff !important;
}

.rewards-table .table > tbody > tr:nth-of-type(odd) > td {
	background-color: #1b2253 !important;
}

.rewards-table .table > tbody > tr:hover > td {
	background-color: #252e68 !important;
}

.rewards-date {
	color: #b6bfdf;
	font-size: .76rem;
}

.rewards-type {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #e9ecff;
	font-size: .76rem;
	font-weight: 650;
}

.rewards-type i {
	width: 25px;
	height: 25px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: #303a79;
	color: #9facff;
	font-size: .7rem;
}

.rewards-detail {
	display: grid;
	gap: 3px;
}

.rewards-detail strong {
	color: #f2f4ff;
	font-size: .77rem;
	font-weight: 650;
}

.rewards-detail small {
	color: #8893c0;
	font-size: .66rem;
}

.rewards-amount {
	display: inline-block;
	min-width: 60px;
	font-size: .9rem;
	text-align: right;
}

.rewards-amount.positive {
	color: #62e2b1;
}

.rewards-amount.negative {
	color: #ff8c9e;
}

.rewards-empty-state {
	min-height: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 36px 20px;
	text-align: center;
}

.rewards-empty-state > span {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	margin-bottom: 15px;
	border: 1px solid #3c477f;
	border-radius: 16px;
	background: #272f68;
	color: #9aa8ff;
	font-size: 1.15rem;
}

.rewards-empty-state strong {
	color: #fff;
}

.rewards-empty-state p {
	max-width: 400px;
	margin: 7px 0 0;
	color: var(--store-muted);
	font-size: .8rem;
}

.rewards-empty-state a {
	margin-top: 18px;
	padding: 9px 14px;
	border-radius: 9px;
	background: #5b6bf2;
	color: #fff;
	font-size: .78rem;
	font-weight: 750;
}

.rewards-rules {
	display: flex;
	flex-direction: column;
}

.rewards-rule {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 12px;
	margin-top: 22px;
}

.rewards-rule > span {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 11px;
	background: #303a78;
	color: #a7b3ff;
}

.rewards-rule strong {
	color: #fff;
	font-size: .82rem;
}

.rewards-rule p {
	margin: 5px 0 0;
	color: var(--store-muted);
	font-size: .74rem;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.rewards-balance-card {
		grid-template-columns: minmax(0, 1fr) 280px;
		padding-inline: 28px;
	}

	.rewards-layout {
		grid-template-columns: 1fr;
	}

	.rewards-rules {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.rewards-rules > .eyebrow,
	.rewards-rules > h2 {
		grid-column: 1 / -1;
	}

	.rewards-rule {
		grid-template-columns: 1fr;
		margin-top: 2px;
	}
}

@media (max-width: 640px) {
	.rewards-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.rewards-orders-link {
		width: 100%;
		justify-content: center;
	}

	.rewards-balance-card {
		min-height: 0;
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 26px 20px 20px;
		border-radius: 16px;
	}

	.rewards-balance-copy > strong {
		font-size: clamp(3.5rem, 20vw, 5.2rem);
	}

	.rewards-rate-card {
		padding: 18px;
	}

	.rewards-panel {
		padding: 18px 15px;
		border-radius: 14px;
	}

	.rewards-panel-heading {
		align-items: flex-start;
	}

	.rewards-rules {
		display: flex;
	}

	.rewards-rule {
		grid-template-columns: 38px 1fr;
		margin-top: 18px;
	}

	.rewards-table .table-card-view {
		gap: 10px;
	}

	.rewards-table .card {
		border-color: #37417b;
		background: #171d4b;
		color: #edf0ff;
	}

	.rewards-table .card .card-body,
	.rewards-table .card .card-header,
	.rewards-table .card .card-footer {
		background: #171d4b;
		color: #edf0ff;
	}

	.rewards-empty-state {
		min-height: 230px;
		padding-inline: 10px;
	}
}

/* Secure payment checkout overlay */
.checkout-overlay {
	position: fixed;
	inset: 0;
	z-index: 5000;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgb(3 6 35 / 72%);
	backdrop-filter: blur(10px);
}

.checkout-dialog {
	width: min(920px, 96vw);
	height: min(760px, 90vh);
	display: grid;
	grid-template-rows: auto 1fr auto;
	overflow: hidden;
	border: 1px solid #3b4788;
	border-radius: 20px;
	background: #111743;
	box-shadow: 0 32px 100px rgb(0 0 0 / 45%);
}

.checkout-dialog header,
.checkout-dialog footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 22px;
	border-color: #2e396f;
}

.checkout-dialog header {
	border-bottom: 1px solid #2e396f;
	background: #171e4d;
}

.checkout-dialog header div {
	display: grid;
	gap: 3px;
}

.checkout-dialog header span {
	color: #8e9bff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .15em;
}

.checkout-dialog header strong {
	color: #f5f6ff;
	font-size: 18px;
}

.checkout-dialog header button {
	width: 34px;
	height: 34px;
	border: 1px solid #3c4784;
	border-radius: 50%;
	background: #252d62;
	color: #d8ddff;
	font-size: 23px;
	cursor: pointer;
}

.checkout-dialog iframe {
	width: 100%;
	height: 100%;
	border: 0;
	background: #f8f9fc;
}

.checkout-launch {
	display: grid;
	place-content: center;
	gap: 10px;
	padding: 42px;
	text-align: center;
	color: #aab3da;
	background: #151b46;
}

.checkout-launch strong {
	color: #f2f4ff;
	font-size: 18px;
}

.checkout-launch span {
	font-size: 13px;
}

.checkout-dialog footer {
	border-top: 1px solid #2e396f;
	font-size: 12px;
}

.checkout-dialog footer a {
	color: #aab5ff;
	font-weight: 700;
	text-decoration: none;
}

.checkout-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #aab3da;
}

.checkout-status i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ffd275;
	box-shadow: 0 0 0 5px rgb(255 210 117 / 12%);
}

.checkout-status.paid { color: #73e5ba; }
.checkout-status.paid i { background: #35cc91; }
.checkout-status.failed { color: #ff9baa; }
.checkout-status.failed i { background: #ff607c; }

.orders-table .table > tbody > tr > td {
	background-color: #171d49 !important;
	color: #edf0ff !important;
}

.orders-table .table > tbody > tr:nth-of-type(odd) > td {
	background-color: #1b2253 !important;
}

.orders-table .table > tbody > tr:hover > td {
	background-color: #252e68 !important;
}

@media (max-width: 640px) {
	.checkout-overlay { padding: 10px; }
	.checkout-dialog { width: 100%; height: 92vh; border-radius: 16px; }
	.checkout-dialog footer { align-items: flex-start; flex-direction: column; }
}

.payment-guide-page {
	padding-top: 48px;
	padding-bottom: 80px;
}

.payment-guide-hero {
	min-height: 255px;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);
	align-items: center;
	gap: 30px;
	overflow: hidden;
	position: relative;
	padding: 34px 40px;
	border: 1px solid rgb(137 152 255 / 28%);
	border-radius: 18px;
	background: radial-gradient(circle at 83% 20%, rgb(84 210 178 / 22%), transparent 18rem), linear-gradient(115deg, #202b78, #314294 58%, #235f7e);
	box-shadow: 0 18px 48px rgb(0 0 0 / 18%);
}

.payment-guide-hero h1 {
	margin: 8px 0 10px;
	color: #fff;
	font-size: clamp(2.15rem, 5vw, 3.2rem);
	letter-spacing: -.055em;
}

.payment-guide-hero p {
	max-width: 650px;
	margin: 0 0 20px;
	color: #d6dcff;
	font-size: .92rem;
	line-height: 1.6;
}

.payment-guide-hero .primary-button {
	text-decoration: none;
}

.payment-guide-hero-art {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	padding: 22px;
	border: 1px solid rgb(255 255 255 / 20%);
	border-radius: 17px;
	background: rgb(11 25 72 / 38%);
	box-shadow: 0 18px 35px rgb(0 0 0 / 17%);
	backdrop-filter: blur(12px);
}

.payment-guide-hero-art > span {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	grid-row: span 2;
	border-radius: 15px;
	background: rgb(83 226 177 / 17%);
	color: #7de7bd;
	font-size: 1.2rem;
}

.payment-guide-hero-art div {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 3px 8px;
}

.payment-guide-hero-art div > i {
	grid-row: span 2;
	padding-top: 3px;
	color: #a9b5ff;
}

.payment-guide-hero-art strong {
	color: #fff;
	font-size: .85rem;
}

.payment-guide-hero-art small {
	color: #bac4e6;
	font-size: .68rem;
}

.payment-guide-steps,
.payment-guide-faq {
	margin-top: 32px;
}

.payment-guide-section-heading {
	margin-bottom: 17px;
}

.payment-guide-section-heading h2 {
	margin: 5px 0 0;
	color: #fff;
	font-size: 1.35rem;
	letter-spacing: -.025em;
}

.payment-step-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.payment-step-grid article {
	min-height: 215px;
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 21px;
	border: 1px solid var(--store-line);
	border-radius: 15px;
	background: linear-gradient(145deg, #1a2150, #20285b);
	box-shadow: 0 10px 25px rgb(0 0 0 / 12%);
}

.payment-step-grid article > span {
	position: absolute;
	top: 16px;
	right: 17px;
	color: #46528f;
	font-size: 1.8rem;
	font-weight: 900;
}

.payment-step-grid article > i {
	width: 39px;
	height: 39px;
	display: grid;
	place-items: center;
	margin-bottom: 24px;
	border-radius: 11px;
	background: #303a79;
	color: #abb7ff;
}

.payment-step-grid article:last-child > i {
	background: rgb(54 210 153 / 15%);
	color: #6ce7b5;
}

.payment-step-grid h3 {
	margin: 0 0 7px;
	color: #f4f5ff;
	font-size: .91rem;
}

.payment-step-grid p {
	margin: 0;
	color: #aeb8da;
	font-size: .73rem;
	line-height: 1.58;
}

.payment-guide-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(290px, .72fr);
	align-items: start;
	gap: 18px;
	margin-top: 22px;
}

.payment-guide-panel,
.payment-safety-card,
.payment-help-card,
.payment-guide-faq {
	border: 1px solid var(--store-line);
	border-radius: 16px;
	background: #171d49;
	box-shadow: 0 12px 30px rgb(0 0 0 / 13%);
}

.payment-guide-panel {
	padding: 25px 28px;
}

.payment-guide-panel-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.payment-guide-panel-heading > span,
.payment-safety-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	border-radius: 12px;
	background: #303a79;
	color: #abb7ff;
}

.payment-guide-panel h2,
.payment-safety-card h2 {
	margin: 5px 0 0;
	color: #fff;
	font-size: 1.08rem;
}

.payment-timeline {
	display: grid;
}

.payment-timeline > div {
	display: grid;
	grid-template-columns: 20px 1fr;
	column-gap: 10px;
	position: relative;
	padding-bottom: 22px;
}

.payment-timeline > div:not(:last-child)::before {
	content: "";
	width: 1px;
	position: absolute;
	top: 13px;
	bottom: 0;
	left: 5px;
	background: #3c4783;
}

.payment-timeline-dot {
	width: 11px;
	height: 11px;
	grid-row: span 2;
	position: relative;
	z-index: 1;
	margin-top: 3px;
	border: 3px solid #6f7eff;
	border-radius: 50%;
	background: #171d49;
}

.payment-timeline strong {
	color: #eef0ff;
	font-size: .81rem;
}

.payment-timeline p {
	margin: 5px 0 0;
	color: #aeb8d9;
	font-size: .73rem;
	line-height: 1.58;
}

.payment-guide-side {
	display: grid;
	gap: 13px;
}

.payment-safety-card {
	padding: 23px;
	background: linear-gradient(145deg, #20295e, #252e68);
}

.payment-safety-icon {
	margin-bottom: 16px;
	background: rgb(54 210 153 / 15%);
	color: #6ce7b5;
}

.payment-safety-card ul {
	display: grid;
	gap: 11px;
	margin: 17px 0 0;
	padding: 0;
	list-style: none;
}

.payment-safety-card li {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 8px;
	color: #bdc5e3;
	font-size: .73rem;
	line-height: 1.45;
}

.payment-safety-card li i {
	width: 19px;
	height: 19px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgb(54 210 153 / 15%);
	color: #6ce7b5;
	font-size: .58rem;
}

.payment-help-card {
	display: grid;
	grid-template-columns: 35px 1fr;
	gap: 12px;
	padding: 18px;
}

.payment-help-card > i {
	width: 35px;
	height: 35px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: #303a79;
	color: #abb7ff;
}

.payment-help-card strong {
	color: #fff;
	font-size: .79rem;
}

.payment-help-card p {
	margin: 4px 0 8px;
	color: #9fa9cf;
	font-size: .68rem;
	line-height: 1.45;
}

.payment-help-card a {
	color: #9eacff;
	font-size: .7rem;
	font-weight: 750;
}

.payment-guide-faq {
	padding: 25px 28px;
}

.payment-faq-list details {
	padding: 14px 0;
	border-top: 1px solid #30396e;
}

.payment-faq-list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	color: #eef0ff;
	font-size: .82rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.payment-faq-list summary::-webkit-details-marker {
	display: none;
}

.payment-faq-list summary::after {
	content: "+";
	color: #8996d5;
	font-size: 1rem;
	line-height: 1;
}

.payment-faq-list details[open] summary::after {
	content: "−";
}

.payment-faq-list p {
	max-width: 940px;
	margin: 9px 28px 2px 0;
	color: #b7c0df;
	font-size: .78rem;
	line-height: 1.65;
}

.payment-faq-list a {
	color: #9eacff;
}

@media (max-width: 900px) {
	.payment-step-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.payment-guide-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.payment-guide-page {
		padding-top: 32px;
		padding-bottom: 55px;
	}

	.payment-guide-hero {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 25px 19px 20px;
	}

	.payment-guide-hero-art {
		padding: 16px;
	}

	.payment-step-grid {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.payment-step-grid article {
		min-height: 0;
		padding: 17px;
	}

	.payment-step-grid article > i {
		margin-bottom: 17px;
	}

	.payment-guide-panel,
	.payment-safety-card,
	.payment-guide-faq {
		padding: 21px 17px;
		border-radius: 14px;
	}

	.payment-faq-list p {
		margin-right: 0;
	}
}

.announcement-support {
	color: #b9c0e3;
	transition: color .2s;
}

.announcement-support:hover {
	color: #fff;
}

.footer-column a {
	transition: color .2s;
}

.help-page {
	padding-top: 48px;
	padding-bottom: 80px;
}

.help-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	min-height: 190px;
	margin-bottom: 22px;
	padding: 30px 38px;
	overflow: hidden;
	position: relative;
	border: 1px solid rgb(137 152 255 / 28%);
	border-radius: 18px;
	background: radial-gradient(circle at 88% 15%, rgb(105 116 255 / 28%), transparent 16rem), linear-gradient(120deg, #202b78, #2d3b91 56%, #4a348e);
	box-shadow: 0 17px 45px rgb(0 0 0 / 18%);
}

.help-hero h1 {
	margin: 8px 0 9px;
	color: #fff;
	font-size: clamp(2rem, 5vw, 3rem);
	letter-spacing: -.05em;
}

.help-hero p {
	max-width: 620px;
	margin: 0;
	color: #d6dcff;
	font-size: .92rem;
}

.help-hero-icon {
	width: 102px;
	height: 102px;
	display: grid;
	place-items: center;
	flex: 0 0 102px;
	border: 1px solid rgb(255 255 255 / 23%);
	border-radius: 28px;
	background: rgb(255 255 255 / 11%);
	box-shadow: 0 15px 30px rgb(0 0 0 / 16%);
	color: #cbd3ff;
	font-size: 2.4rem;
}

.help-shortcuts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 22px;
}

.help-shortcuts > a {
	display: grid;
	grid-template-columns: 36px 1fr;
	align-items: center;
	column-gap: 10px;
	padding: 14px;
	border: 1px solid var(--store-line);
	border-radius: 13px;
	background: #1a2150;
	transition: border-color .2s, transform .2s, background .2s;
}

.help-shortcuts > a:hover {
	border-color: #6373d4;
	background: #242d64;
	transform: translateY(-2px);
}

.help-shortcuts > a > span {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	grid-row: span 2;
	border-radius: 10px;
	background: #303a79;
	color: #aeb9ff;
}

.help-shortcuts strong {
	color: #f5f6ff;
	font-size: .8rem;
}

.help-shortcuts small {
	margin-top: 2px;
	color: #99a4cd;
	font-size: .67rem;
	line-height: 1.35;
}

.help-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.8fr) minmax(250px, .72fr);
	align-items: start;
	gap: 22px;
}

.help-faq-card,
.help-contact-card {
	border: 1px solid var(--store-line);
	border-radius: 16px;
	background: #171d49;
	box-shadow: 0 12px 30px rgb(0 0 0 / 14%);
}

.help-faq-card {
	padding: 5px 30px;
}

.help-topic {
	padding: 25px 0 27px;
	border-bottom: 1px solid #30396e;
}

.help-topic:last-child {
	border-bottom: 0;
}

.help-topic-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
}

.help-topic-icon,
.help-contact-icon {
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: #303a79;
	color: #abb7ff;
}

.help-topic-icon {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
}

.help-topic-heading h2 {
	margin: 4px 0 0;
	color: #f4f5ff;
	font-size: 1.05rem;
}

.help-topic details {
	padding: 13px 0;
	border-top: 1px solid rgb(68 80 142 / 52%);
}

.help-topic summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	color: #edf0ff;
	font-size: .82rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.help-topic summary::-webkit-details-marker {
	display: none;
}

.help-topic summary::after {
	content: "+";
	flex: 0 0 auto;
	color: #8996d5;
	font-size: 1rem;
	font-weight: 750;
	line-height: 1;
}

.help-topic details[open] summary::after {
	content: "−";
}

.help-topic details p {
	max-width: 750px;
	margin: 9px 28px 2px 0;
	color: #b7c0df;
	font-size: .79rem;
	line-height: 1.72;
}

.help-topic details a,
.help-contact-card a:not(.primary-button),
.legal-content a,
.legal-summary a {
	color: #9eacff;
}

.help-contact-card {
	position: sticky;
	top: 130px;
	padding: 25px;
	background: linear-gradient(145deg, #20295e, #252e68);
}

.help-contact-icon {
	width: 44px;
	height: 44px;
	margin-bottom: 17px;
	background: #344282;
	font-size: 1.05rem;
}

.help-contact-card h2 {
	margin: 7px 0 9px;
	color: #fff;
	font-size: 1.18rem;
}

.help-contact-card p {
	margin: 0 0 18px;
	color: #bec6e4;
	font-size: .77rem;
	line-height: 1.65;
}

.help-contact-card .primary-button {
	width: 100%;
	text-decoration: none;
}

.help-contact-note {
	display: block;
	padding: 10px 12px;
	border: 1px dashed #5562a1;
	border-radius: 9px;
	color: #bdc6e8;
	font-size: .74rem;
}

.help-privacy-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 19px;
	font-size: .75rem;
	font-weight: 700;
}

@media (max-width: 900px) {
	.help-shortcuts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.help-layout {
		grid-template-columns: 1fr;
	}

	.help-contact-card {
		position: static;
	}
}

@media (max-width: 640px) {
	.help-page {
		padding-top: 32px;
		padding-bottom: 55px;
	}

	.help-hero {
		min-height: 0;
		padding: 24px 19px;
	}

	.help-hero-icon {
		width: 62px;
		height: 62px;
		flex-basis: 62px;
		border-radius: 18px;
		font-size: 1.4rem;
	}

	.help-hero p {
		font-size: .8rem;
		line-height: 1.55;
	}

	.help-shortcuts {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.help-shortcuts > a {
		padding: 12px;
	}

	.help-faq-card {
		padding-inline: 17px;
		border-radius: 14px;
	}

	.help-topic {
		padding-block: 21px 23px;
	}

	.help-topic details p {
		margin-right: 0;
	}

	.help-contact-card {
		padding: 21px 18px;
		border-radius: 14px;
	}
}

/* Orders and legal pages */
.orders-page {
	max-width: 1180px;
}

.orders-heading p {
	margin: 8px 0 0;
	color: var(--store-muted);
	font-size: .88rem;
}

.orders-continue-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 15px;
	border: 1px solid #38437e;
	border-radius: 10px;
	background: #151b4b;
	color: #e2e7ff;
	font-size: .8rem;
	font-weight: 750;
	transition: border-color .2s, background .2s, transform .2s;
}

.orders-continue-link:hover {
	border-color: #7080ff;
	background: #202860;
	color: #fff;
	transform: translateY(-1px);
}

.orders-summary-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 22px;
}

.orders-summary-card {
	display: grid;
	gap: 8px;
	min-height: 132px;
	padding: 20px 22px;
	border: 1px solid var(--store-line);
	border-radius: 15px;
	background: linear-gradient(145deg, #1a2150, #20285b);
	box-shadow: 0 10px 24px rgb(0 0 0 / 13%);
}

.orders-summary-card span {
	color: #9da8d8;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.orders-summary-card span i {
	margin-right: 7px;
	color: #8b99ff;
}

.orders-summary-card strong {
	color: #fff;
	font-size: 2rem;
	line-height: 1;
}

.orders-summary-card small {
	color: #8994c3;
	font-size: .7rem;
}

.orders-summary-card-highlight {
	border-color: rgb(92 108 255 / 42%);
	background: linear-gradient(145deg, #252f78, #30358a);
}

.orders-summary-card-highlight span i {
	color: #ffd16c;
}

.orders-summary-card-paid {
	border-color: rgb(67 213 159 / 35%);
	background: linear-gradient(145deg, #173f4a, #1d4f54);
}

.orders-summary-card-paid span i {
	color: #62e6b1;
}

.orders-panel,
.order-detail-card {
	padding: 24px;
	border: 1px solid var(--store-line);
	border-radius: 16px;
	background: var(--store-card);
	box-shadow: 0 12px 30px rgb(0 0 0 / 14%);
}

.orders-panel-heading,
.order-detail-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 17px;
}

.orders-panel-heading h2,
.order-detail-heading h2 {
	margin: 5px 0 0;
	color: #fff;
	font-size: 1.12rem;
}

.orders-count {
	padding: 5px 9px;
	border-radius: 999px;
	background: #2b346d;
	color: #cbd2f7;
	font-size: .68rem;
	font-weight: 750;
}

.orders-table {
	--bs-table-bg: transparent;
	--bs-table-color: #edf0ff;
	--bs-table-striped-bg: rgb(255 255 255 / 3%);
	--bs-table-striped-color: #edf0ff;
	--bs-table-border-color: #333d74;
}

.orders-table .table {
	margin-bottom: 0;
	color: #edf0ff;
}

.orders-table .table > thead > tr > th {
	padding-block: 10px;
	border-bottom-color: #46518c;
	background: transparent;
	color: #9fa9d1;
	font-size: .67rem;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.orders-table .table > tbody > tr > td {
	padding-block: 13px;
	border-color: #30396e;
	vertical-align: middle;
}

.orders-table .table > tbody > tr:hover > td {
	background: rgb(111 127 255 / 8%);
}

.orders-table .nav-pages {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	min-height: 48px;
	padding: 8px 0 0;
}

.orders-table .nav-pages > span {
	margin-right: auto;
	color: #9fa9d1;
	font-size: .72rem;
	font-weight: 700;
}

.orders-table .nav-pages .pagination {
	display: inline-flex;
	flex: 0 0 auto;
	width: auto;
	margin: 0;
	vertical-align: middle;
}

.orders-table .nav-pages .page-link {
	min-width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-color: #3a467f;
	background: #1b2354;
	color: #cbd3fa;
	font-size: .75rem;
	box-shadow: none;
}

.orders-table .nav-pages .page-item.active .page-link {
	border-color: #7788ff;
	background: #6475ef;
	color: #fff;
}

.orders-table .nav-pages .page-item:not(.active) .page-link:hover {
	border-color: #7788ff;
	background: #293574;
	color: #fff;
}

.orders-table .nav-pages .page-goto {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #9fa9d1;
	font-size: .72rem;
	white-space: nowrap;
}

.orders-table .nav-pages .page-goto .form-control {
	width: 56px;
	height: 34px;
	min-height: 34px;
	padding: 4px 7px;
	border-color: #3a467f;
	background: #151b46;
	color: #f2f4ff;
	text-align: center;
}

.orders-table .nav-pages .page-goto .input-number-fix {
	height: 34px !important;
	min-height: 34px !important;
	margin: 0 !important;
}

@media (max-width: 640px) {
	.orders-table .nav-pages {
		align-items: center;
		justify-content: flex-start;
		gap: 9px;
	}

	.orders-table .nav-pages > span {
		flex: 1 0 100%;
		margin-right: 0;
	}

	.orders-table .nav-pages .page-goto {
		margin-left: auto;
	}
}

.orders-order-number {
	display: block;
	max-width: 190px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #f4f5ff;
	font-size: .79rem;
	font-weight: 750;
}

.orders-order-stack {
	display: grid;
	min-width: 0;
	gap: 4px;
}

.orders-order-date {
	display: block;
	margin-top: 4px;
	color: #8994c3;
	font-size: .68rem;
}

.orders-game-cell {
	display: flex;
	align-items: center;
	gap: 9px;
}

.orders-game-icon {
	width: 31px;
	height: 31px;
	display: grid;
	place-items: center;
	flex: 0 0 31px;
	border-radius: 9px;
	background: #303a79;
	color: #9eabff;
	font-size: .75rem;
}

.orders-game-cell strong,
.orders-game-cell small {
	display: block;
}

.orders-game-cell strong {
	color: #f0f2ff;
	font-size: .77rem;
}

.orders-game-cell small {
	margin-top: 3px;
	color: #929bc2;
	font-size: .67rem;
}

.orders-amount {
	color: #fff;
	font-size: .82rem;
}

.orders-amount small {
	color: #9ca6d0;
	font-size: .66rem;
}

.orders-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 9px;
	border-radius: 999px;
	font-size: .67rem;
	font-weight: 750;
	white-space: nowrap;
}

.orders-status i {
	font-size: .6rem;
}

.orders-status-success {
	background: rgb(51 205 147 / 15%);
	color: #67e7b4;
}

.orders-status-danger {
	background: rgb(255 105 128 / 14%);
	color: #ff9bab;
}

.orders-status-warning {
	background: rgb(255 196 83 / 15%);
	color: #ffd275;
}

.orders-status-info {
	background: rgb(107 128 255 / 15%);
	color: #aab5ff;
}

.order-detail-card {
	margin-top: 18px;
	border-color: rgb(92 108 255 / 38%);
	background: linear-gradient(145deg, #20285d, #1b224f);
}

.order-detail-close {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border: 1px solid #3d4883;
	border-radius: 9px;
	background: transparent;
	color: #b8c0e8;
	cursor: pointer;
}

.order-detail-close:hover {
	border-color: #8190ff;
	background: #2c3671;
	color: #fff;
}

.order-detail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px 24px;
}

.order-detail-grid > div,
.order-player-data {
	display: grid;
	gap: 6px;
}

.order-detail-grid span,
.order-player-data > span {
	color: #929dc8;
	font-size: .68rem;
	font-weight: 750;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.order-detail-grid strong {
	color: #f6f7ff;
	font-size: .8rem;
	font-weight: 650;
}

.order-detail-total {
	color: #7fe8bd !important;
	font-size: 1rem !important;
}

.order-player-data {
	margin-top: 20px;
	padding-top: 17px;
	border-top: 1px solid #343e75;
}

.order-player-data code {
	padding: 10px 12px;
	overflow-wrap: anywhere;
	border: 1px solid #364176;
	border-radius: 9px;
	background: #131943;
	color: #cbd3ff;
	font-size: .72rem;
}

.orders-empty-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 350px;
	padding: 42px 24px;
	border: 1px solid var(--store-line);
	border-radius: 17px;
	background: linear-gradient(145deg, #1a2150, #20285b);
	box-shadow: 0 12px 30px rgb(0 0 0 / 14%);
	text-align: center;
}

.orders-empty-icon {
	width: 62px;
	height: 62px;
	display: grid;
	place-items: center;
	margin-bottom: 18px;
	border: 1px solid #46518c;
	border-radius: 18px;
	background: #2a3470;
	color: #a9b5ff;
	font-size: 1.3rem;
}

.orders-empty-icon-accent {
	background: #263e70;
	color: #6fe5b5;
}

.orders-empty-card h2 {
	margin: 0;
	color: #fff;
	font-size: 1.2rem;
}

.orders-empty-card p {
	max-width: 440px;
	margin: 8px 0 20px;
	color: var(--store-muted);
	font-size: .8rem;
	line-height: 1.6;
}

.orders-empty-card .primary-button {
	text-decoration: none;
}

.legal-page {
	padding-top: 48px;
	padding-bottom: 80px;
}

.legal-hero {
	max-width: 780px;
	margin-bottom: 28px;
}

.legal-hero h1 {
	margin: 8px 0 10px;
	color: #fff;
	font-size: clamp(2.1rem, 5vw, 3.3rem);
	letter-spacing: -.055em;
}

.legal-hero p {
	max-width: 680px;
	margin: 0;
	color: #c0c8e8;
	font-size: .98rem;
	line-height: 1.65;
}

.legal-hero small {
	display: block;
	margin-top: 15px;
	color: #8792bd;
	font-size: .72rem;
}

.legal-layout {
	display: grid;
	grid-template-columns: minmax(220px, .65fr) minmax(0, 1.8fr);
	align-items: start;
	gap: 24px;
}

.legal-summary {
	position: sticky;
	top: 130px;
	padding: 22px;
	border: 1px solid #38437d;
	border-radius: 15px;
	background: linear-gradient(145deg, #1e285d, #252f68);
}

.legal-summary-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	margin-bottom: 15px;
	border-radius: 12px;
	background: #344282;
	color: #aebaff;
}

.legal-summary > strong {
	color: #fff;
	font-size: .92rem;
}

.legal-summary p {
	margin: 9px 0 17px;
	color: #b3bcdf;
	font-size: .76rem;
	line-height: 1.6;
}

.legal-summary a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #9eacff;
	font-size: .73rem;
	font-weight: 750;
}

.legal-content {
	padding: 30px 34px;
	border: 1px solid var(--store-line);
	border-radius: 16px;
	background: #171d49;
}

.legal-content section {
	padding-bottom: 23px;
	margin-bottom: 23px;
	border-bottom: 1px solid #30396e;
}

.legal-content section:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.legal-content h2 {
	margin: 0 0 9px;
	color: #f4f5ff;
	font-size: 1.02rem;
}

.legal-content p {
	margin: 0;
	color: #b9c2df;
	font-size: .82rem;
	line-height: 1.75;
}

.legal-contact address {
	display: grid;
	gap: 5px;
	margin: 10px 0 0;
	color: #bac4e4;
	font-size: .8rem;
	font-style: normal;
}

.legal-contact address strong {
	color: #fff;
}

.legal-contact address a {
	color: #9eacff;
}

@media (max-width: 900px) {
	.legal-layout {
		grid-template-columns: 1fr;
	}

	.legal-summary {
		position: static;
	}

	.order-detail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) and (min-width: 641px) {
	.orders-summary-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.orders-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.orders-continue-link {
		width: 100%;
		justify-content: center;
	}

	.orders-summary-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.orders-summary-card {
		min-height: 110px;
		padding: 17px 18px;
	}

	.orders-panel,
	.order-detail-card {
		padding: 18px 14px;
		border-radius: 14px;
	}

	.orders-panel-heading {
		align-items: flex-start;
	}

	.orders-table .table-card-view {
		gap: 10px;
	}

	.orders-table .card {
		border-color: #37417b;
		background: #171d4b;
		color: #edf0ff;
	}

	.order-detail-heading h2 {
		font-size: .95rem;
	}

	.order-detail-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.orders-empty-card {
		min-height: 300px;
		padding-inline: 17px;
	}

	.legal-page {
		padding-top: 32px;
		padding-bottom: 55px;
	}

	.legal-content {
		padding: 23px 18px;
		border-radius: 14px;
	}

	.legal-content h2 {
		font-size: .95rem;
	}

	.legal-content p {
		font-size: .78rem;
	}
}
