@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

body {
  font-family: var(--font-body);
}

h1, h2, h3,
.section-title,
.product-title {
  font-family: var(--font-heading);
  font-weight: 800;
}

* {
	scrollbar-width: thin;
	scrollbar-color: #111111 #000000;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #000;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #111, #000);
	border-radius: 20px;
}

   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;
      appearance: textfield;
   }

:root {
	--bg2: #0b0f16;
	--glass: rgba(10, 14, 22, .55);
	--glass2: rgba(14, 18, 28, .62);
	--border: rgba(255, 255, 255, .08);
	--text: #e7eaf0;
	--muted: rgba(231, 234, 240, .70);
	--muted2: rgba(231, 234, 240, .55);
	--shadow: 0 20px 60px rgba(0, 0, 0, .55);
	--shadow2: 0 12px 40px rgba(0, 0, 0, .45);
	--radius: 14px;
	--radius2: 18px;
	--grad: linear-gradient(90deg, #8b5cf6, #22d3ee, #a78bfa);
	--grad2: linear-gradient(135deg, rgba(139, 92, 246, .25), rgba(34, 211, 238, .18));
	--btn: rgba(255, 255, 255, .08);
	--btnHover: rgba(255, 255, 255, .12);
	--focus: rgba(34, 211, 238, .35);
	--max: 1180px;
}

* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: black;
	color: var(--text);
	overflow-x: hidden;
}

.nx-nav-wrap {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-image: linear-gradient(90deg, #00000000, orange, #00000000) 1;
	border-bottom-style: solid;
	border-width: 2px;
}

.nx-nav {
	max-width: var(--max);
	margin: 0 auto;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: space-between;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
}

.logo {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background:
		radial-gradient(circle at 30% 30%, rgba(34, 211, 238, .85), transparent 55%),
		radial-gradient(circle at 70% 60%, rgba(139, 92, 246, .85), transparent 55%),
		linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
	position: relative;
	overflow: hidden;
}

.logo:after {
	content: "";
	position: absolute;
	inset: -40%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
	transform: rotate(25deg) translateX(-30%);
	animation: shimmer 4.5s infinite;
	opacity: .8;
}

@keyframes shimmer {
	0% {
		transform: rotate(25deg) translateX(-55%)
	}

	55% {
		transform: rotate(25deg) translateX(55%)
	}

	100% {
		transform: rotate(25deg) translateX(55%)
	}
}

.brand span {
	font-weight: 700;
	letter-spacing: .2px;
}

.badge {
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 999px;
	border: 1px solid rgba(34, 211, 238, .25);
	color: rgba(34, 211, 238, .95);
	background: rgba(34, 211, 238, .08);
	margin-left: 6px;
}

.nx-nav_ left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.nx-nav-left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.nx-nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: 8px;
}

.nx-nav-item {
	position: relative;
}

.nx-nav-btn {
	border: 1px solid transparent;
	background: transparent;
	color: var(--muted);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 10px;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: .15s ease;
	user-select: none;
}

.nx-nav-btn:hover {
	color: var(--text);
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .08);
}

.nx-nav-btn[aria-expanded="true"] {
	color: var(--text);
	background: rgba(255, 255, 255, .08);
	border-color: rgba(34, 211, 238, .18);
	box-shadow: 0 0 0 3px rgba(34, 211, 238, .10);
}

.chev {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-top: 0;
	margin-left: auto;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02) 62%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 8px 18px rgba(0, 0, 0, .20);
	opacity: .96;
	transition: transform .22s cubic-bezier(.16, 1, .3, 1), background .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.chev::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translate(-50%, -60%) rotate(45deg);
	transform-origin: center;
	transition: transform .22s cubic-bezier(.16, 1, .3, 1);
}

.nx-nav-btn:hover .chev,
.nx-nav-btn:focus-visible .chev,
.nx-nav-btn[aria-expanded="true"] .chev {
	background: radial-gradient(circle at 30% 30%, rgba(163, 230, 53, .22), rgba(99, 102, 241, .10) 68%, rgba(255, 255, 255, .03));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 10px 22px rgba(0, 0, 0, .24), 0 0 0 1px rgba(163, 230, 53, .10);
}

.nx-nav-btn[aria-expanded="true"] .chev::before {
	transform: translate(-50%, -40%) rotate(225deg);
}

.nx-nav-right {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 240px;
	justify-content: flex-end;
}

.pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, .05);
	color: var(--muted);
	font-size: 13px;
	cursor: pointer;
	transition: .15s ease;
}

.pill:hover {
	background: rgba(255, 255, 255, .08);
	color: var(--text);
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(34, 211, 238, .9);
	box-shadow: 0 0 0 4px rgba(34, 211, 238, .12);
}

.link {
	color: var(--muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 10px;
	border-radius: 10px;
	transition: .15s ease;
	border: 1px solid transparent;
}

.link:hover {
	color: var(--text);
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .08);
}

.cta {
	text-decoration: none;
	color: #061018;
	font-weight: 800;
	font-size: 14px;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--grad);
	box-shadow: 0 16px 40px rgba(34, 211, 238, .08), 0 16px 40px rgba(139, 92, 246, .10);
	transition: transform .15s ease, filter .15s ease;
	white-space: nowrap;
}

.cta:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
}

.cta:active {
	transform: translateY(0px);
}

.menu {
	position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 820px;
    max-width: calc(100vw - 28px);
    background: linear-gradient(181deg, rgb(0 0 0), rgb(0 0 0));
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
    transform-origin: top left;
    transform: translateY(6px) scale(.98);
    opacity: 0;
    transition: .16s ease;
    overflow: hidden;
    border-image: linear-gradient(90deg, #00000000, orange, #00000000) 1;
    border-bottom-style: solid;
    border-width: 2px;

}

.menu.open {
	display: block;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.menu:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(800px 300px at 10% 0%, rgba(34, 211, 238, .13), transparent 60%),
		radial-gradient(800px 300px at 90% 0%, rgba(139, 92, 246, .14), transparent 60%);
	pointer-events: none;
}

.menu-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 14px;
}

.menu-col {
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .04);
	border-radius: 14px;
	padding: 14px;
	overflow: hidden;
}

.menu-title {
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .2px;
	color: rgba(231, 234, 240, .90);
	margin: 0 0 10px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu-title small {
	font-weight: 700;
	font-size: 12px;
	color: rgba(34, 211, 238, .85);
	border: 1px solid rgba(34, 211, 238, .22);
	background: rgba(34, 211, 238, .08);
	padding: 4px 8px;
	border-radius: 999px;
}

.menu-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.menu-card {
	display: flex;
	gap: 10px;
	padding: 10px;
	border-radius: 12px;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .12);
	transition: .15s ease;
	min-height: 66px;
}

.menu-card:hover {
	border-color: rgba(34, 211, 238, .22);
	background: rgba(255, 255, 255, .06);
	transform: translateY(-1px);
}

.ic {
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: var(--grad2);
	flex: 0 0 auto;
}

.menu-card b {
	display: block;
	color: var(--text);
	font-size: 13px;
	margin-bottom: 2px;
	letter-spacing: .1px;
}

.menu-card p {
	margin: 0;
	color: var(--muted2);
	font-size: 12px;
	line-height: 1.25;
}

.menu-side {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.side-hero {
	border-radius: 14px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .10);
	background:
		radial-gradient(420px 200px at 20% 0%, rgba(34, 211, 238, .18), transparent 60%),
		radial-gradient(420px 200px at 90% 0%, rgba(139, 92, 246, .22), transparent 60%),
		rgba(255, 255, 255, .04);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
	overflow: hidden;
	position: relative;
}

.side-hero h4 {
	margin: 0 0 6px 0;
	font-size: 13px;
	letter-spacing: .2px;
}

.side-hero p {
	margin: 0 0 10px 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.35;
}

.side-hero a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--text);
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
	padding: 9px 12px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 13px;
	transition: .15s ease;
}

.side-hero a:hover {
	background: rgba(255, 255, 255, .12);
}

.tiny {
	display: flex;
	gap: 10px;
}

.tiny a {
	flex: 1;
	text-decoration: none;
	color: var(--muted);
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 10px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	transition: .15s ease;
	text-align: center;
}

.tiny a:hover {
	background: rgba(255, 255, 255, .08);
	color: var(--text);
	border-color: rgba(34, 211, 238, .18);
}

.hamburger {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 0px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .05);
	cursor: pointer;
	transition: .15s ease;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-direction: column;
}

.hamburger:hover {
	background: rgba(255, 255, 255, .08);
}

.hamburger span {
	width: 18px;
	height: 2px;
	background: rgba(231, 234, 240, .85);
	border-radius: 99px;
	transition: .15s ease;
}

.overlay {
	position: fixed;
	inset: 0;
	background: rgb(0 0 0 / 85%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 0;
	pointer-events: none;
	transition: .18s ease;
	z-index: 60;
}

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

.drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: min(420px, 92vw);
	border-left: 1px solid rgba(255, 255, 255, .10);
	box-shadow: var(--shadow);
	transform: translateX(110%);
	transition: .2s ease;
	z-index: 70;
	display: flex;
	flex-direction: column;
}

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

.drawer-top {
	padding: 14px 14px 10px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.drawer-top .brand {
	min-width: 0;
}

.close {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .06);
	cursor: pointer;
	transition: .15s ease;
	color: var(--text);
	font-weight: 900;
	font-size: 16px;
}

.close:hover {
	background: rgb(255 255 255);
}

.drawer-body {
	padding-top: 0px;
	padding-right: 14px;
	padding-bottom: 18px;
	padding-left: 14px;
	overflow: auto;
}

.m-section {
	margin: 10px 0 12px;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .04);
	border-radius: 14px;
	overflow: hidden;
}

.m-head {
	width: 100%;
	padding: 12px 12px;
	border: 0;
	background: transparent;
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-weight: 800;
	font-size: 13px;
}

.m-head span {
	color: var(--muted);
	font-weight: 700;
	font-size: 12px;
}

.m-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .2s ease;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.m-panel.open {
	max-height: 560px;
}

.m-links {
	display: flex;
	flex-direction: column;
	padding: 10px;
	gap: 8px;
}

.m-links a {
	display: flex;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .10);
	padding: 10px;
	border-radius: 12px;
	transition: .15s ease;
}

.m-links a:hover {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(34, 211, 238, .18);
}

.m-links a b {
	font-size: 13px;
}

.m-links a small {
	color: var(--muted2);
	display: block;
	margin-top: 2px;
}

.drawer-cta {
	margin-top: 12px;
	display: flex;
	gap: 10px;
}

.drawer-cta a {
	flex: 1;
	text-align: center;
	text-decoration: none;
	font-weight: 900;
	padding: 12px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .06);
	color: var(--text);
	transition: .15s ease;
}

.drawer-cta a:hover {
	background: rgba(255, 255, 255, .10);
}

.drawer-cta a.primary {
	border: 0;
	background: var(--grad);
	color: #061018;
}

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

	.nx-nav-right .pill,
	.nx-nav-right .link {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.nx-nav-right {
		min-width: auto;
	}

	.brand {
		min-width: auto;
	}
}

.hero {
	max-width: var(--max);
	margin: 40px auto 0;
	padding: 0 18px 80px;
}

.hero h1 {
	font-size: clamp(28px, 4vw, 52px);
	line-height: 1.05;
	margin: 30px 0 10px;
	letter-spacing: -.02em;
}

.hero p {
	margin: 0;
	color: var(--muted);
	max-width: 70ch;
	line-height: 1.5;
}

.card-demo {
	margin-top: 22px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .04);
	border-radius: 18px;
	padding: 18px;
	box-shadow: var(--shadow2);
}

.vchp-summary {
	margin-top: 12px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .05);
	border-radius: 12px;
}

.vchp-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 13px;
	color: rgba(255, 255, 255, .65);
	margin: 6px 0;
}

.vchp-row strong {
	color: #ffffff;
	font-weight: 700;
}

.vchp-row#vchDiscountRow strong,
.vchp-row .vchp-discount {
	color: #a3e635;
}

.vchp-total {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed rgba(255, 255, 255, .14);
	font-size: 14px;
}

.vchp-total span {
	color: rgba(255, 255, 255, .85);
}

.vchp-total strong {
	color: #a3e635;
	font-weight: 800;
}

.ffpop-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.ffpop-modal {
	width: 100%;
	max-width: 420px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	font-family: Arial, sans-serif;
	animation: ffpopFade .2s ease;
}

.ffpop-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	border-bottom: 1px solid #e5e7eb;
}

.ffpop-title {
	font-size: 15px;
	font-weight: bold;
}

.ffpop-close {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #666;
}

.ffpop-body {
	padding: 14px;
	font-size: 14px;
}

.ffpop-image {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 10px;
}

.ffpop-list {
	padding-left: 18px;
	margin: 0;
}

.ffpop-list li {
	margin-bottom: 6px;
	line-height: 1.5;
}

.ffpop-footer {
	padding: 10px 14px;
	text-align: right;
	border-top: 1px solid #e5e7eb;
}

.ffpop-btn-close,
.ffpop-btn-open {
	background: #2563eb;
	color: #fff;
	border: none;
	padding: 6px 14px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 13px;
}

.ffpop-btn-close:hover,
.ffpop-btn-open:hover {
	opacity: .9;
}

@keyframes ffpopFade {
	from {
		transform: scale(.95);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.vc-user-icon {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vc-user-icon i {
	font-size: 20px;
	line-height: 1;
}

.order-container {
	max-width: 1240px;
	margin: 0 auto;
	padding-right: 20px;
	padding-left: 20px;
}

.order-layout {
	display: grid;
	grid-template-columns: minmax(330px, 360px) minmax(0, 1fr);
	align-items: start;
	gap: 15px;
	min-width: 0;
}

.game-sidebar {
	border-radius: 12px;
	overflow: hidden;
	height: fit-content;
	position: sticky;
	top: 90px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	min-width: 0;
}

.game-sidebar .game-banner {
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.game-sidebar .game-info {
	padding: 15px;
}

.game-sidebar h5 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #ffffff;
}

.game-sidebar .game-desc {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
}

.product-related {
	background: #fff;
	border-radius: 12px;
	padding: 15px;
	margin-top: 15px;
}

.product-related h6 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #000000;
}

.product-item {
	display: flex;
	align-items: center;
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 8px;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
}

.product-item:hover {
	background: #f5f5f5;
}

.product-item img {
	width: 45px;
	height: 45px;
	border-radius: 8px;
	margin-right: 12px;
}

.product-item-info h6 {
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 3px 0;
	color: #ffffff;
}

.product-item-info p {
	font-size: 11px;
	color: #999;
	margin: 0;
}

.game-sidebar.vchx-sidebar {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	align-self: start;
	gap: 16px;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.vchx-game-card {
	width: 100%;
	max-width: 100%;
	border-radius: 16px;
	padding-top: 22px;
    padding-right: 22px;
    padding-bottom: 10px;
    padding-left: 22px;
	background: radial-gradient(circle at 8% 0%,rgba(255,204,0,.16),transparent 34%),radial-gradient(circle at 92% 30%,rgba(124,58,237,.24),transparent 38%),linear-gradient(135deg,rgba(22,22,24,.96) 0%,rgba(12,14,22,.96) 100%);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
	overflow: hidden;
}

.vchx-game-header {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.vchx-game-cover {
	flex: 0 0 76px;
	width: 76px;
	height: 76px;
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.vchx-game-head-main {
	flex: 1;
	min-width: 0;
}

.vchx-game-title {
	margin-bottom: 8px;
	font-size: 20px;
	line-height: 1.28;
	overflow-wrap: anywhere;
}

.vchx-game-badge {
	width: fit-content;
	max-width: 100%;
	white-space: normal;
	line-height: 1.25;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.vchx-game-body {
	min-width: 0;
	max-width: 100%;
	margin-top: 16px;
	padding: 14px 14px 14px 16px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.vchx-game-body * {
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
	white-space: normal !important;
}

.vchx-game-body p {
	margin: 0 0 8px;
}

.vchx-game-body ol,
.vchx-game-body ul {
	margin: 0 !important;
	padding-left: 26px !important;
	list-style-position: outside !important;
}

.vchx-game-body li {
	margin: 0 0 8px;
	padding-left: 2px;
	line-height: 1.6;
}

.vchx-game-body li:last-child {
	margin-bottom: 0;
}

.vchx-game-body img,
.vchx-game-body iframe,
.vchx-game-body table {
	max-width: 100%;
	height: auto;
}

.product-related.vchx-related-card {
	width: 100%;
	max-width: 100%;
	margin-top: 0;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.product-related.vchx-related-card .product-item {
	min-width: 0;
	gap: 12px;
	padding: 9px;
	border-radius: 12px;
	margin-bottom: 6px;
}

.product-related.vchx-related-card .product-item-info {
	min-width: 0;
}

.product-related.vchx-related-card .product-item-info h6,
.product-related.vchx-related-card .product-item-info p {
	overflow-wrap: anywhere;
}

.order-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
	min-width: 0;
}

.section-card {
	position: relative;
	isolation: isolate;
	background:
		radial-gradient(ellipse 80% 55% at 0% 0%,   rgba(34, 211, 238, .13), transparent 55%),
		radial-gradient(ellipse 75% 55% at 100% 100%, rgba(139, 92, 246, .16), transparent 55%),
		#0e1218;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(34, 211, 238, .10);
	box-shadow:
		0 10px 36px rgba(0, 0, 0, .60),
		inset 0 1px 0 rgba(34, 211, 238, .12);
	width: 100%;
	max-width: 100%;
}

.section-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent,
		rgba(34, 211, 238, .55) 40%,
		rgba(139, 92, 246, .45) 65%,
		transparent);
	pointer-events: none;
	z-index: 0;
}

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

.section-header {
	border-bottom: 1px solid rgba(253, 184, 19, 0.25);
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-header .step-number {
	background: #ffffff;
	color: #000000;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
}

.section-header h5 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	min-width: 0;
	line-height: 1.3;
}

.section-body {
	padding: 20px;
}

.form-control-modern {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 14px;
	transition: all 0.2s;
	background: rgba(255, 255, 255, 0.06);
	color: #e8e8e8;
}

.form-control-modern::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.form-control-modern:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: #FDB813;
	box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.15);
	outline: none;
	color: #fff;
}

.nominal-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
	width: 100%;
}

.nominal-scroll-area {
	max-height: min(430px, 58vh);
	overflow-y: auto;
	overflow-x: hidden;
	margin-right: -8px;
	padding: 2px 8px 2px 2px;
	scrollbar-gutter: stable;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.nominal-scroll-area::-webkit-scrollbar {
	width: 7px;
	height: 7px;
}

.nominal-scroll-area::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 999px;
}

.nominal-scroll-area::-webkit-scrollbar-thumb {
	background: #FDB813;
	border-radius: 999px;
}

.nominal-grid > div {
	min-width: 0;
	position: relative;
}

.nominal-grid .col-12 {
	grid-column: 1 / -1;
}

.radio-nominale-new {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.radio-nominale-new + label {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 16px 15px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
	text-align: left;
	position: relative;
	min-height: 108px;
	height: 100%;
	margin: 0;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.radio-nominale-new + label::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	box-shadow: inset 0 0 0 0 rgba(253, 184, 19, 0);
	transition: box-shadow .18s ease;
}

.radio-nominale-new + label:hover {
	border-color: rgba(253, 184, 19, 0.5);
	background: linear-gradient(180deg, rgba(253, 184, 19, 0.1) 0%, rgba(253, 184, 19, 0.05) 100%);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-1px);
}

.radio-nominale-new + label:active {
	transform: translateY(0);
}

.radio-nominale-new:focus-visible + label {
	border-color: #FDB813;
	box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.22), 0 8px 20px rgba(15, 23, 42, 0.08);
	outline: none;
}

.radio-nominale-new:checked + label {
	border-color: #FDB813;
	background: linear-gradient(180deg, rgba(253, 184, 19, 0.18) 0%, rgba(253, 184, 19, 0.08) 100%);
	box-shadow: 0 0 0 2px rgba(253, 184, 19, 0.35), 0 10px 24px rgba(253, 184, 19, 0.12);
	transform: translateY(-1px);
}

.radio-nominale-new:checked + label::before {
	content: '✓';
	position: absolute;
	top: 10px;
	right: 10px;
	background: #FDB813;
	color: #ffffff;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
	z-index: 2;
}

.radio-nominale-new:checked + label::after {
	box-shadow: inset 4px 0 0 #FDB813;
}

.nominal-label strong {
	display: block;
	width: 100%;
	padding-right: 26px;
	font-size: 14px;
	font-weight: 700;
	color: #e8e8e8;
	margin: 0;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.nominal-label .price {
	display: block;
	width: 100%;
	font-size: 13px;
	font-weight: 700;
	color: #FDB813;
	line-height: 1.35;
}

.nominal-label .price strike {
	color: rgba(255, 255, 255, 0.35);
	font-size: 12px;
	font-weight: 500;
}

/* ── Eneba-style nominal + offers ── */
.nom-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 12px;
}
.nom-card {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: left;
	padding: 14px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,.1);
	background: linear-gradient(180deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.03) 100%);
	color: #e8e8e8;
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease, transform .18s ease;
	min-height: 88px;
}
.nom-card:hover { border-color: rgba(253,184,19,.5); transform: translateY(-1px); }
.nom-card.is-active {
	border-color: #FDB813;
	background: linear-gradient(180deg, rgba(253,184,19,.18) 0%, rgba(253,184,19,.08) 100%);
	box-shadow: 0 0 0 2px rgba(253,184,19,.35);
}
.nom-title { font-size: 14px; font-weight: 700; line-height: 1.3; }
.nom-from { font-size: 13px; font-weight: 800; color: #FDB813; }
.nom-count { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 600; }

.offers-wrap { margin-top: 16px; }
.offers-panel { display: flex; flex-direction: column; gap: 10px; }
.offers-head { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 2px; }
.offers-head i { color: #FDB813; }
.offer-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.04);
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease;
}
.offer-row:hover { border-color: rgba(253,184,19,.45); background: rgba(253,184,19,.06); }
.radio-nominale-new.offer-radio:checked + .offer-ava { box-shadow: 0 0 0 2px #FDB813; }
.offer-row:has(.offer-radio:checked) { border-color: #FDB813; box-shadow: 0 0 0 2px rgba(253,184,19,.3); background: rgba(253,184,19,.08); }
.offer-ava {
	position: relative;
	flex: 0 0 auto;
	width: 38px; height: 38px;
	border-radius: 50%;
	overflow: hidden;
	font-size: 14px; font-weight: 800; text-transform: uppercase;
	background: rgba(163,230,53,.14); color: #a3e635;
}
.offer-ava::after {
	content: attr(data-initial);
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
}
.offer-ava img {
	position: absolute; inset: 0;
	z-index: 1;
	width: 100%; height: 100%;
	object-fit: cover;
	border-radius: 50%;
	background: #0f111a;
}
.offer-meta { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.offer-name { font-size: 14px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.offer-name-txt { min-width: 0; }
.offer-tag { font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 999px; }
.offer-tag-official { background: rgba(34,211,238,.15); color: #22d3ee; border: 1px solid rgba(34,211,238,.35); }
.offer-tag-low { background: rgba(163,230,53,.15); color: #a3e635; border: 1px solid rgba(163,230,53,.35); }
.offer-name .vch-sbadge { font-size: 10px; padding: 2px 8px 2px 7px; gap: 5px; }
.offer-name .vch-sbadge i { font-size: 9px; }
.offer-sub { font-size: 11.5px; color: rgba(255,255,255,.55); font-weight: 600; }
.offer-right { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }
.offer-price { font-size: 14px; font-weight: 800; color: #FDB813; text-align: right; line-height: 1.2; }
.offer-price strike { color: rgba(255,255,255,.35); font-size: 11px; font-weight: 500; }
@media (max-width: 560px) {
	.offer-row { gap: 10px; padding: 10px 12px; }
	.offer-ava { width: 34px; height: 34px; font-size: 13px; }
	.offer-meta { gap: 1px; overflow: hidden; }
	.offer-name { flex-wrap: wrap; row-gap: 3px; font-size: 13px; min-width: 0; max-width: 100%; }
	.offer-name-txt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
	.offer-tag { flex: 0 0 auto; font-size: 9px; padding: 2px 6px; }
	.offer-sub { font-size: 11px; }
	.offer-right { gap: 8px; }
	.offer-price { font-size: 13px; }
}

.voucher-input-wrapper {
	display: flex;
	gap: 10px;
	background: transparent;
	border: 1px solid rgba(253, 184, 19, 0.25);
	padding: 15px;
	border-radius: 10px;
	align-items: center;
}

.voucher-input-wrapper input {
	flex: 1;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.07);
	border-radius: 8px;
	padding: 10px 15px;
	color: #e8e8e8;
}

.voucher-input-wrapper input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.voucher-input-wrapper .btn {
	background: #FDB813;
	border: none;
	color: #000000ff;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 8px;
	white-space: nowrap;
}

.payment-accordion {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.payment-accordion .card {
	border: none !important;
	border-radius: 16px !important;
	margin-bottom: 0;
	overflow: hidden;
	background: #ffffff !important;
	box-shadow:
		0 2px 8px rgba(0, 0, 0, .14),
		0 1px 3px rgba(0, 0, 0, .08);
	transition: box-shadow .22s ease;
}

.payment-accordion .card:hover {
	box-shadow:
		0 6px 22px rgba(0, 0, 0, .18),
		0 2px 6px rgba(0, 0, 0, .10);
}

.payment-accordion .card-header {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border: none !important;
	border-bottom: 1px solid rgba(15, 23, 42, .08) !important;
	padding: 0 !important;
	border-radius: 16px 16px 0 0 !important;
	transition: background .2s ease;
}

.payment-accordion .card-header:has(> h2 > .btn-link.collapsed) {
	border-bottom-color: transparent !important;
	border-radius: 16px !important;
}

.payment-accordion .btn-link {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 18px 22px;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	color: #0f172a;
	font-weight: 800;
	font-size: 15px;
	letter-spacing: .5px;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: normal;
	text-align: left;
	transition: background .2s ease;
}

.payment-accordion .btn-link:hover {
	background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%) !important;
	text-decoration: none !important;
}

.payment-accordion .btn-link:focus {
	box-shadow: none !important;
	outline: none !important;
}

.payment-accordion .btn-link:not(.collapsed) {
	background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%) !important;
	box-shadow: inset 4px 0 0 #ff5a3c;
}

.payment-accordion .btn-link .pacc-left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 0;
}

.payment-accordion .btn-link .pacc-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 11px;
	background: linear-gradient(135deg, #ffcc00 0%, #ff5a3c 55%, #ff2d2d 100%);
	box-shadow: 0 3px 10px rgba(255, 90, 60, .40);
	transition: box-shadow .2s ease, transform .2s ease;
}

.payment-accordion .btn-link:hover .pacc-icon,
.payment-accordion .btn-link:not(.collapsed) .pacc-icon {
	box-shadow: 0 5px 16px rgba(255, 90, 60, .55);
}

.payment-accordion .btn-link .pacc-icon i {
	font-size: 17px;
	color: #ffffff;
	width: auto;
	text-align: center;
	flex-shrink: 0;
	margin: 0 !important;
}

.payment-accordion .btn-link .pacc-label {
	font-weight: 800;
	font-size: 14px;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #0f172a;
	white-space: normal;
	line-height: 1.25;
}

.payment-accordion .btn-link > i.zmdi {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	font-size: 17px;
	color: #ffffff !important;
	border-radius: 11px;
	background: linear-gradient(135deg, #ffcc00 0%, #ff5a3c 55%, #ff2d2d 100%);
	box-shadow: 0 3px 10px rgba(255, 90, 60, .40);
	margin: 0 12px 0 0 !important;
}

.payment-accordion .btn-link > strong {
	flex: 1;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #0f172a;
	text-align: left;
}

.payment-accordion .collapse {
	border: none !important;
	background: transparent;
}

.payment-accordion .card-body {
	background: #ffffff;
	padding: 18px 18px 20px;
	border: none !important;
}

.payment-accordion .card-footer {
	background: #f8fafc !important;
	border-top: 1px solid rgba(15, 23, 42, .07) !important;
	padding: 12px 22px;
	border-radius: 0 0 16px 16px !important;
}

@media (max-width: 768px) {
	.payment-accordion .btn-link {
		padding: 15px 16px;
	}

	.payment-accordion .btn-link .pacc-icon,
	.payment-accordion .btn-link > i.zmdi {
		width: 32px;
		height: 32px;
		border-radius: 9px;
	}

	.payment-accordion .btn-link .pacc-icon i {
		font-size: 15px;
	}

	.payment-accordion .btn-link .pacc-label {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.payment-accordion .btn-link {
		padding: 13px 14px;
	}

	.payment-accordion .btn-link .pacc-icon,
	.payment-accordion .btn-link > i.zmdi {
		width: 30px;
		height: 30px;
		border-radius: 8px;
	}

	.payment-accordion .btn-link .pacc-icon i {
		font-size: 14px;
	}

	.payment-accordion .btn-link .pacc-label {
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.payment-accordion .card,
	.payment-accordion .card-header,
	.payment-accordion .btn-link,
	.payment-accordion .btn-link .pacc-icon {
		transition: none;
	}
}

.payment-method-item {
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 12px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(255, 255, 255, 0.04);
}

.payment-method-item:hover {
	border-color: rgba(253, 184, 19, 0.5);
	background: rgba(253, 184, 19, 0.07);
}

.card.box_game {
	background: rgba(255, 255, 255, 0.04) !important;
}

.card.box_game .card-body {
	background: transparent !important;
}

.card.box_game .card-footer {
	background: rgba(255, 255, 255, 0.03) !important;
}

.payment-method-item input[type="radio"] {
	display: none;
}

.payment-method-item input[type="radio"]:checked~.payment-method-content {
	border-left: 3px solid #FDB813;
	padding-left: 12px;
}

.payment-logo {
	width: 100px;
	height: 40px;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 5px;
	padding: 5px;
}

.payment-method-content {
	flex: 1;
}

.payment-method-content strong {
	display: block;
	font-size: 13px;
	color: #e8e8e8;
}

.payment-method-content small {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
}

:root {
	--pm-accent: #5f27cd;
	--pm-accent-soft: rgba(95, 39, 205, .18);
	--pm-hover: rgba(95, 39, 205, .06);
}

.payment-method-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}

@media (max-width: 1200px) {
	.payment-method-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.payment-method-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.payment-method-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 360px) {
	.payment-method-grid {
		grid-template-columns: 1fr;
	}
}

.pm-cell {
	position: relative;
}

.pm-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.payment-method-grid .payment-method-item {
	margin: 0 !important;
	width: 100%;
	min-height: 98px;
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	background: #fff;
	padding: 10px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 8px;
	cursor: pointer;
	transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease, background .12s ease;
}

.payment-method-grid .payment-method-item:hover {
	transform: translateY(-1px);
	border-color: var(--pm-accent);
	background: var(--pm-hover);
}

.payment-method-grid .payment-logo {
	width: 88px !important;
	height: 34px !important;
	max-width: 100%;
	object-fit: contain;
	background: transparent;
	padding: 0 !important;
	border-radius: 0;
}

.payment-method-grid .payment-method-content {
	width: 100%;
	flex: 0;
}

.payment-method-grid .payment-method-content strong {
	font-size: 12px;
	line-height: 1.2;
	color: #000000;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 0;
}

.payment-method-grid .payment-method-content small {
	display: none;
}

.payment-method-grid .payment-price,
.payment-method-grid .fee,
.payment-method-grid .price,
.payment-method-grid .amount {
	display: none !important;
}

.pm-radio:checked+label.payment-method-item {
	border-color: var(--pm-accent);
	background: var(--pm-hover);
	box-shadow: 0 0 0 3px var(--pm-accent-soft);
	transform: translateY(-1px);
}

.pm-radio:focus+label.payment-method-item {
	box-shadow: 0 0 0 3px rgba(34, 211, 238, .25);
}

.payment-method-grid .pm-radio:checked+label.payment-method-item .payment-method-content {
	border-left: none !important;
	padding-left: 0 !important;
}

.whatsapp-notice {
	background: #000000;
	border-left: 4px solid #4CAF50;
	padding: 12px;
	border-radius: 8px;
	margin-top: 15px;
}

.whatsapp-notice p {
	margin: 0;
	font-size: 12px;
	color: #ffffff;
	line-height: 1.6;
}

.btn-buy-now {
	background: linear-gradient(135deg, #FDB813 0%, #FFCB3D 100%);
	border: none;
	color: #000000;
	font-weight: 700;
	font-size: 14px;
	padding: 15px;
	border-radius: 10px;
	width: 100%;
	margin-top: 15px;
	transition: all 0.2s;
	box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
}

.btn-buy-now:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(253, 184, 19, 0.4);
	color: #000000;
}

.review-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 12px;
}

.review-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.review-info h5 {
	margin: 0 0 5px 0;
	font-size: 14px;
	font-weight: 600;
}

.review-stars {
	color: #FDB813;
}

.review-content {
	font-size: 13px;
	line-height: 1.6;
	color: #fff;
}

@media (max-width: 991px) {
	.order-layout {
		grid-template-columns: 1fr;
	}

	.game-sidebar {
		position: static;
	}

	.game-sidebar.vchx-sidebar {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}

	.vchx-game-card,
	.product-related.vchx-related-card {
		height: auto;
	}

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

	.nominal-scroll-area {
		max-height: min(390px, 56vh);
	}

	.radio-nominale-new + label {
		min-height: 102px;
		padding: 15px 14px;
	}

	#gv-summary {
		display: none;
	}
}

@media (max-width: 576px) {
	.order-container {
		padding: 10px;
		max-width: 100%;
		overflow-x: hidden;
	}

	.game-sidebar.vchx-sidebar {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.vchx-game-card {
		border-radius: 14px;
		padding-top: 16px;
        padding-right: 16px;
        padding-bottom: 1px;
        padding-left: 16px;
	}

	.vchx-game-header {
		align-items: flex-start;
		gap: 12px;
		padding-bottom: 12px;
	}

	.vchx-game-cover {
		flex-basis: 56px;
		width: 56px;
		height: 56px;
		border-radius: 14px;
	}

	.vchx-game-title {
		font-size: 16px;
		margin-bottom: 7px;
	}

	.vchx-game-badge {
		font-size: 11px;
		padding: 4px 9px;
	}

	.vchx-game-body {
		font-size: 13px;
		line-height: 1.5;
		margin-top: 12px;
		padding: 12px 12px 12px 13px;
	}

	.vchx-game-body ol,
	.vchx-game-body ul {
		padding-left: 23px !important;
	}

	.product-related.vchx-related-card {
		border-radius: 14px;
		padding: 14px 16px 12px;
	}

	.section-body {
		padding: 15px;
	}

	.nominal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-flow: row;
		grid-template-rows: none;
		gap: 10px;
	}

	.nominal-scroll-area {
		max-height: min(340px, 48vh);
		overflow-x: hidden;
		overflow-y: auto;
		margin-right: 0;
		padding: 2px 6px 2px 2px;
	}

	.radio-nominale-new + label {
		min-height: 94px;
		padding: 13px 11px;
		border-radius: 11px;
		gap: 8px;
		box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	}

	.radio-nominale-new + label:hover {
		transform: none;
	}

	.radio-nominale-new:checked + label {
		transform: none;
	}

	.radio-nominale-new:checked + label::before {
		top: 8px;
		right: 8px;
		width: 20px;
		height: 20px;
	}

	.nominal-label strong {
		font-size: 13px;
		padding-right: 22px;
		line-height: 1.35;
	}

	.nominal-label .price {
		font-size: 12px;
	}

	.vchx-game-body,
	.vchx-game-body *,
	.vchx-game-body li,
	.vchx-game-body p,
	.vchx-game-title,
	.product-item-info h6,
	.product-item-info p {
		max-width: 100%;
		overflow-wrap: anywhere;
		word-break: break-word;
		white-space: normal !important;
	}

	.vchx-game-body ol,
	.vchx-game-body ul {
		padding-left: 18px;
		margin-bottom: 0;
	}
}

@media (max-width: 360px) {
	.nominal-grid {
		grid-template-columns: 1fr;
	}
}

.btn-help {
	background: #4CAF50;
	border: none;
	color: #fff;
	font-size: 12px;
	padding: 8px 15px;
	border-radius: 6px;
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.btn-help:hover {
	background: #45a049;
	color: #fff;
}

.form-control-modern {
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 14px;
	transition: all 0.2s;
	height: auto;
	line-height: normal;
}

.form-control-modern:focus {
	background: #ffffff00;
	border-color: #FDB813;
	box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.1);
	outline: none;
}

select.form-control-modern {
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 14px;
	transition: all 0.2s;
	width: 100%;
	height: auto;
	line-height: normal;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 12px;
	padding-right: 40px;
	cursor: pointer;
}

select.form-control-modern:focus {
	background-color: #000000;
	border-color: #FDB813;
	box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.1);
	outline: none;
}

select.form-control-modern option {
	padding: 10px;
	background: #fff;
	color: #000000;
}

.tx-header {
	background: linear-gradient(90deg, #ffcc00, #ff5a3c);
	color: #000;
	font-weight: 700;
	font-size: 20px;
	padding: 14px 20px;
	border-radius: 14px;
	margin-bottom: 20px;
	margin-top: 15px;
	position: relative;
	overflow: hidden;
}

.tx-header::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		105deg,
		transparent 20%,
		rgba(255, 255, 255, .15) 40%,
		rgba(255, 255, 255, .35) 50%,
		rgba(255, 255, 255, .15) 60%,
		transparent 80%
	);
	pointer-events: none;
	animation: txShine 4s ease-in-out infinite;
}

@keyframes txShine {
	0%   { left: -100%; }
	60%  { left: 180%; }
	100% { left: 180%; }
}

.pt-5,
.py-5 {
	padding-top: 0rem !important;
}

.btn-ceknickname {
	background: #000000;
	border: none;
	color: #fff;
	font-size: 12px;
	padding: 8px 15px;
	border-radius: 6px;
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.ogk-page{max-width:1180px;margin:0 auto;padding:24px 20px 60px}
.ogk-bc{display:flex;align-items:center;gap:8px;margin-top:6px;margin-bottom:18px;padding:10px 12px;width:max-content;max-width:100%;font-size:13px;color:rgba(231,234,240,.6);border:1px solid rgba(255,255,255,.06);border-radius:999px;background:rgba(15,17,26,.62);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);box-shadow:0 18px 48px rgba(0,0,0,.22);flex-wrap:wrap}
.ogk-bc a{color:rgba(231,234,240,.6);text-decoration:none}.ogk-bc a:hover{color:#ffb703}.ogk-bc span{opacity:.5}
.ogk-bc a,.ogk-bc span{line-height:1.2}
@media(max-width:768px){.ogk-page{padding:16px 12px 40px}.ogk-bc{width:100%;border-radius:16px;margin-top:-8px}}

.nx-nav-wrap.vch-smart-navbar {
	backdrop-filter: blur(16px) saturate(165%);
	-webkit-backdrop-filter: blur(16px) saturate(165%);
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
	transition:
		background-color .32s cubic-bezier(.4, 0, .2, 1),
		background .32s cubic-bezier(.4, 0, .2, 1),
		box-shadow .32s cubic-bezier(.4, 0, .2, 1),
		border-color .32s cubic-bezier(.4, 0, .2, 1),
		backdrop-filter .32s cubic-bezier(.4, 0, .2, 1),
		-webkit-backdrop-filter .32s cubic-bezier(.4, 0, .2, 1);
	will-change: background, box-shadow, backdrop-filter;
}

.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light {
	background: rgba(5, 7, 12, 0.76) !important;
	backdrop-filter: blur(24px) saturate(185%);
	-webkit-backdrop-filter: blur(24px) saturate(185%);
	box-shadow:
		0 18px 46px rgba(0, 0, 0, 0.42),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(520px 120px at 10% 0%, rgba(255, 204, 0, .10), transparent 62%),
		radial-gradient(520px 120px at 90% 0%, rgba(255, 90, 60, .10), transparent 62%),
		linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0));
}

.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .brand,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .brand span,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .nx-nav-btn,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .link,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .pill,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .hamburger,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .hamburger span,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .fa,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light i {
	color: #ffffff !important;
}

.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .hamburger {
	background: rgba(255, 255, 255, .10) !important;
	box-shadow: 0 12px 28px rgba(0, 0, 0, .26);
}

.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .hamburger span {
	background: rgba(255, 255, 255, .92) !important;
}

.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .nx-nav-btn:hover,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .link:hover,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .pill:hover,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .nx-nav-btn[aria-expanded="true"] {
	background: rgba(255, 255, 255, .10) !important;
	border-color: rgba(255, 255, 255, .14) !important;
}

.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .lang-switch,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .language-switch,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .nx-lang,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .vch-lang,
.nx-nav-wrap.vch-smart-navbar.vch-nav-on-light .vch-lang-btn {
	background: rgba(18, 20, 30, .92) !important;
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, .12) !important;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .34) !important;
}

@media (prefers-reduced-motion: reduce) {
	.nx-nav-wrap.vch-smart-navbar {
		transition: none !important;
	}
}

.ordx-extra {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	max-width: 1180px;
	margin: -32px auto 0;
	padding: 0 20px;
}
@media (max-width: 768px) {
	.ordx-extra { padding: 0 12px; margin-top: -20px; }
}
.ordx-card {
	background:
		radial-gradient(ellipse 80% 55% at 0% 0%, rgba(34,211,238,.10), transparent 55%),
		radial-gradient(ellipse 75% 55% at 100% 100%, rgba(139,92,246,.13), transparent 55%),
		#0e1218;
	border: 1px solid rgba(34,211,238,.10);
	border-radius: 14px;
	padding: 22px;
	box-shadow: 0 10px 36px rgba(0,0,0,.55);
}
.ordx-title {
	display: flex; align-items: center; gap: 10px;
	margin: 0 0 14px;
	font-size: 16px; font-weight: 800; color: #fff;
}
.ordx-title i { color: #FDB813; }
.ordx-desc { color: rgba(231,234,240,.8); font-size: 14px; line-height: 1.75; }
.ordx-desc :is(h1,h2,h3,h4){ color:#fff; font-size:15px; margin:16px 0 8px; }
.ordx-desc p { margin: 0 0 10px; }
.ordx-desc img { max-width: 100%; height: auto; border-radius: 10px; }
.ordx-desc a { color: #FDB813; }
.ordx-faq { display: flex; flex-direction: column; gap: 10px; }
.ordx-q {
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 12px;
	background: rgba(255,255,255,.04);
	overflow: hidden;
}
.ordx-q > summary {
	list-style: none;
	cursor: pointer;
	padding: 14px 16px;
	font-size: 14px; font-weight: 700; color: #fff;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.ordx-q > summary::-webkit-details-marker { display: none; }
.ordx-q > summary::after {
	content: "\f078";
	font-family: "Font Awesome 5 Free"; font-weight: 900;
	font-size: 12px; color: #FDB813; transition: transform .2s ease;
}
.ordx-q[open] > summary::after { transform: rotate(180deg); }
.ordx-q[open] > summary { border-bottom: 1px solid rgba(255,255,255,.07); }
.ordx-a { padding: 12px 16px 16px; color: rgba(231,234,240,.72); font-size: 13.5px; line-height: 1.7; }

 #submitId.is-loading{
  pointer-events: none;
  opacity: .9;
}
#submitId .btnbuy-spin{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: rgba(255,255,255,1);
  display: none;
  animation: btnbuySpin .7s linear infinite;
  flex: 0 0 auto;
}
#submitId.is-loading .btnbuy-spin{ display: inline-block; }

#submitId .btnbuy-text{ display:inline-block; }

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