body,
html {
	margin: 0;
	padding: 0;
}

/* Theme */
:root {
	--G4M3R-black: #000;
	--G4M3R-lightblack: #111;
	--G4M3R-white: #fff;
	--G4M3R-dirtywhite: #ccc;
	--G4M3R-darkerwhite: #eee;
	--G4M3R-green: #bee600;
	--G4M3R-darkgreen: #119e00;
	--G4M3R-violet: #6e0ff0;
	--G4M3R-lightviolet: #79629a;
	--G4M3R-gray: #f5f5f5;
	--G4M3R-darkgray: #707070;
	--G4M3R-darkestgray: #5a5a5a;
	--G4M3R-pink: #b50067;
	--G4M3R-font-primary: 'Syne', sans-serif;
	--G4M3R-font-secondary: 'Chakra Petch', sans-serif;
	--G4M3R-padd-xxxs: 4px;
	--G4M3R-padd-xxs: 6px;
	--G4M3R-padd-xs: 8px;
	--G4M3R-padd-sm: 16px;
	--G4M3R-padd-md: 24px;
	--G4M3R-padd-lg: 32px;
	--G4M3R-padd-xl: 48px;
	--G4M3R-padd-xxl: 64px;
	--G4M3R-padd-xxxl: 112px;
}

#gamer .gamer__button {
	background: none;
	position: relative;
	font-family: var(--G4M3R-font-secondary);
	font-size: 16px;
	display: inline-flex;
	padding: 10px 30px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	text-align: center;
	font-weight: 760;
	letter-spacing: 3.2px;
	cursor: pointer;
	width: auto;
	box-shadow: none;
	border-radius: 0;
}

#gamer .gamer__button--full {
	width: 100% !important;
}

#gamer .gamer__button--primary--outline {
	background: none;
	color: var(--G4M3R-green);
	border: 2px solid var(--G4M3R-green);
	box-shadow: 3px 3px 0px 0px var(--G4M3R-green);
}

#gamer .gamer__button--primary--outline:hover {
	border: 2px solid var(--G4M3R-violet);
	box-shadow: 3px 3px 0px 0px var(--G4M3R-violet);
	color: var(--G4M3R-violet);
}

#gamer .gamer__button--secondary--outline {
	background: none;
	color: var(--G4M3R-violet);
	border: 2px solid var(--G4M3R-violet);
	box-shadow: 3px 3px 0px 0px var(--G4M3R-violet);
}

#gamer .gamer__button--secondary--outline:hover {
	border: 2px solid var(--G4M3R-green);
	box-shadow: 3px 3px 0px 0px var(--G4M3R-green);
	color: var(--G4M3R-green);
}

#gamer .gamer__button--secondary {
	background: var(--G4M3R-violet);
	color: var(--G4M3R-white);
	fill: var(--G4M3R-white);
	border: 2px solid var(--G4M3R-violet);
	box-shadow: 3px 3px 0px 0px var(--G4M3R-green);
}

#gamer .gamer__button--secondary:hover {
	background: var(--G4M3R-green);
	color: var(--G4M3R-violet);
	border: 2px solid var(--G4M3R-green);
	box-shadow: 3px 3px 0px 0px var(--G4M3R-violet);
}

#gamer .gamer__button--smaller {
	font-size: 14px;
}

#gamer .gamer__button img {
	transition: 0.2s ease-in-out;
}

#gamer .gamer__button--square {
	position: relative;
	font-size: 24px;
	padding: 0;
	width: 35px;
	height: 32px;
	line-height: 100%;
	z-index: 1;
	flex-shrink: 0;
}

#gamer .gamer__button--square svg {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 2;
}

#gamer .gamer__button--square svg {
	position: relative;
	width: 16px;
}

@media (min-width: 992px) {
	#gamer .gamer__button--square {
		width: 44px;
		height: 40px;
	}
}

#gamer .gamer__button--text {
	display: flex;
	gap: var(--G4M3R-padd-xs);
	flex-direction: row;
	background: none;
	border: none;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	max-height: 42px;
}

#gamer .gamer__button--text:hover {
	background-color: var(--G4M3R-gray);
}

#gamer .gamer__button--text span {
	color: var(--G4M3R-lightviolet) !important;
	pointer-events: none;
	user-select: none;
}

#gamer .gamer__button--text img {
	pointer-events: none;
	user-select: none;
	transition: 0.6s;
}

#gamer .gamer__frontsquare {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: var(--G4M3R-violet);
	z-index: 1;
	pointer-events: none;
	user-select: none;
}

#gamer .gamer__backsquare {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 100%;
	height: 100%;
	background-color: var(--G4M3R-green);
	pointer-events: none;
	user-select: none;
}

#gamer .gamer__button--square:hover .gamer__frontsquare {
	background-color: var(--G4M3R-green);
}

#gamer .gamer__button--square:hover svg {
	fill: var(--G4M3R-violet);
}

#gamer .gamer__button--square:hover .gamer__backsquare {
	background-color: var(--G4M3R-violet);
}

#gamer .gamer__backsquare--black-outline {
	top: -8px;
	left: -8px;
	border: 2px solid var(--G4M3R-black);
	background-color: unset;
	z-index: -1;
}

#gamer a {
	text-decoration: none;
}

#gamer img {
	max-width: unset;
}

/* slider */
#gamer .swiper {
	overflow: visible;
}
#gamer .swiper-initialized {
	position: relative;
}

#gamer .swiper-wrapper {
	display: flex;
	align-items: stretch;
	padding-bottom: var(--G4M3R-padd-lg);
}

#gamer .swiper-scrollbar {
	position: relative;
}

#gamer .swiper-buttons {
	display: none;
	position: absolute;
	top: calc(50% - 20px);
	width: 100%;
	z-index: 2;
}

@media (min-width: 576px) {
	#gamer .swiper-buttons {
		display: block;
	}
}

#gamer .swiper-button-prev {
	position: absolute;
	left: -28px;
}

#gamer .swiper-button-next {
	position: absolute;
	right: -16px;
}

#gamer .swiper-button-disabled {
	display: none;
}

#gamer .swiper-button-prev svg {
	position: relative;
}

#gamer .swiper-button-next svg {
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
#gamer .swiper-button-prev::after,
#gamer .swiper-button-next::after {
	content: '';
}

#gamer .swiper-scrollbar {
	border-radius: 0;
}

#gamer .swiper-scrollbar-drag {
	background-color: var(--G4M3R-violet);
	border-radius: 0;
	position: absolute !important;
}

#gamer .swiper-slide img {
	max-width: 100%;
}

/* Sticky Bar */
#gamer .gamer__bar {
	position: fixed;
	top: 0;
	left: 50%;
	right: 0;
	width: 100%;
	max-width: 1156px;
	z-index: 10;
	transition: 0.32s ease-in-out;
	transform: translate(-50%, -100%);
}

#gamer .gamer__bar.show {
	transform: translate(-50%, 48px);
}

@media (min-width: 900px) {
	#gamer .gamer__bar.show {
		transform: translate(-50%, 104px);
	}
}

#gamer .gamer__bar-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--G4M3R-padd-sm);
	background-color: rgba(0, 0, 0, 0.6);
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	color: var(--G4M3R-white);
	backdrop-filter: blur(15px);
	padding: var(--G4M3R-padd-xs) var(--G4M3R-padd-md);
	transition: 0.2s ease-in-out;
	cursor: pointer;
}

@media (min-width: 576px) and (hover: hover) {
	#gamer .gamer__bar-content {
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		background: rgba(0, 0, 0, 0.2);
	}
}

@media (min-width: 992px) {
	#gamer .gamer__bar-content {
		flex-direction: row;
		align-items: center;
		gap: 0;
		padding: var(--G4M3R-padd-xs) var(--G4M3R-padd-xxl);
	}
}

#gamer .gamer__bar-content-name {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

#gamer .gamer__bar-content-name img {
	max-width: 96px;
}

@media (min-width: 576px) {
	#gamer .gamer__bar-content-name img {
		max-width: unset;
	}
}

@media (min-width: 992px) {
	#gamer .gamer__bar-content-name {
		display: contents;
	}
}

#gamer .gamer__bar-content h4 {
	order: 2;
	white-space: nowrap;
}

#gamer .gamer__bar-content * {
	opacity: 1;
	transition: 0.2s ease-in-out;
}

@media (min-width: 576px) and (hover: hover) {
	#gamer .gamer__bar-content * {
		opacity: 0.6;
	}
}

#gamer .gamer__bar-content-all-specs {
	position: relative;
	opacity: 1;
	padding-left: 8px;
	white-space: nowrap;
	transition: none;
}

@media (min-width: 576px) and (hover: hover) {
	#gamer .gamer__bar-content-all-specs {
		position: absolute;
		opacity: 0;
	}
}

#gamer .gamer__bar-content-all-specs .highlight {
	color: var(--G4M3R-green);
	text-decoration: underline;
	padding-left: 8px;
}

@media (min-width: 576px) and (hover: hover) {
	#gamer .gamer__bar:hover .gamer__bar-content {
		background-color: rgba(0, 0, 0, 0.6);
		border-bottom: 1px solid rgba(255, 255, 255, 0.6);
		padding: var(--G4M3R-padd-sm) var(--G4M3R-padd-md);
	}

	#gamer .gamer__bar:hover .gamer__bar-content * {
		opacity: 1;
	}

	#gamer .gamer__bar:hover .gamer__bar-content-all-specs {
		position: relative;
		opacity: 1;
	}
}

@media (min-width: 992px) and (hover: hover) {
	#gamer .gamer__bar:hover .gamer__bar-content {
		padding: var(--G4M3R-padd-md) var(--G4M3R-padd-xxl);
	}
}

/* Typography */
#gamer h1,
#gamer h2,
#gamer h3,
#gamer h4,
#gamer h5,
#gamer h6 {
	font-variant-numeric: lining-nums; /* fixes numerals */
	color: inherit;
}

#gamer h1 {
	font-size: 4em;
	font-weight: 760;
	margin: 0;
	line-height: 100%;
}

#gamer h2 {
	font-size: 2.25em;
	line-height: 125%;
	margin: 0;
	font-weight: 760;
	letter-spacing: 0;
}

#gamer h3 {
	font-size: 2em;
	font-weight: 760;
	margin: 0;
	line-height: 125%;
}

#gamer h4 {
	font-family: var(--G4M3R-font-primary);
	font-size: 1.5em;
	font-weight: 760;
	line-height: 125%;
	margin: 0;
}

#gamer h5 {
	font-size: 1.25em;
	font-weight: 760;
	margin: 0;
}

#gamer p {
	font-family: var(--G4M3R-font-secondary);
	color: inherit;
	line-height: 150%;
	font-weight: 400;
	font-size: 1.25em;
	margin: 0;
	padding: initial;
}

#gamer p.smaller,
#gamer span.smaller {
	font-size: 14px;
}

@media (min-width: 992px) {
	#gamer p.smaller,
	#gamer span.smaller {
		font-size: 1em;
	}
}

#gamer .bold {
	font-weight: 700;
}

/* General */
#gamer {
	position: relative;
	font-family: var(--G4M3R-font-primary);
	font-size: 12px;
	max-width: 1156px;
	margin: 0 auto 42px auto;
	scroll-behavior: smooth;
	overflow-x: hidden;
	color: var(--G4M3R-black);

	/* font smoothing */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (min-width: 576px) {
	#gamer {
		font-size: 13px;
	}
}

@media (min-width: 768px) {
	#gamer {
		font-size: 14px;
	}
}

@media (min-width: 992px) {
	#gamer {
		font-size: 15px;
	}
}

@media (min-width: 1200px) {
	#gamer {
		font-size: 16px;
	}
}

#gamer * {
	box-sizing: border-box;
	word-wrap: inherit !important;
}

#gamer .gamer__padding {
	padding: var(--G4M3R-padd-md);
}

@media (min-width: 576px) {
	#gamer .gamer__padding {
		padding: var(--G4M3R-padd-xl);
	}
}

@media (min-width: 992px) {
	#gamer .gamer__padding {
		padding: var(--G4M3R-padd-xxl);
	}
}

#gamer .gamer__section-heading {
	margin-bottom: var(--G4M3R-padd-xl);
}

#gamer .gamer__section-heading h2 {
	margin-bottom: var(--G4M3R-padd-sm);
}

#gamer .gamer__section-heading--white h2 {
	color: var(--G4M3R-white);
}

#gamer .gamer__section-heading--white p {
	color: var(--G4M3R-dirtywhite);
}

#gamer .gfx {
	position: absolute;
	z-index: 1;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

#gamer .gfx--relative {
	position: relative;
	width: 100%;
}

/* Hero */
#gamer .gamer__hero {
	position: relative;
	background-color: var(--G4M3R-black);
	height: 600px;
	color: var(--G4M3R---white, #fff);
	padding-bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.1) 60%), url('./elite-background.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 32% bottom;
}
@media (min-width: 992px) {
	#gamer .gamer__hero {
		background: url('./elite-background.jpg');
		background-size: 1140px;
		background-repeat: no-repeat;
		background-position: 50% bottom;
		background-color: var(--G4M3R-black);
	}
}

#gamer .gamer__hero-gfx--1 {
	display: none;
	right: 0;
	top: 0;
	max-width: 100%;
	width: 420px;
}

@media (min-width: 992px) {
	#gamer .gamer__hero-gfx--1 {
		display: block;
	}
}

#gamer .gamer__hero-gfx--2 {
	right: 14px;
	bottom: 18px;
}

#gamer .gamer__hero-gfx--3 {
	display: none;
	bottom: -60px;
	right: 32px;
}

@media (min-width: 992px) {
	#gamer .gamer__hero-gfx--3 {
		display: block;
	}
}

#gamer .gamer__hero-arrow {
	left: 50%;
	bottom: -50px;
	transform: translateX(-50%);
}

#gamer .gamer__hero-logo {
	margin-bottom: var(--G4M3R-padd-xxxl);
}

#gamer .gamer__hero-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--G4M3R-padd-lg);
}

#gamer .gamer__hero-copy span {
	display: block;
	font-size: 1.5em;
	font-weight: 760;
	line-height: 125%;
	max-width: 490px;
}

/* Features */
#gamer .gamer__features {
	padding-top: var(--G4M3R-padd-xxl);
	background-color: var(--G4M3R-gray);
	position: relative;
}

@media (min-width: 992px) {
	#gamer .gamer__features {
		padding-top: var(--G4M3R-padd-xxl);
	}
}

#gamer .gamer__features p {
	max-width: 1000px;
	font-family: var(--G4M3R-font-secondary);
}

#gamer .gamer__features-boxes {
	font-family: var(--G4M3R-font-secondary);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--G4M3R-padd-lg);
	z-index: 1;
}

@media (min-width: 992px) {
	#gamer .gamer__features-boxes {
		flex-direction: row;
	}
}

#gamer .gamer__features-boxes--item {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: stretch;
	flex-basis: 33.333%;
	padding: var(--G4M3R-padd-sm);
	color: var(--G4M3R-white);
	min-height: 200px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

#gamer .gamer__features-boxes--item:hover {
	opacity: 0.86;
}

#gamer .gamer__features-boxes--item:hover .gamer__features-boxes--item-bg img {
	transform: scale(1.04);
}

#gamer .gamer__features-boxes--item.show:hover {
	opacity: 1;
}

@media (min-width: 992px) {
	#gamer .gamer__features-boxes--item {
		min-height: 260px;
		padding: var(--G4M3R-padd-md);
	}
}

#gamer .gamer__features-boxes--item-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	user-select: none;
}

#gamer .gamer__features-boxes--item-bg img {
	width: 100%;
	height: 100%;
	transition: 0.32s ease-in-out;
	object-fit: cover;
}

#gamer .gamer__features-boxes--item[data-feature='1'] {
	position: relative;
}

#gamer .gamer__features-boxes--item[data-feature='1']::after {
	content: url('https://lp.x-kom.pl/a/static/gamer-kp-2023/rc-03/hero-plus/assets/gfx-flame.svg');
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	position: absolute;
	left: 8px;
	top: -48px;
}

#gamer .gamer__features-boxes--item[data-feature='2'] {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.1) 60%),
		url('https://lp.x-kom.pl/a/static/gamer-kp-2023/rc-03/hero-plus/assets/features-2.jpg?v=2.0');
}

#gamer .gamer__features-boxes--item[data-feature='2']::after {
	content: url('https://lp.x-kom.pl/a/static/gamer-kp-2023/rc-03/hero-plus/assets/gfx-smile.svg');
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	position: absolute;
	right: 52px;
	top: 24px;
}

#gamer .gamer__features-boxes--item[data-feature='3'] {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.1) 60%),
		url('https://lp.x-kom.pl/a/static/gamer-kp-2023/rc-03/hero-plus/assets/features-3.jpg?v=2.0');
}

#gamer .gamer__features-boxes--item[data-feature='3']::after {
	content: url('https://lp.x-kom.pl/a/static/gamer-kp-2023/rc-03/hero-plus/assets/gfx-glare.svg');
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	position: absolute;
	right: 6px;
	top: -32px;
}

#gamer .gamer__features-boxes--item-details {
	opacity: 0;
	position: absolute;
	background: rgba(0, 0, 0, 0.6);
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	padding: var(--G4M3R-padd-md) var(--G4M3R-padd-sm);
	transition: 0.32s ease-in-out;
	pointer-events: none;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	z-index: 1;
}

@media (min-width: 992px) {
	#gamer .gamer__features-boxes--item-details {
		padding: var(--G4M3R-padd-lg) var(--G4M3R-padd-md);
	}
}

#gamer .gamer__features-boxes--item-details span {
	opacity: 0;
	display: block;
	transform: translateY(8px);
	transition: 0.32s ease-in-out;
}

#gamer .gamer__features-boxes--item.show .gamer__features-boxes--item-details {
	opacity: 1;
}

#gamer .gamer__features-boxes--item.show .gamer__features-boxes--item-details span {
	transform: none;
	opacity: 1;
}

#gamer .gamer__features-boxes--item.show .gamer__features-boxes--item-content .gamer__button--square {
	position: relative;
	z-index: 2;
}

#gamer .gamer__features-boxes--item.show .gamer__features-boxes--item-content .gamer__button--square img {
	transform: rotate(45deg);
}

#gamer .gamer__features-boxes--item-details span {
	line-height: 150%;
}

#gamer .gamer__features-boxes--item-content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 12px;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#gamer .gamer__features-boxes--item-content h5 {
	font-family: var(--G4M3R-font-primary);
	transition: 0.32s ease-in-out;
}

#gamer .gamer__features-boxes--item-content h5.move {
	transform: translateX(32px);
	opacity: 0;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
	#gamer .gamer__features-boxes--item-content h5 {
		font-size: 1em;
	}
}

/* Award */
#gamer .gamer__award {
	position: relative;
	background-image: url('https://lp.x-kom.pl/a/static/gamer-kp-2023/rc-03/hero-plus/assets/award-bg.svg?v=2.0');
	background-color: var(--G4M3R-gray);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 100px;
	padding-bottom: 100px;
}

#gamer .gamer__award h4 {
	color: var(--G4M3R-violet);
	margin-bottom: var(--G4M3R-padd-sm);
}

#gamer .gamer__award p {
	line-height: 24px;
	font-style: italic;
}

#gamer .gamer__award-content {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: var(--G4M3R-padd-xl) var(--G4M3R-padd-lg);
	border: 1px solid var(--G4M3R-violet);
	background-color: var(--G4M3R-gray);
	gap: var(--G4M3R-padd-md);
}

@media (min-width: 768px) {
	#gamer .gamer__award-content {
		flex-direction: row;
	}
}

#gamer .gamer__award-content .gfx {
	width: 58px;
	height: 58px;
	bottom: -28px;
	left: 50%;
	transform: translateX(-50%);
}

#gamer .gamer__award-content-copy {
	flex-basis: 60%;
}

#gamer .gamer__award-content-logo {
	display: flex;
	justify-content: flex-end;
	flex-basis: 40%;
}

#gamer .gamer__award-content-logo img {
	width: 100%;
	max-width: 300px;
}

/* Power */
#gamer .gamer__power {
	position: relative;
	background-color: var(--G4M3R-black);
	padding: 0;
	padding-bottom: var(--G4M3R-padd-xl);
}

#gamer .gamer__power .gamer__section-heading {
	padding-right: 25%;
	padding-bottom: 0;
	margin-bottom: 0;
}

@media (min-width: 768px) {
	#gamer .gamer__power .gamer__section-heading {
		margin-bottom: var(--G4M3R-padd-xl);
	}
}

#gamer .gamer__power .gfx {
	width: 60%;
	max-width: 220px;
	top: -54px;
	right: -120px;
}

@media (min-width: 992px) {
	#gamer .gamer__power .gfx {
		width: 100%;
		max-width: 282px;
		right: 26px;
	}
}

#gamer .gamer__power-content {
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	#gamer .gamer__power-content {
		flex-direction: row;
		gap: var(--G4M3R-padd-xl);
		padding: 0;
		padding-right: var(--G4M3R-padd-md);
	}
}

#gamer .gamer__power-content-image {
	flex-basis: 56%;
}

#gamer .gamer__power-content-image img {
	max-width: 120%;
	margin-top: -46px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

@media (min-width: 992px) {
	#gamer .gamer__power-content-image img {
		transform: scale(1.1);
		transform-origin: left top;
		max-width: 100%;
		gap: var(--G4M3R-padd-xl);
	}
}

#gamer .gamer__power-content-info {
	position: relative;
	display: grid;
	flex-basis: 46%;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--G4M3R-padd-lg);
	margin-top: -46px;
	z-index: 1;
}

@media (min-width: 992px) {
	#gamer .gamer__power-content-info {
		gap: var(--G4M3R-padd-xl);
		margin-top: 0;
	}
}

#gamer .gamer__power-content-info-item {
	color: white;
}

#gamer .gamer__power-content-info-item img {
	margin-bottom: var(--G4M3R-padd-xs);
}

#gamer .gamer__power-content-info-item p:nth-child(2) {
	color: var(--G4M3R-darkgray);
}

#gamer .gamer__power-content-info-item h4 {
	color: var(--G4M3R-green);
	margin-bottom: var(--G4M3R-padd-sm);
}

/* Tech */
#gamer .gamer__tech {
	position: relative;
	background-color: var(--G4M3R-gray);
}

#gamer .gamer__tech .gamer__section-heading {
	padding-right: 25%;
	margin-bottom: var(--G4M3R-padd-xxl);
}

#gamer .gamer__tech .gfx {
	width: 60%;
	max-width: 220px;
	top: 32px;
	right: -120px;
}

@media (min-width: 992px) {
	#gamer .gamer__tech .gfx {
		right: 32px;
		width: 100%;
		max-width: 282px;
	}
}

#gamer .gamer__tech-boxes {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--G4M3R-padd-md);
}

@media (min-width: 768px) {
	#gamer .gamer__tech-boxes {
		gap: var(--G4M3R-padd-lg);
	}
}

#gamer .gamer__tech-boxes-item {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--G4M3R-gray);
	grid-column: span 1;
	padding: var(--G4M3R-padd-md);
	overflow: hidden;
	min-height: 260px;
}

@media (min-width: 576px) {
	#gamer .gamer__tech-boxes-item {
		min-height: 200px;
	}
}

@media (min-width: 992px) {
	#gamer .gamer__tech-boxes-item {
		min-height: unset;
	}
}

@media (min-width: 1200px) {
	#gamer .gamer__tech-boxes-item {
		padding: var(--G4M3R-padd-lg);
	}
}

#gamer .gamer__tech-boxes-item p {
	position: relative;
	z-index: 1;
}

@media (min-width: 992px) {
	#gamer .gamer__tech-boxes-item--1 p,
	#gamer .gamer__tech-boxes-item--2 p,
	#gamer .gamer__tech-boxes-item--6 p,
	#gamer .gamer__tech-boxes-item--7 p {
		max-width: 58%;
	}
}

#gamer .gamer__tech-boxes-item h3,
#gamer .gamer__tech-boxes-item h4 {
	position: relative;
	z-index: 1;
	margin-bottom: var(--G4M3R-padd-md);
}

@media (max-width: 992px) {
	#gamer .gamer__tech-boxes-item h3,
	#gamer .gamer__tech-boxes-item h4 {
		font-size: 1.6em;
		margin-bottom: var(--G4M3R-padd-sm);
	}
}

@media (min-width: 992px) {
	#gamer .gamer__tech-boxes-item h4 {
		font-size: 1.38em;
	}
}

#gamer .gamer__tech-boxes-item--1 {
	background-image: url('./tech-bg-1.jpg?v=2.2');
}

#gamer .gamer__tech-boxes-item--2 {
	background-image: url('./tech-bg-2.jpg?v=2.2');
}

#gamer .gamer__tech-boxes-item--1::before,
#gamer .gamer__tech-boxes-item--2::before,
#gamer .gamer__tech-boxes-item--3::before,
#gamer .gamer__tech-boxes-item--4::before,
#gamer .gamer__tech-boxes-item--5::before,
#gamer .gamer__tech-boxes-item--6::before,
#gamer .gamer__tech-boxes-item--7::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0));
	z-index: 1;
}

#gamer .gamer__tech-boxes-item--4 {
	background-image: url('./tech-bg-4.jpg?v=2.0');
}

#gamer .gamer__tech-boxes-item--6 {
	background-image: url('./tech-bg-6.jpg?v=2.2');
}

#gamer .gamer__tech-boxes-item--7 {
	background-image: url('./tech-bg-7.jpg?v=2.2');
}

@media (min-width: 992px) {
	#gamer .gamer__tech-boxes {
		grid-template-columns: repeat(6, 1fr);
	}

	#gamer .gamer__tech-boxes-item--1 {
		grid-column: span 3;
		min-height: 360px;
	}

	#gamer .gamer__tech-boxes-item--2 {
		grid-column: span 3;
		min-height: 360px;
	}

	#gamer .gamer__tech-boxes-item--3 {
		grid-column: span 2;
		min-height: 440px;
	}

	#gamer .gamer__tech-boxes-item--4 {
		grid-column: span 2;
		min-height: 440px;
	}

	#gamer .gamer__tech-boxes-item--5 {
		grid-column: span 2;
		min-height: 440px;
	}

	#gamer .gamer__tech-boxes-item--6 {
		grid-column: span 3;
		min-height: 468px;
	}

	#gamer .gamer__tech-boxes-item--7 {
		grid-column: span 3;
		min-height: 468px;
	}

	#gamer .gamer__tech-boxes-item--1::before,
	#gamer .gamer__tech-boxes-item--2::before,
	#gamer .gamer__tech-boxes-item--6::before,
	#gamer .gamer__tech-boxes-item--7::before {
		background: none;
	}
}

#gamer .gamer__tech-video-background {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 80%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: bottom;
	object-position: bottom;
}

/* Reviews */
#gamer .gamer__reviews {
	background-color: var(--G4M3R-gray);
	overflow-x: hidden;
}

#gamer .gamer__reviews .swiper-slide {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: var(--G4M3R-white);
	padding: var(--G4M3R-padd-sm) var(--G4M3R-padd-lg) var(--G4M3R-padd-lg) var(--G4M3R-padd-lg);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: auto;
}

#gamer .gamer__reviews .gamer__reviews-logo {
	max-width: 100%;
	margin-bottom: var(--G4M3R-padd-md);
}

#gamer .gamer__reviews-author {
	margin-top: auto;
}

#gamer .gamer__reviews-author img:first-child {
	display: flex;
	margin-left: auto;
	margin-top: var(--G4M3R-padd-sm);
}

#gamer .gamer__reviews-author img:nth-child(2) {
	width: 100%;
}

#gamer .gamer__reviews-author p {
	font-style: normal;
}

#gamer .gamer__reviews-author h5 {
	padding-top: 20px;
}

/* Footer */
#gamer .gamer__footer {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: var(--G4M3R-padd-sm);
	background-color: var(--G4M3R-gray);
	padding-bottom: 60px;
	background-image: url('https://lp.x-kom.pl/a/static/gamer-kp-2023/rc-03/hero-plus/assets/footer-gfx.svg');
	background-repeat: no-repeat;
	background-position: center bottom;
}

@media (min-width: 768px) {
	#gamer .gamer__footer {
		flex-direction: row;
		gap: 0;
		padding-top: 0;
	}
}

@media (min-width: 992px) {
	#gamer .gamer__footer {
		padding-left: 12%;
		padding-right: 12%;
	}
}

#gamer .gamer__footer img:nth-child(2) {
	order: 3;
}

@media (min-width: 576px) {
	#gamer .gamer__footer img:nth-child(2) {
		order: unset;
	}
}

#gamer .gamer__footer-social {
	display: flex;
	align-items: center;
	gap: var(--G4M3R-padd-md);
}

/* Door-to-door */
#gamer .gamer__door {
	position: relative;
	background-color: var(--G4M3R-violet);
	color: var(--G4M3R-white);
}

#gamer .gamer__door::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	z-index: 1;
}

@media (min-width: 768px) {
	#gamer .gamer__door::before {
		background: none;
	}
}

#gamer .gamer__door .gamer__section-heading {
	margin-bottom: var(--G4M3R-padd-sm);
}

@media (min-width: 768px) {
	#gamer .gamer__door .gamer__section-heading {
		margin-bottom: var(--G4M3R-padd-xl);
	}
}

#gamer .gamer__door-content {
	display: flex;
}

@media (min-width: 576px) {
	#gamer .gamer__door-content-copy {
		flex-basis: 60%;
	}
}

@media (min-width: 768px) {
	#gamer .gamer__door-content-copy {
		flex-basis: 50%;
		padding-right: 42px;
	}

	#gamer .gamer__door-content-copy h5 {
		max-width: 400px;
	}
}

#gamer .gamer__door-content-copy,
#gamer .gamer__door .gamer__section-heading {
	position: relative;
	z-index: 1;
}

#gamer .gamer__door-content-packshot {
	flex-basis: 50%;
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	width: 100%;
}

@media (min-width: 768px) {
	#gamer .gamer__door-content-packshot {
		width: 58%;
	}
}

#gamer .gamer__door-content-packshot img {
	max-width: 100%;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	object-position: left;
}

/* Compare */
#gamer .gamer__compare {
	position: relative;
	background-color: var(--G4M3R-gray);
}

#gamer .gamer__compare .gfx:first-child {
	width: 60%;
	max-width: 134px;
	top: 48px;
	right: -80px;
}

@media (min-width: 992px) {
	#gamer .gamer__compare .gfx:first-child {
		top: 16px;
		right: 96px;
		width: 100%;
		max-width: 134px;
	}
}

#gamer .gamer__compare .bold {
	color: var(--G4M3R-black);
}

#gamer .gamer__compare-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--G4M3R-padd-sm);
}

@media (min-width: 992px) {
	#gamer .gamer__compare-wrapper {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--G4M3R-padd-lg);
	}
}

#gamer .gamer__compare-wrapper p,
#gamer .gamer__compare-wrapper span {
	font-size: 14px;
	color: var(--G4M3R-darkgray);
}

#gamer .gamer__compare-item {
	position: relative;
	background-color: var(--G4M3R-white);
	padding: var(--G4M3R-padd-lg) var(--G4M3R-padd-sm);
	width: 100%;
}

@media (min-width: 576px) {
	#gamer .gamer__compare-item {
		padding: var(--G4M3R-padd-lg) var(--G4M3R-padd-xxl);
	}
}

@media (min-width: 768px) {
	#gamer .gamer__compare-item {
		padding: var(--G4M3R-padd-xl) var(--G4M3R-padd-xxxl);
	}
}

@media (min-width: 992px) {
	#gamer .gamer__compare-item {
		padding: var(--G4M3R-padd-lg);
	}
}

#gamer .gamer__compare-item-show-specs {
	padding-left: 0;
	padding-right: 0;
}

#gamer .gamer__compare-item-show-specs span {
	font-size: 12px;
}

#gamer .gamer__compare-item--current {
	order: -2;
}

#gamer .gamer__compare-item--higher {
	order: -1;
}

@media (min-width: 992px) {
	#gamer .gamer__compare-item--current {
		order: 0;
	}

	#gamer .gamer__compare-item--higher {
		order: 0;
	}
}

@media (min-width: 992px) {
	#gamer .gamer__compare-item--taller::before,
	#gamer .gamer__compare-item--taller::after {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		width: 100%;
		height: 24px;
		background-color: var(--G4M3R-white);
	}

	#gamer .gamer__compare-item--taller::before {
		top: -24px;
	}

	#gamer .gamer__compare-item--taller::after {
		bottom: -24px;
	}
}

#gamer .gamer__compare-item-details {
	display: flex;
	gap: var(--G4M3R-padd-xs);
	margin-bottom: var(--G4M3R-padd-xs);
}

@media (min-width: 992px) {
	#gamer .gamer__compare-item-details {
		flex-direction: column;
	}
}

#gamer .gamer__compare-item-details-packshot {
	width: 100px;
	max-width: 100%;
}

@media (min-width: 992px) {
	#gamer .gamer__compare-item-details-packshot {
		width: unset;
	}
}

#gamer .gamer__compare-item-details-packshot img {
	max-width: 100%;
	width: 100%;
}

#gamer .gamer__compare-item-details-info h5 {
	margin-bottom: 2px;
}

#gamer .gamer__compare-item-specs {
	overflow: hidden;
	max-height: 0;
	transition: 0.6s ease-in-out;
}

@media (min-width: 992px) {
	#gamer .gamer__compare-item-specs {
		display: block;
		max-height: 100% !important;
	}
}

#gamer .gamer__compare-item-badge {
	display: flex;
	align-items: center;
	gap: var(--G4M3R-padd-xxs);
	font-family: var(--G4M3R-font-secondary);
	font-size: 14px;
	font-weight: 400;
	padding: var(--G4M3R-padd-xs) 0;
}

#gamer .gamer__compare-item--lower .gamer__compare-item-badge span {
	color: var(--G4M3R-pink);
}

#gamer .gamer__compare-item--current .gamer__compare-item-badge span {
	color: var(--G4M3R-violet);
}

#gamer .gamer__compare-item--higher .gamer__compare-item-badge span {
	color: var(--G4M3R-darkgreen);
}

#gamer .gamer__compare-item-benchmark {
	padding: var(--G4M3R-padd-sm) 0;
}

#gamer .gamer__compare-item-benchmark > p {
	margin-bottom: var(--G4M3R-padd-xs);
}

#gamer .gamer__compare-item-components {
	padding: var(--G4M3R-padd-sm) 0;
}

#gamer .gamer__compare-item-components-item {
	margin-bottom: 12px;
}

#gamer .gamer__compare-item-components-item:last-child {
	margin-bottom: 0;
}

#gamer .gamer__compare .gamer__button {
	margin-top: var(--G4M3R-padd-xs);
}

@media (min-width: 992px) {
	#gamer .gamer__compare .gamer__button {
		margin-top: var(--G4M3R-padd-md);
	}
}

@media (min-width: 992px) {
	#gamer .gamer__compare .gamer__button--text {
		display: none;
	}
}

#gamer .gamer__compare-all-products {
	display: flex;
	justify-content: center;
	margin-top: var(--G4M3R-padd-lg);
}

/* Benchmark */
#gamer .gamer__benchmark {
	position: relative;
	background-color: var(--G4M3R-black);
	overflow-x: hidden;
	padding-bottom: 0;
}

#gamer .gamer__benchmark .gfx {
	width: 60%;
	max-width: 216px;
	top: 20px;
	right: -120px;
	opacity: 0.7;
}

@media (min-width: 992px) {
	#gamer .gamer__benchmark .gfx {
		width: 100%;
		height: auto;
		right: 26px;
	}
}
#gamer .gamer__benchmark-chart p {
	color: var(--G4M3R-white);
	padding-left: 54px;
	margin-bottom: -8px;
}

#gamer .gamer__benchmark-game {
	position: relative;
	background-color: rgba(34, 34, 34, 0.7);
}

#gamer .gamer__benchmark-game > * {
	pointer-events: none;
}

#gamer .gamer__benchmark-game::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 3px;
	width: 100%;
	background-color: var(--G4M3R-darkestgray);
	transition: 0.2s ease-in-out;
}

#gamer .gamer__benchmark-game.gamer__benchmark-game--active::after {
	background-color: var(--G4M3R-green);
	height: 4px;
}

#gamer .gamer__benchmark .swiper-wrapper {
	position: relative;
}

#gamer .gamer__benchmark .swiper::after {
	content: '';
	position: absolute;
	top: -16px;
	right: -64px;
	width: 20%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.9) 80%);
	z-index: 1;
	pointer-events: none;
	user-select: none;
}

/* Services */
#gamer .gamer__services {
	position: relative;
	background-color: var(--G4M3R-darkerwhite);
}

#gamer .gamer__services .gfx {
	width: 60%;
	max-width: 220px;
	top: 0;
	right: -120px;
}

@media (min-width: 992px) {
	#gamer .gamer__services .gfx {
		width: 100%;
		max-width: 282px;
		right: 26px;
	}
}

#gamer .gamer__services .gamer__section-heading,
#gamer .gamer__services .gamer__services-wrapper {
	position: relative;
	z-index: 1;
}

#gamer .gamer__services button {
	border: none;
}

#gamer .gamer__services-wrapper {
	display: flex;
	flex-direction: column;
	gap: var(--G4M3R-padd-lg);
}

#gamer .gamer__services-wrapper-item {
	background-color: var(--G4M3R-white);
	padding: var(--G4M3R-padd-md);
	cursor: pointer;
	overflow: hidden;
}

@media (min-width: 992px) {
	#gamer .gamer__services-wrapper-item {
		padding: var(--G4M3R-padd-md) var(--G4M3R-padd-lg);
	}
}

#gamer .gamer__services-wrapper-item:hover .gamer__button--square .gamer__frontsquare {
	background-color: var(--G4M3R-green);
}

#gamer .gamer__services-wrapper-item:hover .gamer__button--square svg {
	fill: var(--G4M3R-violet);
}

#gamer .gamer__services-wrapper-item:hover .gamer__button--square .gamer__backsquare {
	background-color: var(--G4M3R-violet);
}

#gamer .gamer__services-wrapper-item > div:first-child {
	pointer-events: none;
}

#gamer .gamer__services-wrapper-item h4 {
	margin-bottom: var(--G4M3R-padd-xxxs);
}

#gamer .gamer__services-wrapper-item-content {
	max-height: 0;
	overflow: hidden;
	transition: 0.4s ease-in-out;
	opacity: 0;
}

#gamer .gamer__services-wrapper-item.show .gamer__services-wrapper-item-content {
	margin-top: var(--G4M3R-padd-lg);
	opacity: 1;
}

#gamer .gamer__services-wrapper-item .gamer__services-wrapper-item-header svg {
	transition: transform 0.3s ease-in-out;
	height: 100%;
	width: 100%;
}

#gamer .gamer__services-wrapper-item.show .gamer__services-wrapper-item-header svg {
	transform: rotate(180deg);
}

#gamer .gamer__services-wrapper-item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#gamer .gamer__services-wrapper-item-header > div:first-child {
	padding-right: 12%;
}

/* ===============================
   Hero (Nagłówek)
   =============================== */
#gamer h1 {
	font-size: 48px;
}

#gamer .gamer__hero {
	max-height: 350px;
	background-image: url('https://lp.x-kom.pl/a/static/gamer-kp-2023/rc-03/hero-plus/assets/top__hero-photo-blur.png');
	background-position: top;
}

#gamer .gamer__hero-logo {
	margin-bottom: var(--G4M3R-padd-xl);
}

/* ===============================
Sekcja Pomocy
=============================== */
#gamer .gamer__help {
	background-color: var(--G4M3R-black);
}

#gamer .gamer__help-boxes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	color: var(--G4M3R-white);
}

#gamer .gamer__help-boxes-item {
	background: rgba(110, 15, 240, 0.4);
	grid-column: span 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

#gamer .gamer__help-boxes-item--1 {
}

#gamer .gamer__help-boxes-item--2 {
}

#gamer .gamer__help-boxes-item--3 {
}

#gamer .gamer__help-boxes-item-title {
	color: var(--G4M3R-green);
}

#gamer .gamer__help-boxes-item h4 {
}

/* ===============================
Sekcja Zakupów
=============================== */
#gamer .gamer__buy {
	background: url('https://lp.x-kom.pl/a/static/gamer/elite/elite-background.jpg');
	background-size: 1600px;
	background-repeat: no-repeat;
	background-position: 50% center;
	background-color: var(--G4M3R-black);
}

#gamer .gamer__buy-boxes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	color: var(--G4M3R-white);
}

#gamer .gamer__buy-boxes-item {
	background: rgba(0, 0, 0, 0.5);
	grid-column: span 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	backdrop-filter: blur(16px);
}

#gamer .gamer__buy-boxes-item-title {
	color: var(--G4M3R-green);
}

#gamer .gamer__buy-boxes-item h2 {
	color: var(--G4M3R-green);
	line-height: 100%;
}

#gamer .gamer__buy-boxes-item h2 span {
	color: var(--G4M3R-white);
	font-size: 24px;
}

#gamer .gamer__buy-boxes-item[data-feature='1']::after {
	content: '';
	display: block;
	position: absolute;
	top: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	background: url('https://lp.x-kom.pl/a/static/gamer-kp-2023/rc-03/hero-plus/assets/gfx-glare.svg') no-repeat center;
	background-size: contain;
	user-select: none;
	pointer-events: none;
}

#gamer .gamer__buy-boxes-item[data-feature='2']::after {
	content: '';
	display: block;
	position: absolute;
	top: 24px;
	right: 24px;
	width: 46px;
	height: 45px;
	background: url('https://lp.x-kom.pl/a/static/gamer-kp-2023/rc-03/hero-plus/assets/gfx-smile.svg') no-repeat center;
	background-size: contain;
	user-select: none;
	pointer-events: none;
}

/* ===============================
Sekcja Informacji
=============================== */
#gamer .gamer__information {
	position: relative;
	background-color: var(--G4M3R-gray);
}

#gamer .gamer__information .gfx {
	width: 60%;
	max-width: 220px;
	top: 18px;
	right: -120px;
}

#gamer .gamer__information-boxes {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#gamer .gamer__information-boxes-item {
	display: flex;
	gap: 16px;
	padding: 12px 24px;
	background-color: var(--G4M3R-white);
}

#gamer .gamer__information-boxes-item p {
	font-size: 16px;
}

#gamer .gamer__information-boxes-item .bold {
	font-weight: 700;
}

#gamer .gamer__information-boxes-item a {
	text-decoration: underline;
	color: inherit;
}

/* ===============================
Media Queries
=============================== */
@media (min-width: 992px) {
	#gamer .gamer__information .gfx {
		right: 32px;
		width: 100%;
		max-width: 186px;
	}
}

@media (max-width: 992px) {
	#gamer .gamer__hero {
		background-color: var(--G4M3R-black);
	}

	#gamer .gamer__help-boxes {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 32px;
		color: var(--G4M3R-white);
	}
}

@media (max-width: 768px) {
	#gamer .gamer__buy-boxes {
		grid-template-columns: repeat(1, 1fr);
	}

	#gamer .gamer__buy-boxes-item h2 span {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	#gamer h1 {
		font-size: 38px;
	}

	#gamer .gamer__hero-copy span {
		color: var(--G4M3R-green);
	}

	#gamer .gamer__information-boxes-item p {
		font-size: 13px;
	}

	#gamer .gamer__information .gfx {
		top: 35px;
		right: -55px;
		max-width: 140px;
	}

	#gamer .gamer__hero {
		max-height: 280px;
	}

	#gamer .gamer__buy {
		background-size: 1500px;
	}
}