/* Custom Scrollbar & Cursor */
html {
	scroll-behavior: smooth;
	cursor: auto;
	/* iOS optimizations */
	-webkit-user-select: none;
	user-select: none;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	/* iOS/Android touch handling */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	/* Faster scrolling on mobile */
	-webkit-overflow-scrolling: touch;
	/* Ensure full width */
	width: 100%;
	min-height: 100vh;
	/* Safe area padding for notches/dynamic island */
	padding-left: max(0px, env(safe-area-inset-left));
	padding-right: max(0px, env(safe-area-inset-right));
	padding-top: max(0px, env(safe-area-inset-top));
	padding-bottom: max(0px, env(safe-area-inset-bottom));
}

/* Global Box Sizing & Responsive */
* {
	box-sizing: border-box;
}

.container, .section, .card {
	width: 100%;
	max-width: 100%;
	height: auto !important;
}

/* Global Image Standardization */
img {
	width: 100%;
	height: auto !important;
	display: block;
	object-fit: cover;
	object-position: center;
	/* Fallback for older browsers */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Utility class for images in fixed-size containers */
.rp-img-fill {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

/* Utility class for contained images (no cropping) */
.rp-img-contain {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	object-position: center;
}

/* Utility class for images with specific aspect ratio preservation */
.rp-img-responsive {
	width: 100%;
	display: block;
	height: auto;
	object-fit: cover;
	object-position: center;
}

/* Animated Butterfly Cursor - DISABLED */
.rp-butterfly-cursor {
	display: none;
	pointer-events: none;
	z-index: 10000;
	width: 32px;
	height: 32px;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
}

.rp-butterfly-cursor svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 8px rgba(92, 198, 255, 0.6));
}

/* Butterfly wing animation */
@keyframes butterfly-wings {
	0% {
		transform: scaleX(1);
	}
	50% {
		transform: scaleX(-1);
	}
	100% {
		transform: scaleX(1);
	}
}

/* Megaphone sound wave animation */
@keyframes megaphone-pulse {
	0% {
		stroke-width: 2.5;
		opacity: 0.8;
	}
	50% {
		stroke-width: 3;
		opacity: 0.4;
	}
	100% {
		stroke-width: 2.5;
		opacity: 0.8;
	}
}

.rp-butterfly-wings {
	animation: butterfly-wings 0.6s ease-in-out infinite;
	transform-origin: center;
}

.rp-megaphone-waves {
	animation: megaphone-pulse 1.2s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #65ccff, #80f8cf);
	border-radius: 10px;
	border: 2px solid rgba(255, 255, 255, 0.02);
	box-shadow: 0 0 12px rgba(101, 204, 255, 0.25);
	transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #80f4ff, #88ffd6);
	box-shadow: 0 0 18px rgba(101, 204, 255, 0.4);
}

/* Firefox Scrollbar */
* {
	scrollbar-color: linear-gradient(180deg, #65ccff, #80f8cf) rgba(255, 255, 255, 0.03);
	scrollbar-width: thin;
}

/* Custom Cursor for Interactive Elements - DISABLED */
button,
a,
[role="button"],
input[type="submit"],
input[type="button"] {
	cursor: pointer;
	/* iOS/Android touch optimization */
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	/* Improve touch responsiveness */
	touch-action: manipulation;
}

/* Form inputs - iOS/Android optimization */
input,
textarea,
select {
	/* Prevent iOS zoom on input focus */
	font-size: 16px !important;
	/* iOS appearance override */
	-webkit-appearance: none;
	appearance: none;
	/* Better text visibility */
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	/* Smooth rendering */
	-webkit-font-smoothing: antialiased;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* Remove iOS default input styling */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea {
	border-radius: 0;
	-webkit-border-radius: 0;
}

/* iOS/Android select element */
select {
	border-radius: 0;
	-webkit-border-radius: 0;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 20px;
	padding-right: 32px;
}

::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #65ccff, #80f8cf);
	border-radius: 10px;
	border: 2px solid rgba(255, 255, 255, 0.02);
	box-shadow: 0 0 12px rgba(101, 204, 255, 0.25);
	transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #80f4ff, #88ffd6);
	box-shadow: 0 0 18px rgba(101, 204, 255, 0.4);
}

:where(.rp-home, .rp-home-games, .rp-products, .rp-order-shell, .rp-my-orders) {
	--rp-bg: #06080e;
	--rp-bg-2: #0a1020;
	--rp-panel: linear-gradient(160deg, rgba(11, 17, 32, 0.96), rgba(8, 13, 25, 0.9));
	--rp-card: linear-gradient(165deg, rgba(18, 25, 46, 0.92), rgba(9, 14, 28, 0.95));
	--rp-border: rgba(110, 163, 255, 0.2);
	--rp-border-strong: rgba(86, 214, 255, 0.42);
	--rp-text: #e9f1ff;
	--rp-text-soft: #9cb3d8;
	--rp-text-muted: #7289af;
	--rp-brand: #65ccff;
	--rp-brand-2: #80f8cf;
	--rp-brand-3: #ff9a52;
	--rp-danger: #ff829f;
	--rp-ok: #88f9c7;
	--rp-warn: #ffd37d;
	--rp-radius-xl: 30px;
	--rp-radius-lg: 20px;
	--rp-radius-md: 14px;
	--rp-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
	color: var(--rp-text);
	font-family: "Space Grotesk", "Exo 2", "Rajdhani", sans-serif;
	letter-spacing: 0.01em;
}

:where(.rp-home, .rp-home-games, .rp-products, .rp-order-shell, .rp-my-orders).rp-theme-light {
	--rp-bg: #f5f8ff;
	--rp-bg-2: #ebf1ff;
	--rp-panel: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
	--rp-card: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
	--rp-border: rgba(54, 91, 145, 0.18);
	--rp-border-strong: rgba(31, 119, 198, 0.35);
	--rp-text: #14213f;
	--rp-text-soft: #36507f;
	--rp-text-muted: #5f79a9;
	--rp-brand: #136ac2;
	--rp-brand-2: #1a9d6e;
	--rp-brand-3: #dc6d1f;
	--rp-danger: #c64360;
	--rp-ok: #1a9d6e;
	--rp-warn: #b18418;
	--rp-shadow: 0 18px 46px rgba(23, 52, 96, 0.14);
}

.rp-theme-light::before {
	background:
		radial-gradient(460px circle at 8% -10%, rgba(47, 138, 240, 0.15), transparent 52%),
		radial-gradient(420px circle at 98% 10%, rgba(69, 189, 154, 0.18), transparent 54%),
		linear-gradient(180deg, rgba(18, 58, 122, 0.05), transparent 28%);
}

.rp-theme-light::after {
	border-color: rgba(22, 59, 113, 0.12);
}

.rp-home,
.rp-home-games,
.rp-products,
.rp-order-shell,
.rp-my-orders {
	position: relative;
	z-index: 0;
}

.rp-home::before,
.rp-home-games::before,
.rp-products::before,
.rp-order-shell::before,
.rp-my-orders::before {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: -1;
	border-radius: 32px;
	background:
		radial-gradient(460px circle at 8% -10%, rgba(128, 248, 207, 0.2), transparent 52%),
		radial-gradient(420px circle at 98% 10%, rgba(101, 204, 255, 0.24), transparent 54%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%);
	pointer-events: none;
}

.rp-home::after,
.rp-home-games::after,
.rp-products::after,
.rp-order-shell::after,
.rp-my-orders::after {
	content: "";
	position: absolute;
	inset: 12px;
	border-radius: 24px;
	border: 1px dashed rgba(255, 255, 255, 0.06);
	pointer-events: none;
	opacity: 0.55;
	z-index: -1;
}

.rp-build-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 8;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 11px;
	border-radius: 999px;
	border: 1px solid rgba(255, 154, 82, 0.35);
	background: rgba(255, 154, 82, 0.14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
	color: #ffdcbf;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.rp-build-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 99px;
	background: #ffc089;
	box-shadow: 0 0 12px #ff9a52;
}

.rp-home,
.rp-home-games,
.rp-products,
.rp-my-orders,
.rp-order-shell {
	display: grid;
	gap: 20px;
	margin: 20px 0;
	padding: 26px;
	border: 1px solid var(--rp-border);
	border-radius: var(--rp-radius-xl);
	background: var(--rp-panel);
	box-shadow: var(--rp-shadow);
	overflow: hidden;
}

.rp-home__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 14px;
	border-radius: 18px;
	border: 1px solid var(--rp-border);
	background: linear-gradient(145deg, rgba(18, 28, 52, 0.75), rgba(10, 16, 30, 0.72));
}

.rp-theme-light .rp-home__topbar {
	background: linear-gradient(145deg, rgba(232, 240, 255, 0.88), rgba(250, 252, 255, 0.92));
}

.rp-home__marketline {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
}

.rp-home__marketline span {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--rp-text-soft);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
}

.rp-theme-light .rp-home__marketline {
	background: rgba(19, 78, 146, 0.04);
	border-color: rgba(19, 78, 146, 0.14);
}

.rp-theme-light .rp-home__marketline span {
	border-color: rgba(19, 78, 146, 0.14);
	background: rgba(19, 78, 146, 0.05);
}

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

.rp-home__brand-mark {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #021327;
	background: linear-gradient(150deg, var(--rp-brand), var(--rp-brand-2));
}

.rp-home__brand-copy {
	display: grid;
	line-height: 1.1;
}

.rp-home__brand-copy strong {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.rp-home__brand-copy small {
	font-size: 10px;
	font-weight: 700;
	color: var(--rp-text-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rp-home__topnav {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rp-theme-light .rp-home__topnav {
	background: rgba(19, 78, 146, 0.06);
	border-color: rgba(19, 78, 146, 0.16);
}

.rp-home__topnav a {
	padding: 7px 12px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 11px;
	font-weight: 700;
	color: var(--rp-text-soft);
	transition: all 0.2s ease;
	white-space: nowrap;
}

.rp-home__topnav a:hover {
	background: rgba(101, 204, 255, 0.14);
	color: var(--rp-text);
}

.rp-home__topbar-actions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.rp-nav-toggle {
	display: none;
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: var(--rp-text);
	border-radius: 999px;
	padding: 8px 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
}

.rp-theme-light .rp-nav-toggle {
	background: rgba(19, 78, 146, 0.08);
	border-color: rgba(19, 78, 146, 0.22);
}

.rp-theme-toggle {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: var(--rp-text);
	border-radius: 999px;
	padding: 8px 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
}

.rp-theme-light .rp-theme-toggle {
	background: rgba(19, 78, 146, 0.08);
	border-color: rgba(19, 78, 146, 0.22);
}

.rp-home__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
	gap: 20px;
	padding: 26px;
	border: 1px solid var(--rp-border-strong);
	border-radius: 24px;
	background:
		linear-gradient(122deg, rgba(12, 19, 37, 0.96) 0%, rgba(10, 18, 34, 0.86) 48%, rgba(23, 50, 95, 0.82) 100%),
		repeating-linear-gradient(130deg, rgba(255, 255, 255, 0.02) 0 16px, rgba(255, 255, 255, 0.005) 16px 32px);
	position: relative;
	overflow: hidden;
}

.rp-home__hero::after {
	content: "";
	position: absolute;
	width: 190px;
	height: 190px;
	right: -34px;
	top: -36px;
	border-radius: 50%;
	background: radial-gradient(circle at center, rgba(128, 248, 207, 0.3), transparent 65%);
	filter: blur(1px);
}

.rp-home__copy {
	max-width: 760px;
	position: relative;
	z-index: 1;
}

.rp-home__eyebrow,
.rp-order-kicker,
.rp-products__eyebrow,
.rp-my-orders__eyebrow,
.rp-card__eyebrow,
.rp-home__game-chip,
.rp-product-card__tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid rgba(101, 204, 255, 0.24);
	background: rgba(101, 204, 255, 0.12);
	color: var(--rp-brand);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	width: fit-content;
}

.rp-home__title {
	margin: 14px 0 12px;
	font-size: clamp(36px, 5.6vw, 64px);
	line-height: 0.94;
	letter-spacing: -0.04em;
	font-weight: 800;
	text-wrap: balance;
}

.rp-home__subtitle,
.rp-home__section-head p,
.rp-home-games__subtitle,
.rp-products__subtitle,
.rp-my-orders__hero p,
.rp-order-hero p,
.rp-sub,
.rp-card__meta {
	margin: 0;
	color: var(--rp-text-soft);
	line-height: 1.68;
}

.rp-home__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.rp-home__pills span {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--rp-text-soft);
	font-size: 12px;
	font-weight: 700;
}

.rp-home__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.rp-home__trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	padding: 10px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(255, 255, 255, 0.03);
}

.rp-home__trust span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 12px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rp-text-soft);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rp-home__quicknav {
	display: grid;
	gap: 10px;
	padding: 16px;
	border-radius: 18px;
	border: 1px solid var(--rp-border);
	background: rgba(8, 13, 25, 0.62);
}

.rp-home__quicknav-items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.rp-home__quicknav-item {
	display: inline-flex;
	align-items: center;
	padding: 9px 12px;
	border-radius: 999px;
	border: 1px solid rgba(101, 204, 255, 0.25);
	background: rgba(101, 204, 255, 0.1);
	color: #bfe8ff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	transition: all 0.2s ease;
}

.rp-home__quicknav-item:hover {
	transform: translateY(-1px);
	background: rgba(128, 248, 207, 0.14);
	border-color: rgba(128, 248, 207, 0.34);
	color: #d8ffef;
}

.rp-home__stats {
	display: grid;
	gap: 10px;
	align-content: start;
}

.rp-home__stat-card {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	backdrop-filter: blur(8px);
}

.rp-home__stat-card--accent {
	border-color: rgba(255, 154, 82, 0.32);
	background: linear-gradient(180deg, rgba(255, 154, 82, 0.18), rgba(255, 255, 255, 0.03));
}

.rp-home__stat-card span {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--rp-text-muted);
}

.rp-home__stat-card strong {
	display: block;
	margin-top: 8px;
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
}

.rp-home__section,
.rp-home-games,
.rp-products,
.rp-my-orders,
.rp-order-shell {
	gap: 16px;
}

.rp-home__section-head,
.rp-home-games__intro,
.rp-products__header-copy {
	display: grid;
	gap: 6px;
}

.rp-home__section-head h2,
.rp-home-games__title,
.rp-products__title,
.rp-my-orders h3,
.rp-order-hero h3 {
	margin: 0;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

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

.rp-home__step-card,
.rp-order-panel,
.rp-order-side__card,
.rp-short-panel,
.rp-product-card,
.rp-card,
.rp-home__game-card,
.rp-my-orders__summary-card,
.rp-my-orders__table-wrap {
	border: 1px solid var(--rp-border);
	border-radius: var(--rp-radius-lg);
	background: var(--rp-card);
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.rp-home__step-card,
.rp-order-panel,
.rp-order-side__card,
.rp-product-card,
.rp-my-orders__summary-card {
	padding: 20px;
}

.rp-home__step-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 900;
	color: #031a22;
	background: linear-gradient(135deg, var(--rp-brand), var(--rp-brand-2));
	box-shadow: 0 0 22px rgba(101, 204, 255, 0.44);
}

.rp-home__step-card h3 {
	margin: 14px 0 8px;
	font-size: 18px;
}

.rp-home__step-card p {
	margin: 0;
	color: var(--rp-text-soft);
}

.rp-home__catalog,
.rp-games {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
	gap: 15px;
}

.rp-home__packages {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
}

.rp-home__package-card {
	display: grid;
	gap: 12px;
	padding: 18px;
	border-radius: 18px;
	border: 1px solid var(--rp-border);
	background: linear-gradient(170deg, rgba(14, 22, 40, 0.92), rgba(7, 12, 24, 0.96));
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.rp-home__package-card:hover {
	transform: translateY(-2px);
	border-color: rgba(128, 248, 207, 0.35);
}

.rp-home__package-top {
	display: grid;
	gap: 6px;
}

.rp-home__package-top h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
}

.rp-home__package-top p {
	margin: 0;
	color: var(--rp-text-soft);
	font-size: 13px;
}

.rp-home__package-price {
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	color: var(--rp-brand-2);
}

.rp-home__packages--rows {
	grid-template-columns: 1fr;
	gap: 10px;
}

.rp-home__package-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px solid var(--rp-border);
	background: linear-gradient(160deg, rgba(15, 24, 46, 0.86), rgba(9, 16, 30, 0.9));
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.rp-home__package-row:hover {
	transform: translateY(-1px);
	border-color: rgba(128, 248, 207, 0.32);
}

.rp-home__package-main {
	display: grid;
	gap: 6px;
}

.rp-home__package-main h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
}

.rp-home__package-main p {
	margin: 0;
	font-size: 13px;
	color: var(--rp-text-soft);
}

.rp-home__package-side {
	display: grid;
	gap: 8px;
	justify-items: end;
}

.rp-home__footer-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	padding: 18px;
	border-radius: 18px;
	border: 1px solid rgba(255, 173, 97, 0.3);
	background: linear-gradient(135deg, rgba(48, 28, 11, 0.78), rgba(15, 18, 28, 0.86));
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.rp-home__footer-copy h2 {
	margin: 0 0 6px;
	font-size: clamp(22px, 3.6vw, 30px);
	line-height: 1.1;
}

.rp-home__footer-copy p {
	margin: 0;
	color: var(--rp-text-soft);
}

.rp-home__footer-actions {
	display: inline-flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.rp-home__game-card,
.rp-card {
	overflow: hidden;
	padding: 0;
	position: relative;
}

.rp-home__game-overlay {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	z-index: 2;
}

.rp-home__game-count {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #d6ecff;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(6, 14, 28, 0.55);
}

.rp-home__game-card:hover,
.rp-card:hover,
.rp-product-card:hover,
.rp-home__step-card:hover,
.rp-order-side__card:hover,
.rp-my-orders__summary-card:hover {
	transform: translateY(-2px);
	border-color: rgba(128, 248, 207, 0.34);
}

.rp-product-card {
	overflow: hidden;
}

.rp-product-card__img {
	width: 100%;
	aspect-ratio: 3 / 4;
	display: block;
	object-fit: cover;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rp-home__game-image,
.rp-card__img {
	width: 100%;
	aspect-ratio: 1 / 1;
	display: block;
	object-fit: cover;
}

.rp-card__img-wrap,
.rp-home__game-card {
	position: relative;
}

.rp-card__img-wrap::after,
.rp-home__game-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 68%;
	background: linear-gradient(180deg, rgba(4, 9, 17, 0), rgba(4, 9, 17, 0.92));
	pointer-events: none;
}

.rp-home__game-image--placeholder,
.rp-card__img-wrap--placeholder {
	min-height: auto;
	height: auto;
	aspect-ratio: 1 / 1;
	width: 100%;
	background:
		linear-gradient(120deg, rgba(101, 204, 255, 0.16), rgba(128, 248, 207, 0.1), rgba(101, 204, 255, 0.16)),
		repeating-linear-gradient(130deg, rgba(255, 255, 255, 0.025) 0 12px, rgba(255, 255, 255, 0.004) 12px 24px);
}

.rp-home--empty,
.rp-home-games--empty,
.rp-products--empty,
.rp-my-orders--empty {
	border-color: rgba(255, 255, 255, 0.12);
}

.rp-home__game-card--placeholder,
.rp-card--placeholder,
.rp-product-card--placeholder {
	opacity: 0.95;
}

.rp-home__game-body,
.rp-card__body {
	padding: 16px;
	display: grid;
	gap: 10px;
	align-content: start;
	min-height: 0;
}

.rp-home__game-actions {
	display: flex;
	justify-content: flex-start;
	padding-top: 2px;
}

.rp-home__game-body h3,
.rp-title {
	margin: 0;
	font-size: 20px;
	line-height: 1.1;
	font-weight: 700;
	color: var(--rp-text);
}

.rp-home__game-meta span,
.rp-card__meta {
	display: inline-flex;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	border: 1px solid rgba(101, 204, 255, 0.2);
	background: rgba(101, 204, 255, 0.1);
	color: #9fdfff;
}

.rp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(101, 204, 255, 0.22);
	background: linear-gradient(135deg, var(--rp-brand), var(--rp-brand-2));
	color: #08222a;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	letter-spacing: 0.04em;
	transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 12px 28px rgba(101, 204, 255, 0.24);
	/* iOS/Android optimization */
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	touch-action: manipulation;
	user-select: none;
	-webkit-user-select: none;
	/* Better GPU acceleration */
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	/* Ensure minimum touch target */
	min-height: 44px;
	min-width: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.rp-btn:hover {
	color: #05161d;
	transform: translateY(-1px);
	filter: brightness(1.04);
}

.rp-btn--hero {
	background: linear-gradient(135deg, #ffc068, var(--rp-brand-3));
	border-color: rgba(255, 173, 97, 0.4);
	color: #2c1204;
	box-shadow: 0 14px 28px rgba(255, 154, 82, 0.3);
}

.rp-btn--ghost {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.18);
	color: var(--rp-text);
	box-shadow: none;
}

.rp-btn--ghost:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.rp-btn--sm {
	padding: 8px 13px;
	font-size: 11px;
}

.rp-btn--block {
	width: 100%;
}

.rp-field {
	margin-bottom: 14px;
}

.rp-field label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rp-text-soft);
}

.rp-field input,
.rp-field select {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	background: rgba(4, 9, 20, 0.55);
	color: var(--rp-text);
	font-family: inherit;
}

.rp-field input::placeholder {
	color: var(--rp-text-muted);
}

.rp-field select option {
	background: #0a1122;
	color: #e9f1ff;
}

.rp-field input:focus,
.rp-field select:focus {
	outline: none;
	border-color: rgba(101, 204, 255, 0.5);
	box-shadow: 0 0 0 4px rgba(101, 204, 255, 0.14);
}

.rp-order-shell {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.rp-order-shell::before,
.rp-order-shell::after {
	display: none;
}

.rp-order-hero {
	padding: 26px;
	border: 1px solid var(--rp-border-strong);
	border-radius: 24px;
	background:
		linear-gradient(130deg, rgba(8, 15, 31, 0.96), rgba(15, 29, 56, 0.9) 58%, rgba(15, 57, 93, 0.8)),
		repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.022) 0 12px, transparent 12px 24px);
	box-shadow: var(--rp-shadow);
}

.rp-order-kicker {
	margin-bottom: 12px;
}

.rp-order-hero h3 {
	font-size: clamp(30px, 4.8vw, 44px);
	margin: 0 0 8px;
}

.rp-order-progress {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.rp-order-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.rp-order-trust span {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: var(--rp-text-soft);
}

.rp-order-progress span {
	padding: 8px 11px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--rp-text-soft);
}

.rp-order-progress .is-active {
	background: rgba(128, 248, 207, 0.14);
	border-color: rgba(128, 248, 207, 0.34);
	color: var(--rp-brand-2);
}

.rp-order-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
	gap: 16px;
	align-items: start;
}

.rp-order-layout--stacked {
	grid-template-columns: minmax(0, 1fr);
}

.rp-order-form {
	display: grid;
	gap: 4px;
}

.rp-order-side {
	display: grid;
	gap: 12px;
}

.rp-order-side__card--accent {
	border-color: rgba(255, 154, 82, 0.32);
	background: linear-gradient(165deg, rgba(56, 31, 12, 0.88), rgba(15, 15, 26, 0.96));
}

.rp-order-side__card h4,
.rp-payment-instructions h4,
.rp-txn-form h4 {
	margin: 0 0 8px;
	font-size: 16px;
	letter-spacing: 0.02em;
}

.rp-order-side__card p {
	margin: 0;
	color: var(--rp-text-soft);
	line-height: 1.62;
}

.rp-order-side__list {
	margin: 0;
	padding-left: 18px;
	color: var(--rp-text-soft);
	display: grid;
	gap: 8px;
	font-size: 13px;
}

.rp-order-track-head {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.rp-order-track-head span {
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #c4e8ff;
	border: 1px solid rgba(101, 204, 255, 0.25);
	background: rgba(101, 204, 255, 0.08);
}

.rp-notice {
	padding: 12px 14px;
	margin: 10px 0;
	border-radius: 14px;
	border: 1px solid transparent;
}

.rp-notice--ok {
	background: rgba(136, 249, 199, 0.1);
	border-color: rgba(136, 249, 199, 0.32);
	color: #e6fff4;
}

.rp-notice--error {
	background: rgba(255, 130, 159, 0.11);
	border-color: rgba(255, 130, 159, 0.28);
	color: #ffeaf0;
}

.rp-step-b {
	max-width: 990px;
}

.rp-order-summary {
	margin-bottom: 18px;
}

.rp-summary-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rp-summary-table th,
.rp-summary-table td {
	padding: 12px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.015);
}

.rp-summary-table th {
	width: 168px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rp-text-soft);
}

.rp-bookmark-hint {
	font-size: 12px;
	word-break: break-word;
	color: var(--rp-text-soft);
}

.rp-bookmark-hint a {
	color: #9ad9ff;
}

.rp-payment-instructions {
	margin: 16px 0;
	padding: 16px;
	border-radius: 14px;
	background: rgba(255, 211, 125, 0.09);
	border: 1px solid rgba(255, 211, 125, 0.24);
}

.rp-payment-instructions ol {
	margin: 0;
	padding-left: 20px;
	color: #fbe7b8;
}

.rp-payment-instructions li {
	margin-bottom: 7px;
}

.rp-txn-form {
	margin-top: 16px;
}

.rp-products__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 8px;
}

.rp-products__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(100px, 1fr));
	gap: 10px;
}

.rp-products__stat {
	padding: 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	min-width: 110px;
}

.rp-products__stat span {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--rp-text-muted);
}

.rp-products__stat strong {
	display: block;
	margin-top: 6px;
	font-size: 20px;
	line-height: 1;
	color: var(--rp-text);
}

.rp-products__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 6px;
}

.rp-products__trust span {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	background: rgba(128, 248, 207, 0.08);
	border: 1px solid rgba(128, 248, 207, 0.24);
	color: #bfffe7;
}

.rp-products__title-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rp-products__game-img {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.rp-products__title {
	font-size: clamp(24px, 3.6vw, 36px);
}

.rp-products__grid {
	display: grid;
	gap: 14px;
}

.rp-products--cols-1 .rp-products__grid { grid-template-columns: 1fr; }
.rp-products--cols-2 .rp-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rp-products--cols-3 .rp-products__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rp-products--cols-4 .rp-products__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.rp-products__grid--placeholder {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.rp-product-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
}

.rp-product-card__name {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.rp-product-card__price-wrap {
	display: grid;
	gap: 4px;
	margin-bottom: 2px;
}

.rp-product-card__price {
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
	color: var(--rp-brand-2);
}

.rp-product-card__hint {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--rp-text-muted);
}

.rp-my-orders__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: end;
}

.rp-my-orders__hero h3 {
	margin-top: 9px;
	font-size: clamp(28px, 4.2vw, 42px);
}

.rp-my-orders__summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(104px, 1fr));
	gap: 10px;
}

.rp-my-orders__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rp-my-orders__filter {
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rp-text-soft);
	border: 1px solid rgba(255, 255, 255, 0.13);
	background: rgba(255, 255, 255, 0.04);
	transition: all 0.2s ease;
}

.rp-my-orders__filter:hover {
	color: #d6edff;
	border-color: rgba(101, 204, 255, 0.28);
	background: rgba(101, 204, 255, 0.1);
}

.rp-my-orders__filter.is-active {
	color: #dcfff3;
	border-color: rgba(128, 248, 207, 0.36);
	background: rgba(128, 248, 207, 0.14);
}

.rp-my-orders__summary-card span {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rp-text-muted);
}

.rp-my-orders__summary-card strong {
	display: block;
	margin-top: 8px;
	font-size: 28px;
	line-height: 1;
	font-weight: 800;
}

.rp-my-orders__scroll {
	overflow-x: auto;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.015);
}

.rp-my-orders__table {
	width: 100%;
	min-width: 760px;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 14px;
}

.rp-my-orders__table th,
.rp-my-orders__table td {
	padding: 12px 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
}

.rp-my-orders__table th {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--rp-text-soft);
	background: rgba(255, 255, 255, 0.02);
}

.rp-my-orders__table tr:hover td {
	background: rgba(101, 204, 255, 0.06);
}

.rp-status {
	display: inline-flex;
	align-items: center;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: 1px solid transparent;
}

.rp-status--pending {
	background: rgba(140, 157, 183, 0.15);
	border-color: rgba(140, 157, 183, 0.35);
	color: #dee7f7;
}

.rp-status--awaiting_payment {
	background: rgba(255, 211, 125, 0.15);
	border-color: rgba(255, 211, 125, 0.36);
	color: #ffebbb;
}

.rp-status--confirmed {
	background: rgba(101, 204, 255, 0.16);
	border-color: rgba(101, 204, 255, 0.36);
	color: #bfe8ff;
}

.rp-status--completed {
	background: rgba(136, 249, 199, 0.16);
	border-color: rgba(136, 249, 199, 0.38);
	color: #deffef;
}

.rp-status--cancelled {
	background: rgba(255, 130, 159, 0.16);
	border-color: rgba(255, 130, 159, 0.36);
	color: #ffe5ec;
}

.rp-admin-status {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 700;
}

.rp-admin-status--pending { background: #e5e7eb; }
.rp-admin-status--awaiting_payment { background: #fef3c7; }
.rp-admin-status--confirmed { background: #dbeafe; }
.rp-admin-status--completed { background: #d1fae5; }
.rp-admin-status--cancelled { background: #fee2e2; }

.rp-admin-actions {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	align-items: center;
}

.rp-empty {
	padding: 22px;
	border-radius: 18px;
	text-align: center;
	border: 1px dashed rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.03);
	color: var(--rp-text-soft);
}

.rp-my-orders--empty .rp-notice,
.rp-products--empty .rp-notice,
.rp-home-games--empty .rp-notice,
.rp-home--empty .rp-notice {
	margin-top: 0;
}

@media (max-width: 960px) {
	.rp-home,
	.rp-home-games,
	.rp-products,
	.rp-my-orders {
		padding: 20px;
	}

	.rp-home__hero,
	.rp-home__steps,
	.rp-order-layout,
	.rp-my-orders__hero {
		grid-template-columns: 1fr;
	}

	.rp-products--cols-4 .rp-products__grid,
	.rp-products--cols-3 .rp-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rp-home__topbar {
		flex-wrap: wrap;
	}

	.rp-home__brand {
		min-width: 0;
	}

	.rp-home__brand-copy strong,
	.rp-home__brand-copy small {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.rp-nav-toggle {
		display: inline-flex;
	}

	.rp-home__topbar-actions {
		width: 100%;
		justify-content: space-between;
	}

	.rp-home__topnav {
		order: 4;
		width: 100%;
		justify-content: center;
	}

	.rp-home__topbar .rp-home__topnav {
		display: none;
	}

	.rp-home__topbar.rp-home__topbar--menu-open .rp-home__topnav {
		display: flex;
	}
}

@media (max-width: 680px) {
	.rp-home,
	.rp-home-games,
	.rp-products,
	.rp-my-orders,
	.rp-order-hero,
	.rp-order-panel,
	.rp-order-side__card {
		padding: 14px;
		margin: 12px 0;
	}

	.rp-home::after,
	.rp-home-games::after,
	.rp-products::after,
	.rp-order-shell::after,
	.rp-my-orders::after {
		inset: 8px;
	}

	.rp-build-badge {
		top: 8px;
		right: 8px;
		font-size: 9px;
		padding: 4px 8px;
	}

	.rp-home__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.rp-home__title,
	.rp-home-games__title,
	.rp-order-hero h3,
	.rp-my-orders__hero h3,
	.rp-products__title {
		font-size: 24px;
		line-height: 1.05;
	}

	.rp-home__hero {
		padding: 16px;
	}

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

	.rp-home__stat-card strong {
		font-size: 24px;
	}

	.rp-home__steps,
	.rp-products__grid,
	.rp-products--cols-2 .rp-products__grid,
	.rp-products--cols-3 .rp-products__grid,
	.rp-products--cols-4 .rp-products__grid,
	.rp-products__stats,
	.rp-home__trust,
	.rp-my-orders__summary {
		grid-template-columns: 1fr;
	}

	.rp-home__topbar {
		padding: 12px;
	}

	.rp-home__topnav {
		overflow-x: auto;
		justify-content: flex-start;
		padding-bottom: 4px;
		padding-top: 2px;
		flex-wrap: nowrap;
	}

	.rp-home__topnav a {
		flex: 0 0 auto;
	}

	.rp-home__marketline {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.rp-product-card__img,
	.rp-home__game-image,
	.rp-card__img {
		max-height: 150px;
		height: auto;
	}

	.rp-home__catalog,
	.rp-games {
		grid-template-columns: 1fr;
	}

	.rp-home__game-body,
	.rp-card__body {
		min-height: 0;
	}

	.rp-home__package-price,
	.rp-product-card__price {
		font-size: 24px;
	}

	.rp-order-progress,
	.rp-order-trust {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 2px;
	}

	.rp-order-summary {
		overflow-x: auto;
	}

	.rp-summary-table {
		min-width: 520px;
	}

	.rp-field input,
	.rp-field select {
		font-size: 16px;
	}

	.rp-home__package-row,
	.rp-home__footer-cta {
		grid-template-columns: 1fr;
	}

	.rp-home__package-side,
	.rp-home__footer-actions {
		justify-items: start;
		justify-content: flex-start;
	}

}


@media (max-width: 480px) {
	.rp-home__stats {
		grid-template-columns: 1fr;
	}

	.rp-home__actions .rp-btn,
	.rp-home__footer-actions .rp-btn {
		width: 100%;
	}

	.rp-home__quicknav-item {
		width: 100%;
		justify-content: center;
	}
}

/* Left Sidebar Navigation */
.rp-kz-sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 280px;
	height: 100vh;
	background: linear-gradient(180deg, rgba(8, 12, 24, 0.98), rgba(6, 10, 20, 0.96));
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transform: translateX(-100%);
	transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	box-shadow: 8px 0 32px rgba(0, 0, 0, 0.4);
	will-change: transform;
}

.rp-kz-sidebar.active {
	transform: translateX(0);
}

.rp-kz-sidebar::-webkit-scrollbar {
	width: 6px;
}

.rp-kz-sidebar::-webkit-scrollbar-thumb {
	background: rgba(101, 204, 255, 0.3);
	border-radius: 3px;
}

.rp-kz-sidebar::-webkit-scrollbar-thumb:hover {
	background: rgba(101, 204, 255, 0.6);
}

.rp-kz-sidebar__nav {
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	height: 100%;
}

.rp-kz-sidebar__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	text-decoration: none;
	color: var(--rp-text);
	font-weight: 800;
	transition: all 0.3s ease;
	margin: 0 8px;
	border-radius: 12px;
}

.rp-kz-sidebar__logo:hover {
	background: rgba(101, 204, 255, 0.12);
}

.rp-kz-sidebar__logo-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	font-size: 12px;
	color: #06121f;
	background: linear-gradient(145deg, #59c9ff, #7df0c1);
	box-shadow: 0 8px 20px rgba(89, 201, 255, 0.3);
}

.rp-kz-sidebar__logo-text {
	font-size: 14px;
	letter-spacing: 0.04em;
	flex: 1;
}

.rp-kz-sidebar__items {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 8px;
	flex: 1;
}

.rp-kz-sidebar__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 12px;
	text-decoration: none;
	color: var(--rp-text-soft);
	font-size: 14px;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
	touch-action: manipulation;
	min-height: 48px;
	-webkit-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.rp-kz-sidebar__item::before {
	content: attr(data-icon);
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.rp-kz-sidebar__item:hover,
.rp-kz-sidebar__item:active {
	color: #fff;
	border-color: rgba(101, 204, 255, 0.35);
	background: rgba(101, 204, 255, 0.14);
	padding-left: 20px;
}

.rp-kz-sidebar__item:hover::before,
.rp-kz-sidebar__item:active::before {
	transform: scale(1.2) rotate(8deg);
}

.rp-kz-sidebar-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rp-kz-sidebar-overlay.active {
	background: rgba(0, 0, 0, 0.5);
	opacity: 1;
	pointer-events: auto;
}

/* Hamburger Menu Animation */
.rp-kz-menu-toggle {
	display: none;
	appearance: none;
	border: none;
	background: rgba(255, 255, 255, 0.06);
	width: 48px;
	height: 48px;
	border-radius: 10px;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	position: relative;
	z-index: 1001;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.12);
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.rp-kz-menu-toggle:hover {
	background: rgba(101, 204, 255, 0.14);
	border-color: rgba(101, 204, 255, 0.35);
}

.rp-kz-menu-toggle__line {
	width: 24px;
	height: 2px;
	background: linear-gradient(90deg, #65ccff, #80f8cf);
	border-radius: 2px;
	transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	transform-origin: center;
}

.rp-kz-menu-toggle.active .rp-kz-menu-toggle__line:nth-child(1) {
	transform: translateY(8.5px) rotate(45deg);
}

.rp-kz-menu-toggle.active .rp-kz-menu-toggle__line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.rp-kz-menu-toggle.active .rp-kz-menu-toggle__line:nth-child(3) {
	transform: translateY(-8.5px) rotate(-45deg);
}

/* Responsive: Show hamburger and sidebar on smaller screens */
@media (max-width: 960px) {
	.rp-kz-sidebar {
		width: 85vw;
		max-width: 260px;
		-webkit-overflow-scrolling: touch;
	}

	.rp-kz-menu-toggle {
		display: flex;
	}

	.rp-kz-header__inner {
		grid-template-columns: auto auto minmax(200px, 1fr) auto !important;
	}

	.rp-kz-nav {
		display: none !important;
	}

	.rp-kz-sidebar__item {
		min-height: 48px;
		padding: 14px 14px;
	}
}

@media (max-width: 680px) {
	.rp-kz-sidebar {
		width: 80vw;
		max-width: 240px;
	}

	.rp-kz-sidebar__logo-text {
		display: none;
	}

	.rp-kz-sidebar__logo {
		justify-content: center;
	}

	.rp-kz-sidebar__item {
		font-size: 13px;
		padding: 12px 12px;
	}

	.rp-kz-sidebar__items {
		gap: 6px;
	}

	/* Ensure touch targets are large enough */
	button,
	a[role="button"],
	.rp-kz-sidebar__item {
		min-height: 44px;
		min-width: 44px;
	}
}

@media (max-width: 560px) {
	.rp-kz-sidebar {
		width: 75vw;
		max-width: 220px;
	}

	.rp-kz-menu-toggle {
		width: 44px;
		height: 44px;
	}

	.rp-kz-sidebar__logo-mark {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}

	.rp-kz-sidebar__item::before {
		font-size: 18px;
	}
}

/* Kaleoz-style homepage rebuild */
.rp-home--kz {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	gap: 0;
	font-family: "Rajdhani", "Space Grotesk", sans-serif;
}

.rp-kz-header {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	top: max(0px, env(safe-area-inset-top));
	z-index: 30;
	margin-bottom: 0;
	padding: 0;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: linear-gradient(180deg, rgba(8, 12, 24, 0.95), rgba(8, 12, 24, 0.72));
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	/* Improved scrolling performance */
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.rp-kz-topline {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: linear-gradient(140deg, rgba(15, 22, 41, 0.95), rgba(11, 17, 32, 0.9));
	margin: 14px 0 10px;
	padding: 8px 0;
}

.rp-kz-topline .rp-kz-wrap {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.rp-kz-topline a {
	text-decoration: none;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rp-text-soft);
	padding: 6px 11px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.rp-kz-topline a:hover {
	color: #fff;
	border-color: rgba(101, 204, 255, 0.45);
}

.rp-kz-header {
	position: sticky;
	top: 0;
	z-index: 30;
	margin-bottom: 0;
	padding: 0;
	backdrop-filter: blur(10px);
	background: linear-gradient(180deg, rgba(8, 12, 24, 0.95), rgba(8, 12, 24, 0.72));
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rp-kz-header__top {
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding: 10px 0;
}

.rp-kz-header__info {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.rp-kz-info-item {
	display: grid;
	gap: 2px;
	text-align: center;
}

.rp-kz-info-item strong {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rp-text-muted);
}

.rp-kz-info-item a {
	font-size: 13px;
	font-weight: 700;
	color: var(--rp-brand);
	text-decoration: none;
	transition: 0.2s ease;
}

.rp-kz-info-item a:hover {
	color: var(--rp-brand-2);
}

.rp-kz-header__main {
	padding: 12px 0;
}

.rp-kz-header__inner {
	display: grid;
	grid-template-columns: auto auto minmax(200px, 1fr) minmax(240px, 380px) auto;
	align-items: center;
	gap: 12px;
}

.rp-kz-logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--rp-text);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.rp-kz-logo__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 900;
	color: #06121f;
	background: linear-gradient(145deg, #59c9ff, #7df0c1);
	box-shadow: 0 12px 30px rgba(89, 201, 255, 0.35);
}

.rp-kz-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
	min-width: 0;
}

.rp-kz-nav a {
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	color: var(--rp-text-soft);
	padding: 8px 11px;
	border-radius: 999px;
	transition: 0.2s ease;
}

.rp-kz-nav a:hover {
	color: #fff;
	background: rgba(101, 204, 255, 0.14);
}

.rp-kz-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.rp-kz-search input {
	width: 100%;
	padding: 11px 12px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: #e9f1ff;
	font-family: inherit;
	font-size: 14px;
}

.rp-kz-search button {
	border: 0;
	border-radius: 10px;
	padding: 10px 13px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	color: #062131;
	background: linear-gradient(145deg, #5cc6ff, #87f4ce);
}

.rp-kz-actions {
	display: inline-flex;
	gap: 8px;
	justify-content: flex-end;
}

.rp-kz-nav-toggle {
	display: none;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--rp-text);
	padding: 8px 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

/* Clean Header Variant (No top bar, centered search) */
.rp-kz-header--clean {
	padding: 12px 0;
}

.rp-kz-header--clean .rp-kz-header__top {
	display: none;
}

.rp-kz-header__clean-inner {
	display: grid;
	grid-template-columns: minmax(100px, auto) minmax(280px, 500px) 1fr;
	align-items: center;
	gap: 24px;
}

.rp-kz-search--center {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	justify-self: center;
	max-width: 100%;
}

.rp-kz-search--center input {
	width: 100%;
	padding: 11px 15px;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: #e9f1ff;
	font-family: inherit;
	font-size: 14px;
	transition: all 0.3s ease;
}

.rp-kz-search--center input:focus {
	outline: none;
	border-color: rgba(101, 204, 255, 0.4);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 20px rgba(101, 204, 255, 0.2);
}

.rp-kz-search--center input::placeholder {
	color: var(--rp-text-muted);
}

.rp-kz-search--center button {
	border: 0;
	border-radius: 30px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #062131;
	background: linear-gradient(145deg, #5cc6ff, #87f4ce);
	transition: all 0.3s ease;
}

.rp-kz-search--center button:hover {
	box-shadow: 0 8px 24px rgba(92, 198, 255, 0.35);
	transform: scale(1.05);
}

.rp-kz-search--center button svg {
	width: 20px;
	height: 20px;
}

.rp-kz-header--clean__spacer {
	width: 100%;
}

@media (max-width: 1024px) {
	.rp-kz-header__clean-inner {
		grid-template-columns: auto minmax(200px, 1fr);
		gap: 16px;
	}

	.rp-kz-header--clean__spacer {
		display: none;
	}
}

@media (max-width: 640px) {
	.rp-kz-header__clean-inner {
		grid-template-columns: auto minmax(120px, 1fr);
		gap: 8px;
	}

	.rp-kz-search--center input {
		font-size: 12px;
		padding: 9px 12px;
	}

	.rp-kz-search--center button {
		width: 40px;
		height: 40px;
	}

	.rp-kz-search--center button svg {
		width: 18px;
		height: 18px;
	}
}

/* Top Promotional Banners - Auto-sliding with side-peek */
.rp-kz-top-banners {
	margin-bottom: 28px;
	position: relative;
}

.rp-kz-top-banner-slider {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	background: rgba(0, 0, 0, 0.3);
	aspect-ratio: 16 / 9;
	width: 100%;
}

.rp-kz-top-banner-slider > div {
	display: none;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	height: 100%;
}

.rp-kz-top-banner-slider > div.active {
	display: block;
	opacity: 1;
}

.rp-kz-top-banner-slide {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(101, 204, 255, 0.1), rgba(136, 249, 199, 0.05));
	border: 1px solid rgba(101, 204, 255, 0.2);
	position: relative;
}

.rp-kz-top-banner-slide a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.rp-kz-top-banner-slide img {
	width: 100%;
	height: 100%;
	aspect-ratio: 5 / 1;
	object-fit: cover;
	display: block;
}

.rp-kz-top-banner-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(101, 204, 255, 0.1), rgba(128, 248, 207, 0.08));
	color: var(--rp-text-soft);
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	padding: 20px;
}

/* Banner Navigation */
.rp-kz-top-banner-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	transform: translateY(-50%);
	padding: 0 20px;
	pointer-events: none;
	z-index: 10;
}

.rp-kz-top-banner-nav-btn {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: linear-gradient(135deg, rgba(92, 198, 255, 0.25), rgba(136, 249, 199, 0.15));
	color: #fff;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: auto;
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.rp-kz-top-banner-nav-btn:hover {
	background: linear-gradient(135deg, rgba(92, 198, 255, 0.4), rgba(136, 249, 199, 0.25));
	border-color: rgba(101, 204, 255, 0.6);
	color: #fff;
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(92, 198, 255, 0.3);
}

.rp-kz-top-banner-nav-btn svg {
	width: 24px;
	height: 24px;
}

.rp-kz-top-banner-dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 15;
}

.rp-kz-top-banner-dot {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	width: 12px;
	height: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	backdrop-filter: blur(4px);
}

.rp-kz-top-banner-dot:hover {
	background: rgba(101, 204, 255, 0.5);
	border-color: rgba(101, 204, 255, 0.6);
	transform: scale(1.15);
}

.rp-kz-top-banner-dot[aria-current="true"] {
	background: linear-gradient(135deg, #5cc6ff, #87f4ce);
	border-color: rgba(101, 204, 255, 0.8);
	box-shadow: 0 0 16px rgba(101, 204, 255, 0.5);
}

/* Image Sizing Standards */
/* Game Category Cards - Square Images */
.rp-kz-category-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center;
	border-radius: 8px;
}

/* Product Cards - Portrait Images */
.rp-kz-product-card img,
.rp-kz-item-card img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: contain;
	object-position: center;
	border-radius: 6px;
}

/* Item Row Images - Small Square */
.rp-kz-item-row__image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center;
	border-radius: 4px;
}

/* News Grid Images */
.rp-kz-news-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: contain;
	object-position: center;
	border-radius: 8px;
}

/* Feature Section Images */
.rp-kz-feature-card img {
	width: 100%;
	aspect-ratio: 2 / 1;
	object-fit: contain;
	object-position: center;
	border-radius: 8px;
}

.rp-kz-hero-card {
	padding: 28px;
	border-radius: 20px;
	border: 1px solid rgba(101, 204, 255, 0.25);
	background:
		linear-gradient(124deg, rgba(9, 18, 37, 0.96), rgba(13, 34, 62, 0.84) 58%, rgba(18, 77, 114, 0.68)),
		repeating-linear-gradient(130deg, rgba(255, 255, 255, 0.02) 0 12px, transparent 12px 24px);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
	position: relative;
	overflow: hidden;
}

.rp-kz-hero-card h1 {
	margin: 14px 0 10px;
	font-size: clamp(34px, 4.2vw, 54px);
	line-height: 0.96;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

.rp-kz-hero-card p {
	margin: 0;
	font-size: 17px;
	line-height: 1.45;
	max-width: 640px;
	color: #b8cce9;
}

.rp-kz-hero-card .rp-btn {
	margin-top: 20px;
}

.rp-kz-hero-card__meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 14px;
}

.rp-kz-hero-card__meta span {
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: #d3e7ff;
}

.rp-kz-side-banners {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.rp-kz-side-card {
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	min-height: auto;
	aspect-ratio: 3 / 2;
	text-decoration: none;
	color: #fff;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.rp-kz-side-card img,
.rp-kz-side-card__placeholder {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
	background: linear-gradient(135deg, rgba(101, 204, 255, 0.2), rgba(128, 248, 207, 0.15));
}

.rp-kz-side-card span {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.1;
	text-shadow: 0 4px 16px rgba(0, 0, 0, 0.64);
}

.rp-kz-section {
	margin-bottom: 14px;
	padding: 16px 0;
}

.rp-kz-section .rp-kz-wrap {
	padding: 16px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: linear-gradient(150deg, rgba(11, 17, 31, 0.92), rgba(9, 14, 26, 0.9));
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.27);
}

.rp-kz-section__head h2 {
	margin: 0 0 12px;
	font-size: clamp(26px, 3.8vw, 38px);
	letter-spacing: -0.02em;
}

.rp-kz-section__subhead h3 {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
}

.rp-kz-category-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.rp-kz-category-col h3 {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
}

.rp-kz-game-list,
.rp-kz-new-grid,
.rp-kz-item-list,
.rp-kz-news-grid,
.rp-kz-features-grid {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rp-kz-game-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.rp-kz-game-card {
	position: relative;
}

.rp-kz-game-card a,
.rp-kz-new-card a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--rp-text);
	transition: 0.2s ease;
	gap: 10px;
}

.rp-kz-game-card a:hover,
.rp-kz-new-card a:hover {
	transform: translateY(-4px);
}

.rp-kz-game-card a:hover img {
	border-color: rgba(101, 204, 255, 0.5);
	box-shadow: 0 8px 24px rgba(101, 204, 255, 0.2);
}

.rp-kz-game-card img,
.rp-kz-new-card img,
.rp-kz-news-grid img {
	width: 100%;
	height: 100%;
	display: block;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(101, 204, 255, 0.22), rgba(128, 248, 207, 0.16));
	border: 1px solid rgba(101, 204, 255, 0.15);
	transition: 0.2s ease;
}

.rp-kz-image-placeholder {
	width: 100%;
	aspect-ratio: 3 / 4;
	display: block;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(101, 204, 255, 0.22), rgba(128, 248, 207, 0.16));
	border: 1px solid rgba(101, 204, 255, 0.15);
}

.rp-kz-new-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.rp-kz-new-card strong,
.rp-kz-game-card strong {
	font-size: 13px;
	line-height: 1.4;
	font-weight: 600;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: var(--rp-text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
}

.rp-kz-section--items .rp-kz-wrap {
	padding-top: 14px;
	padding-bottom: 14px;
}

.rp-kz-item-list {
	display: grid;
	gap: 8px;
}

.rp-kz-item-row a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	text-decoration: none;
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(255, 255, 255, 0.03);
	color: var(--rp-text);
	transition: 0.2s ease;
}

.rp-kz-item-row a:hover {
	transform: translateY(-1px);
	border-color: rgba(128, 248, 207, 0.35);
	background: rgba(128, 248, 207, 0.08);
}

.rp-kz-item-row__main {
	display: grid;
	gap: 3px;
}

.rp-kz-item-row__main strong {
	font-size: 17px;
	line-height: 1.2;
}

.rp-kz-item-row__main span {
	font-size: 13px;
	color: var(--rp-text-soft);
}

.rp-kz-item-row__price {
	font-size: 26px;
	font-weight: 800;
	color: var(--rp-brand-2);
	white-space: nowrap;
}

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

.rp-kz-news-grid li a {
	display: grid;
	gap: 9px;
	text-decoration: none;
	color: var(--rp-text);
	padding: 10px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
}

.rp-kz-news-grid li a strong {
	font-size: 17px;
	line-height: 1.2;
}

.rp-kz-news-grid li a span {
	font-size: 13px;
	color: var(--rp-text-soft);
}

.rp-kz-features-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 12px;
}

.rp-kz-features-grid li {
	padding: 14px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
}

.rp-kz-features-grid h3 {
	margin: 0 0 6px;
	font-size: 19px;
}

.rp-kz-features-grid p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--rp-text-soft);
}

.rp-kz-guide-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.rp-kz-guide-links a {
	text-decoration: none;
	color: var(--rp-text);
	padding: 14px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(150deg, rgba(101, 204, 255, 0.08), rgba(128, 248, 207, 0.06));
}

.rp-kz-guide-links h3 {
	margin: 0 0 4px;
	font-size: 19px;
}

.rp-kz-guide-links p {
	margin: 0;
	font-size: 14px;
	color: var(--rp-text-soft);
}

.rp-kz-footer {
	margin: 10px 0 16px;
	padding-bottom: 12px;
}

.rp-kz-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 16px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: linear-gradient(145deg, rgba(10, 16, 30, 0.95), rgba(11, 22, 41, 0.9));
}

.rp-kz-footer strong {
	font-size: 26px;
	line-height: 1;
	font-weight: 800;
}

.rp-kz-footer p {
	margin: 6px 0 0;
	color: var(--rp-text-soft);
	font-size: 14px;
	max-width: 640px;
}

.rp-kz-footer__actions {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

@media (max-width: 1120px) {
	.rp-kz-header__inner {
		grid-template-columns: auto auto minmax(180px, 1fr) auto;
	}

	.rp-kz-actions {
		grid-column: 1 / -1;
		justify-content: flex-start;
	}

	.rp-kz-new-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.rp-kz-news-grid,
	.rp-kz-features-grid,
	.rp-kz-guide-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.rp-kz-nav-toggle {
		display: inline-flex;
	}

	.rp-kz-header__inner {
		grid-template-columns: auto auto minmax(0, 1fr);
	}

	.rp-kz-nav {
		display: none;
		grid-column: 1 / -1;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 2px;
	}

	.rp-kz-header.rp-kz-header--open .rp-kz-nav {
		display: flex;
	}

	.rp-kz-search {
		grid-column: 1 / -1;
	}
}

@media (min-width: 960px) {
	.rp-kz-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rp-kz-game-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.rp-kz-game-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 18px;
	}
}

.rp-kz-section:has(#rp-kz-category),
.rp-kz-section:has(#rp-kz-pc-games) {
	padding: 24px 0;
}

.rp-kz-section:has(#rp-kz-category) .rp-kz-wrap,
.rp-kz-section:has(#rp-kz-pc-games) .rp-kz-wrap {
	padding: 0 16px;
}

/* Fixed Mobile Breakpoint - Stack 2-column layouts */
@media (max-width: 680px) {
	.rp-kz-banner__grid,
	.rp-kz-category-grid,
	.rp-kz-footer__inner {
		grid-template-columns: 1fr;
	}

	.rp-kz-side-banners {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.rp-kz-wrap {
		width: calc(100% - 18px);
	}

	.rp-kz-topline {
		margin-top: 10px;
	}

	.rp-kz-logo {
		font-size: 19px;
	}

	.rp-kz-logo__mark {
		width: 34px;
		height: 34px;
		font-size: 11px;
	}

	.rp-kz-hero-card {
		padding: 18px;
	}

	.rp-kz-hero-card h1 {
		font-size: 32px;
	}

	.rp-kz-new-grid,
	.rp-kz-news-grid,
	.rp-kz-features-grid,
	.rp-kz-guide-links {
		grid-template-columns: 1fr;
	}

	.rp-kz-side-banners {
		grid-template-columns: 1fr;
	}

	.rp-kz-item-row a {
		grid-template-columns: 1fr;
	}

	.rp-kz-item-row__price {
		font-size: 22px;
	}

	.rp-kz-footer__actions {
		justify-content: flex-start;
	}

	.rp-kz-footer__actions .rp-btn {
		width: 100%;
	}
}

/* ===== GLOBAL IMAGE RESPONSIVENESS ===== */
/* All images responsive by default */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Picture elements responsive */
picture {
	display: block;
}

/* Prevent image overflow */
img, video, iframe, embed {
	max-width: 100%;
	height: auto;
}

/* ===== Hero Carousel Styles ===== */
.rp-hero-carousel-section {
	width: 100%;
	margin: 0 0 40px 0;
	padding: 0 20px;
}

.rp-hero-carousel-wrapper {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.rp-hero-carousel-container {
	position: relative;
	width: 100%;
	height: 320px;
	overflow: hidden;
	border-radius: 24px;
}

.rp-hero-carousel-track {
	display: flex;
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.rp-hero-carousel-slide {
	flex: 0 0 calc(33.333% - 16px);
	margin-right: 24px;
	position: relative;
	height: 100%;
	transform: scale(0.85);
	opacity: 0.6;
	transition: all 0.4s ease;
	z-index: 1;
}

.rp-hero-carousel-slide.prev-slide {
	margin-left: -100%;
}

.rp-hero-carousel-slide.active {
	flex: 0 0 calc(33.333% - 16px);
	transform: scale(1);
	opacity: 1;
	z-index: 3;
}

.rp-hero-carousel-card {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.rp-hero-carousel-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.rp-hero-carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 1;
}

.rp-hero-carousel-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: 40px;
}

.rp-hero-carousel-content h3 {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 8px 0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
	line-height: 1.2;
}

.rp-hero-carousel-content p {
	font-size: 14px;
	margin: 0;
	opacity: 0.95;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Navigation Buttons */
.rp-hero-carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: none;
	background: linear-gradient(135deg, rgba(92, 198, 255, 0.25), rgba(136, 249, 199, 0.15));
	backdrop-filter: blur(10px);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
	box-shadow: 0 4px 20px rgba(92, 198, 255, 0.15);
}

.rp-hero-carousel-btn:hover {
	background: linear-gradient(135deg, rgba(92, 198, 255, 0.4), rgba(136, 249, 199, 0.25));
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 30px rgba(92, 198, 255, 0.3);
}

.rp-hero-carousel-prev {
	left: -30px;
}

.rp-hero-carousel-next {
	right: -30px;
}

/* Dot Indicators */
.rp-hero-carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.rp-hero-carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.rp-hero-carousel-dot.active {
	background: #fff;
	width: 32px;
	border-radius: 6px;
}

.rp-hero-carousel-dot:hover {
	background: rgba(255, 255, 255, 0.8);
}

/* Responsive Carousel */
@media (max-width: 1024px) {
	.rp-hero-carousel-container {
		height: auto;
		aspect-ratio: 16 / 9;
		width: 100%;
	}

	.rp-hero-carousel-content h3 {
		font-size: 24px;
	}

	.rp-hero-carousel-btn {
		width: 48px;
		height: 48px;
	}

	.rp-hero-carousel-btn svg {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 768px) {
	.rp-hero-carousel-section {
		padding: 0 12px;
	}

	.rp-hero-carousel-container {
		height: auto;
		aspect-ratio: 16 / 9;
		border-radius: 16px;
		width: 100%;
	}

	.rp-hero-carousel-slide {
		flex: 0 0 calc(50% - 12px);
		margin-right: 24px;
		transform: scale(0.9);
	}

	.rp-hero-carousel-slide.active {
		flex: 0 0 calc(50% - 12px);
		transform: scale(1);
	}

	.rp-hero-carousel-content h3 {
		font-size: 20px;
	}

	.rp-hero-carousel-content p {
		font-size: 12px;
	}

	.rp-hero-carousel-content {
		padding: 24px;
	}

	.rp-hero-carousel-btn {
		width: 40px;
		height: 40px;
	}

	.rp-hero-carousel-btn svg {
		width: 20px;
		height: 20px;
	}

	.rp-hero-carousel-prev {
		left: -20px;
	}

	.rp-hero-carousel-next {
		right: -20px;
	}
}

@media (max-width: 480px) {
	.rp-hero-carousel-container {
		height: auto;
		aspect-ratio: 16 / 9;
		min-height: 160px;
		max-height: 200px;
		border-radius: 12px;
	}

	.rp-hero-carousel-slide {
		flex: 0 0 100%;
		margin-right: 0;
		transform: scale(1);
	}

	.rp-hero-carousel-content h3 {
		font-size: 16px;
	}

	.rp-hero-carousel-content p {
		display: none;
	}

	.rp-hero-carousel-content {
		padding: 16px;
	}

	.rp-hero-carousel-btn {
		width: 36px;
		height: 36px;
	}

	.rp-hero-carousel-btn svg {
		width: 18px;
		height: 18px;
	}

	.rp-hero-carousel-prev {
		left: -18px;
	}

	.rp-hero-carousel-next {
		right: -18px;
	}

	/* Homepage tiny phone optimization */
	.rp-kz-hero-card {
		padding: 14px;
	}

	.rp-kz-hero-card h1 {
		font-size: 24px;
	}

	.rp-kz-section {
		margin-bottom: 12px;
	}

	.rp-kz-section__head h2 {
		font-size: 18px;
	}
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Extra small devices (320px - 374px) */
@media (max-width: 374px) {
	html {
		font-size: 14px;
	}

	.rp-home,
	.rp-home-games,
	.rp-products,
	.rp-my-orders,
	.rp-order-shell {
		padding: 12px;
		margin: 10px 0;
		gap: 12px;
	}

	.rp-home__hero {
		grid-template-columns: 1fr;
		padding: 14px;
		gap: 14px;
	}

	.rp-home__title {
		font-size: clamp(22px, 6vw, 32px);
		margin: 8px 0 6px;
	}

	.rp-home__subtitle {
		font-size: 12px;
		line-height: 1.5;
	}

	.rp-btn {
		padding: 10px 12px;
		font-size: 11px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.rp-home__actions {
		gap: 8px;
		margin-top: 14px;
	}

	.rp-home__stats {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.rp-home__stat-card {
		padding: 12px;
	}

	.rp-home__stat-card span {
		font-size: 9px;
	}

	.rp-home__stat-card strong {
		font-size: 24px;
	}

	.rp-home__trust {
		gap: 6px;
		padding: 8px;
	}

	.rp-home__trust span {
		padding: 8px;
		font-size: 9px;
	}

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

	.rp-home__step-card {
		padding: 14px;
	}

	.rp-home__step-card span {
		width: 28px;
		height: 28px;
		font-size: 10px;
	}

	.rp-home__step-card h3 {
		font-size: 14px;
		margin: 10px 0 6px;
	}

	.rp-home__package-card,
	.rp-home__package-row {
		padding: 12px;
		gap: 10px;
	}

	.rp-home__package-row {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.rp-home__quicknav {
		padding: 12px;
		gap: 8px;
	}

	.rp-home__quicknav-item {
		padding: 8px 10px;
		font-size: 11px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.rp-home__topbar {
		flex-direction: column;
		gap: 8px;
		padding: 8px;
	}

	.rp-home__brand-mark {
		width: 28px;
		height: 28px;
		font-size: 10px;
	}

	.rp-home__brand-copy strong {
		font-size: 11px;
	}

	.rp-home__brand-copy small {
		font-size: 8px;
	}

	.rp-home__topnav {
		flex-wrap: wrap;
		gap: 4px;
	}

	.rp-home__topnav a {
		padding: 6px 10px;
		font-size: 9px;
		min-height: 36px;
		display: flex;
		align-items: center;
	}

	.rp-kz-header__clean-inner {
		grid-template-columns: auto minmax(60px, 1fr) !important;
		gap: 6px !important;
	}

	.rp-kz-search--center input {
		font-size: 11px !important;
		padding: 8px 10px !important;
	}

	.rp-kz-search--center button {
		width: 38px !important;
		height: 38px !important;
		min-height: 44px;
	}

	.rp-kz-search--center button svg {
		width: 16px !important;
		height: 16px !important;
	}

	.rp-kz-logo {
		font-size: 14px;
	}

	.rp-kz-logo__mark {
		width: 32px;
		height: 32px;
		font-size: 11px;
	}

	.rp-nav-toggle {
		min-height: 44px;
		padding: 10px 12px;
	}

	.rp-theme-toggle {
		min-height: 44px;
		padding: 10px 12px;
	}
}

/* Small devices (375px - 479px) */
@media (max-width: 479px) and (min-width: 375px) {
	.rp-home,
	.rp-home-games,
	.rp-products,
	.rp-my-orders,
	.rp-order-shell {
		padding: 14px;
		margin: 12px 0;
		gap: 14px;
	}

	.rp-home__hero {
		grid-template-columns: 1fr;
		padding: 16px;
		gap: 16px;
	}

	.rp-home__title {
		font-size: clamp(24px, 5.5vw, 36px);
		margin: 10px 0 8px;
	}

	.rp-home__subtitle {
		font-size: 13px;
		line-height: 1.6;
	}

	.rp-btn {
		min-height: 44px;
		padding: 10px 14px;
		font-size: 12px;
	}

	.rp-home__actions {
		gap: 10px;
		margin-top: 16px;
	}

	.rp-home__stats {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.rp-home__stat-card {
		padding: 14px;
	}

	.rp-home__stat-card strong {
		font-size: 26px;
	}

	.rp-home__trust {
		gap: 8px;
		padding: 10px;
	}

	.rp-home__trust span {
		padding: 10px;
		font-size: 10px;
	}

	.rp-home__catalog,
	.rp-games {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.rp-home__steps {
		grid-template-columns: 1fr;
	}

	.rp-home__step-card {
		padding: 16px;
	}

	.rp-home__step-card h3 {
		font-size: 16px;
		margin: 12px 0 8px;
	}

	.rp-home__package-card {
		padding: 14px;
	}

	.rp-home__package-row {
		padding: 14px;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.rp-home__quicknav {
		padding: 14px;
		gap: 10px;
	}

	.rp-home__quicknav-item {
		min-height: 44px;
		padding: 10px 12px;
		font-size: 12px;
	}

	.rp-home__footer-cta {
		grid-template-columns: 1fr;
		padding: 14px;
		gap: 12px;
	}

	.rp-home__footer-actions {
		justify-content: flex-start;
		gap: 8px;
	}

	.rp-kz-header__clean-inner {
		grid-template-columns: auto minmax(80px, 1fr) !important;
		gap: 8px !important;
	}

	.rp-kz-search--center input {
		font-size: 12px !important;
		padding: 9px 12px !important;
	}

	.rp-kz-search--center button {
		width: 40px !important;
		height: 40px !important;
		min-height: 44px;
	}

	.rp-kz-search--center button svg {
		width: 18px !important;
		height: 18px !important;
	}

	.rp-kz-logo {
		font-size: 16px;
	}

	.rp-kz-logo__mark {
		width: 34px;
		height: 34px;
		font-size: 12px;
	}

	.rp-nav-toggle,
	.rp-theme-toggle {
		min-height: 44px;
		padding: 10px 12px;
		font-size: 10px;
	}
}

/* Mobile devices (480px - 559px) */
@media (max-width: 559px) {
	.rp-home,
	.rp-home-games,
	.rp-products,
	.rp-my-orders,
	.rp-order-shell {
		padding: 16px;
		margin: 14px 0;
		gap: 16px;
	}

	.rp-home__hero {
		grid-template-columns: 1fr;
		padding: 18px;
		gap: 18px;
	}

	.rp-home__title {
		font-size: clamp(26px, 5.2vw, 40px);
		margin: 12px 0 10px;
	}

	.rp-home__steps {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.rp-home__step-card {
		padding: 18px;
	}

	.rp-home__step-card h3 {
		font-size: 18px;
		margin: 14px 0 10px;
	}

	.rp-btn {
		min-height: 44px;
		padding: 10px 16px;
		font-size: 13px;
		width: 100%;
	}

	.rp-home__actions .rp-btn,
	.rp-home__footer-actions .rp-btn {
		width: 100%;
	}

	.rp-home__actions {
		flex-direction: column;
		gap: 10px;
	}

	.rp-home__stats {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.rp-home__stat-card {
		padding: 16px;
	}

	.rp-home__stat-card strong {
		font-size: 28px;
	}

	.rp-home__trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 12px;
	}

	.rp-home__trust span {
		padding: 12px;
		font-size: 11px;
	}

	.rp-home__catalog,
	.rp-games {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.rp-home__package-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.rp-home__package-side {
		justify-items: start;
	}

	.rp-home__quicknav-item {
		width: 100%;
		justify-content: center;
		min-height: 44px;
		padding: 12px;
		font-size: 12px;
	}

	.rp-home__topbar {
		flex-wrap: wrap;
		gap: 10px;
		padding: 12px;
	}

	.rp-home__topnav {
		flex-wrap: wrap;
		width: 100%;
	}

	.rp-home__topnav a {
		min-height: 40px;
		font-size: 11px;
		padding: 8px 12px;
	}

	.rp-kz-header__clean-inner {
		grid-template-columns: auto minmax(120px, 1fr) !important;
		gap: 10px !important;
	}

	.rp-kz-search--center {
		width: 100%;
	}

	.rp-kz-search--center input {
		font-size: 13px !important;
		padding: 10px 14px !important;
	}

	.rp-kz-search--center button {
		width: 42px !important;
		height: 42px !important;
		min-height: 44px;
	}

	.rp-nav-toggle,
	.rp-theme-toggle {
		min-height: 44px;
		padding: 10px 14px;
	}

	.rp-field input,
	.rp-field select {
		min-height: 44px;
		font-size: 14px;
	}
}

/* Tablet devices (560px - 639px) */
@media (max-width: 639px) {
	.rp-kz-header__info {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		font-size: 11px;
	}

	.rp-kz-info-item strong {
		font-size: 9px;
	}

	.rp-kz-info-item a {
		font-size: 12px;
	}

	.rp-kz-nav {
		gap: 4px;
		font-size: 12px;
	}

	.rp-kz-nav a {
		padding: 7px 10px;
		font-size: 11px;
	}

	.rp-product-card {
		width: 100%;
		max-width: 100%;
	}

	.rp-product-card__img {
		max-height: 160px;
		height: auto;
	}

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

	.rp-kz-new-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.rp-kz-side-banners {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
	}

	.rp-home__hero {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.rp-order-layout {
		grid-template-columns: 1fr;
	}
}

/* Extra spacious mobile view - stack everything */
@media (max-width: 640px) {
	.rp-home__packages {
		grid-template-columns: 1fr;
	}

	.rp-home__package-card {
		padding: 16px;
		gap: 12px;
	}

	.rp-home__package-top h3 {
		font-size: 16px;
	}

	.rp-home__package-price {
		font-size: 26px;
	}

	.rp-home__footer-cta {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.rp-home__footer-copy h2 {
		font-size: clamp(18px, 4vw, 24px);
		margin: 0 0 8px;
	}

	.rp-home__footer-copy p {
		font-size: 13px;
	}

	.rp-home__footer-actions {
		width: 100%;
		justify-content: flex-start;
	}

	.rp-home__footer-actions .rp-btn {
		width: 100%;
	}
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
	.rp-hero-carousel-section {
		margin: 0 0 20px;
	}

	.rp-hero-carousel-container {
		height: 140px;
	}

	.rp-hero-carousel-content h3 {
		font-size: 14px;
		margin: 0 0 4px;
	}

	.rp-hero-carousel-btn {
		width: 32px;
		height: 32px;
	}

	.rp-home__hero {
		padding: 14px;
		gap: 12px;
	}

	.rp-home__title {
		font-size: 24px;
		margin: 6px 0 4px;
	}

	.rp-home__stats {
		gap: 8px;
	}

	.rp-home__stat-card {
		padding: 10px;
	}

	.rp-home__stat-card strong {
		font-size: 18px;
	}
}