:root {
	--gp-bg: #f5f1e7;
	--gp-surface: #fffdf7;
	--gp-surface-strong: #ffffff;
	--gp-ink: #211c16;
	--gp-muted: #766d61;
	--gp-line: #e4ddcf;
	--gp-dark: #2a2118;
	--gp-dark-soft: #473421;
	--gp-accent: #ffcc33;
	--gp-accent-strong: #f2ae00;
	--gp-success: #52b788;
	--gp-radius-sm: 12px;
	--gp-radius: 20px;
	--gp-radius-lg: 28px;
	--gp-shadow: 0 16px 44px rgba(58, 43, 27, 0.1);
	--gp-shadow-sm: 0 8px 24px rgba(58, 43, 27, 0.08);
	--gp-topbar-height: 82px;
	--gp-sidebar-width: 300px;
	--gp-ad-rail-gap: 24px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 88% 8%, rgba(255, 204, 51, 0.16), transparent 25rem),
		var(--gp-bg);
	color: var(--gp-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.gp-menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	color: inherit;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--gp-surface-strong);
	border-radius: 8px;
	box-shadow: var(--gp-shadow-sm);
}

.gp-topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--gp-topbar-height);
	background: rgba(255, 253, 247, 0.9);
	border-bottom: 1px solid rgba(228, 221, 207, 0.9);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.gp-topbar__inner {
	display: grid;
	grid-template-columns: minmax(225px, var(--gp-sidebar-width)) minmax(260px, 650px) auto;
	align-items: center;
	gap: 28px;
	width: min(100% - 40px, 1540px);
	height: 100%;
	margin: 0 auto;
}

.gp-brand {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-width: 0;
}

.gp-brand__fallback {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.gp-brand__logo {
	display: block;
	max-width: min(220px, 100%);
	max-height: 54px;
	overflow: hidden;
}

.gp-brand__logo .custom-logo-link {
	display: flex;
	align-items: center;
	max-width: 100%;
	height: 54px;
}

.gp-brand__logo img {
	display: block;
	width: auto !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: 54px !important;
	object-fit: contain;
}

.gp-brand__mark {
	display: grid;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	place-items: center;
	background: var(--gp-dark);
	color: var(--gp-accent);
	border-radius: 14px;
	font-size: 22px;
	font-weight: 900;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.22);
}

.gp-brand__copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.15;
}

.gp-brand__copy strong {
	overflow: hidden;
	font-size: 19px;
	font-weight: 900;
	letter-spacing: -0.03em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gp-brand__copy small {
	margin-top: 5px;
	overflow: hidden;
	color: var(--gp-muted);
	font-size: 11px;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gp-topbar__search {
	width: 100%;
}

.gp-topbar__search form,
.gp-empty-state form {
	position: relative;
	margin: 0;
}

.gp-topbar__search label,
.gp-empty-state label {
	display: block;
}

.gp-topbar__search input[type="search"],
.gp-empty-state input[type="search"] {
	width: 100%;
	min-height: 48px;
	padding: 0 118px 0 18px;
	background: #f4f0e7;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--gp-ink);
	outline: none;
	transition: 160ms ease;
}

.gp-topbar__search input[type="search"]:focus,
.gp-empty-state input[type="search"]:focus {
	background: var(--gp-surface-strong);
	border-color: var(--gp-accent-strong);
	box-shadow: 0 0 0 4px rgba(255, 204, 51, 0.2);
}

.gp-topbar__search input[type="submit"],
.gp-empty-state input[type="submit"] {
	position: absolute;
	top: 5px;
	right: 5px;
	height: 38px;
	padding: 0 18px;
	background: var(--gp-dark);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
}

.gp-library-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	justify-self: end;
	min-height: 44px;
	padding: 0 18px;
	background: var(--gp-accent);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 900;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
	transition: transform 160ms ease, background 160ms ease;
}

.gp-library-link:hover {
	background: #ffd75b;
	transform: translateY(-1px);
}

.gp-icon-button,
.gp-menu-toggle {
	display: none;
}

.gp-layout {
	display: grid;
	grid-template-columns: var(--gp-sidebar-width) minmax(0, 1fr);
	gap: 34px;
	width: min(100% - 40px, 1540px);
	margin: 0 auto;
}

.gp-sidebar {
	position: relative;
	z-index: 35;
}

.gp-sidebar__panel {
	position: sticky;
	top: calc(var(--gp-topbar-height) + 20px);
	max-height: calc(100vh - var(--gp-topbar-height) - 40px);
	padding: 20px 14px;
	overflow-x: hidden;
	overflow-y: auto;
	background: #ead6aa;
	border: 1px solid rgba(71, 52, 33, 0.08);
	border-radius: 0 0 24px 24px;
	box-shadow: var(--gp-shadow-sm);
	scrollbar-width: thin;
}

.gp-sidebar__eyebrow,
.gp-kicker {
	margin: 0 0 8px;
	color: #9a7212;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gp-sidebar__eyebrow {
	padding: 0 12px;
	color: #775a35;
}

.gp-category-nav {
	display: grid;
	gap: 8px;
}

.gp-category-nav__item {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	align-items: center;
	min-height: 48px;
	padding: 7px 13px;
	background: rgba(255, 253, 247, 0.58);
	border: 1px solid rgba(71, 52, 33, 0.08);
	border-radius: 14px;
	font-size: 13px;
	font-weight: 800;
	transition: 160ms ease;
}

.gp-category-nav__item:hover,
.gp-category-nav__item:focus-visible {
	background: var(--gp-surface-strong);
	border-color: rgba(71, 52, 33, 0.18);
	transform: translateX(3px);
}

.gp-category-nav__item.is-hot {
	background: var(--gp-dark-soft);
	color: #fff6dd;
}

.gp-category-nav__item > span:first-child {
	font-size: 16px;
}

.gp-sidebar__ad {
	width: calc(100% + 30px);
	max-width: 300px;
	margin: 18px -15px 0;
	padding: 10px 0 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: hidden;
}

.gp-sidebar-backdrop {
	display: none;
}

.gp-main {
	min-width: 0;
	padding-bottom: 60px;
}

.gp-page {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	padding: 26px 0 0;
}

.gp-ad {
	display: grid;
	min-height: 112px;
	margin-bottom: 26px;
	padding: 12px;
	place-items: center;
	background: rgba(255, 255, 255, 0.48);
	border: 1px dashed #d7cfc0;
	border-radius: var(--gp-radius);
	color: var(--gp-muted);
	text-align: center;
}

.gp-ad--player {
	min-height: 96px;
	margin-top: 22px;
}

.gp-ad-label {
	display: block;
	margin-bottom: 6px;
	color: #9a9286;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.gp-ad .widget,
.gp-sidebar__ad .widget {
	width: 100%;
	margin: 0;
}

.gp-sidebar__ad .widget {
	width: 100%;
	max-width: 300px;
}

.gp-sidebar__ad iframe,
.gp-sidebar__ad ins,
.gp-sidebar__ad img {
	max-width: 300px;
}

.gp-game-ad-layout {
	display: block;
}

.gp-game-ad-layout.has-ad-rail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	align-items: start;
	gap: var(--gp-ad-rail-gap);
}

.gp-game-ad-layout__main {
	min-width: 0;
}

.gp-game-ad-rail {
	position: sticky;
	top: calc(var(--gp-topbar-height) + 18px);
	display: grid;
	width: 300px;
	min-height: 600px;
	padding: 8px 0 0;
	overflow: hidden;
	place-items: start center;
	background: rgba(255, 255, 255, 0.42);
	border: 1px dashed #d7cfc0;
	border-radius: var(--gp-radius);
	color: var(--gp-muted);
	text-align: center;
}

.gp-game-ad-rail .gp-ad-label {
	width: 100%;
}

.gp-game-ad-rail .widget {
	width: 300px;
	max-width: 300px;
	margin: 0;
}

.gp-game-ad-rail iframe,
.gp-game-ad-rail ins,
.gp-game-ad-rail img {
	max-width: 300px;
}

.gp-hero {
	padding: 18px;
	background: var(--gp-surface-strong);
	border: 1px solid rgba(71, 52, 33, 0.09);
	border-radius: var(--gp-radius-lg);
	box-shadow: var(--gp-shadow);
}

.gp-hero__heading,
.gp-single-game__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: 6px 4px 18px;
}

.gp-hero h1,
.gp-single-game h1,
.gp-archive-header h1,
.gp-empty-state h1,
.gp-article h1 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.75rem);
	line-height: 1.02;
	letter-spacing: -0.055em;
}

.gp-hero__heading p:not(.gp-kicker),
.gp-single-game__header p:not(.gp-kicker) {
	max-width: 720px;
	margin: 8px 0 0;
	color: var(--gp-muted);
}

.gp-hero__badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.gp-hero__badges span {
	padding: 7px 11px;
	background: #f5f0e7;
	border-radius: 999px;
	color: #62584b;
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

.gp-hero__rating {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 18px 6px 2px;
}

.gp-hero__rating > div:first-child {
	display: grid;
	gap: 3px;
}

.gp-hero__rating > div:first-child strong {
	font-size: 15px;
}

.gp-hero__rating > div:first-child span {
	color: var(--gp-muted);
	font-size: 12px;
}

.gp-hero__rating .gpc-rating {
	justify-content: flex-end;
}

.gp-hero__rating .gpc-rating__message {
	text-align: right;
}

.gp-section {
	margin-top: 46px;
}

.gp-section__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.gp-section__heading h2,
.gp-content-card h2,
.gp-game-meta h2 {
	margin: 0;
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	line-height: 1.15;
	letter-spacing: -0.04em;
}

.gp-section__heading > a,
.gp-text-link {
	color: #7f5d0b;
	font-size: 13px;
	font-weight: 900;
}

.gp-game-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.gp-game-card {
	min-width: 0;
	overflow: hidden;
	background: var(--gp-surface-strong);
	border: 1px solid rgba(71, 52, 33, 0.09);
	border-radius: 17px;
	box-shadow: var(--gp-shadow-sm);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.gp-game-card:hover {
	box-shadow: 0 16px 34px rgba(58, 43, 27, 0.14);
	transform: translateY(-4px);
}

.gp-game-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, #56402a, #211c16);
}

.gp-game-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.gp-game-card:hover .gp-game-card__media img {
	transform: scale(1.045);
}

.gp-game-card__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 20, 14, 0.42), transparent 60%);
	content: "";
}

.gp-game-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	font-size: 40px;
}

.gp-game-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	background: var(--gp-accent);
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
	font-size: 14px;
	opacity: 0;
	transform: translate(-50%, -43%) scale(0.88);
	transition: 180ms ease;
}

.gp-game-card:hover .gp-game-card__play,
.gp-game-card:focus-within .gp-game-card__play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.gp-game-card__tag {
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 2;
	max-width: calc(100% - 16px);
	padding: 4px 8px;
	overflow: hidden;
	background: rgba(33, 28, 22, 0.82);
	border-radius: 999px;
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.gp-game-card__rating {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
	padding: 4px 8px;
	background: rgba(255, 204, 51, 0.94);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
	color: #2a2118;
	font-size: 10px;
	font-weight: 900;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.gp-game-card__body {
	padding: 13px 14px 15px;
}

.gp-game-card__body h3 {
	margin: 0;
	overflow: hidden;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: -0.02em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gp-game-card__body p {
	margin: 5px 0 0;
	overflow: hidden;
	color: var(--gp-muted);
	font-size: 11px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gp-content-card {
	margin-top: 46px;
	padding: clamp(24px, 4vw, 48px);
	background: var(--gp-surface);
	border: 1px solid rgba(71, 52, 33, 0.09);
	border-radius: var(--gp-radius-lg);
	box-shadow: var(--gp-shadow-sm);
}

.gp-guide {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(28px, 5vw, 70px);
}

.gp-guide__intro > p:not(.gp-kicker) {
	color: var(--gp-muted);
}

.gp-guide__details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.gp-guide__details > div {
	padding: 22px;
	background: #f2ece0;
	border: 1px solid #e6dcc9;
	border-radius: var(--gp-radius);
}

.gp-guide__details > div > span {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	place-items: center;
	background: var(--gp-dark);
	border-radius: 12px;
	color: var(--gp-accent);
	font-size: 18px;
}

.gp-guide__details h3 {
	margin: 0 0 8px;
	font-size: 16px;
}

.gp-guide__details p {
	margin: 0;
	color: var(--gp-muted);
	font-size: 13px;
}

.gp-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	color: var(--gp-muted);
	font-size: 12px;
}

.gp-breadcrumbs a:hover {
	color: var(--gp-ink);
	text-decoration: underline;
}

.gp-single-game {
	padding: 18px;
	background: var(--gp-surface-strong);
	border: 1px solid rgba(71, 52, 33, 0.09);
	border-radius: var(--gp-radius-lg);
	box-shadow: var(--gp-shadow);
}

.gp-favorite-button {
	flex: 0 0 auto;
	min-height: 42px;
	padding: 0 16px;
	background: #f3eee4;
	border: 1px solid #e5dccd;
	border-radius: 999px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
}

.gp-single-game__actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: flex-end;
	gap: 9px;
}

.gp-single-game__actions .gpc-rating {
	justify-content: flex-end;
}

.gp-rating-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 42px;
	padding: 0 14px;
	background: #fff4c2;
	border: 1px solid #ecd783;
	border-radius: 999px;
	color: #5f4700;
	font-size: 13px;
	font-weight: 900;
}

.gp-rating-pill small {
	color: #806c32;
	font-size: 10px;
	font-weight: 700;
}

.gp-favorite-button.is-active {
	background: #ffe4e0;
	border-color: #ffb9b0;
	color: #b72c1e;
}

.gp-single-game__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 250px;
	gap: clamp(30px, 5vw, 68px);
	padding: clamp(24px, 4vw, 48px) clamp(6px, 2vw, 24px) 20px;
}

.gp-prose {
	font-size: 16px;
}

.gp-prose > *:first-child {
	margin-top: 0;
}

.gp-prose > *:last-child {
	margin-bottom: 0;
}

.gp-prose h2 {
	margin: 2em 0 0.65em;
}

.gp-prose h3 {
	margin: 1.5em 0 0.6em;
	font-size: 1.25rem;
}

.gp-prose p,
.gp-prose li {
	color: #4f473d;
}

.gp-prose a {
	color: #7a5700;
	text-decoration: underline;
	text-decoration-color: #d9b55b;
	text-underline-offset: 3px;
}

.gp-prose img {
	border-radius: var(--gp-radius);
}

.gp-control-box {
	padding: 16px 18px;
	background: #f2ece0;
	border-left: 4px solid var(--gp-accent-strong);
	border-radius: 4px 14px 14px 4px;
}

.gp-game-meta {
	align-self: start;
	padding: 20px;
	background: #f2ece0;
	border: 1px solid #e5dac7;
	border-radius: var(--gp-radius);
}

.gp-game-meta h2 {
	font-size: 19px;
}

.gp-game-meta dl {
	margin: 18px 0 0;
}

.gp-game-meta dt {
	margin-top: 14px;
	color: var(--gp-muted);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.gp-game-meta dd {
	margin: 3px 0 0;
	font-size: 13px;
	font-weight: 700;
}

.gp-faq {
	margin-top: 40px;
}

.gp-faq details {
	padding: 0 0;
	border-top: 1px solid var(--gp-line);
}

.gp-faq details:last-child {
	border-bottom: 1px solid var(--gp-line);
}

.gp-faq summary {
	padding: 17px 32px 17px 0;
	cursor: pointer;
	font-weight: 800;
	list-style-position: outside;
}

.gp-faq details p {
	margin: -5px 0 18px;
}

.gp-archive-header {
	padding: clamp(30px, 5vw, 60px);
	background: var(--gp-dark);
	border-radius: var(--gp-radius-lg);
	color: #fff9e9;
	box-shadow: var(--gp-shadow);
}

.gp-archive-header .gp-kicker {
	color: var(--gp-accent);
}

.gp-archive-header > p:last-child,
.gp-archive-header > div {
	max-width: 650px;
	margin: 14px 0 0;
	color: #cfc2b2;
}

.gp-game-grid--archive {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 28px;
}

.gp-empty-state {
	display: grid;
	min-height: 520px;
	padding: 50px;
	place-items: center;
	align-content: center;
	background: var(--gp-surface-strong);
	border: 1px solid var(--gp-line);
	border-radius: var(--gp-radius-lg);
	box-shadow: var(--gp-shadow);
	text-align: center;
}

.gp-empty-state__icon {
	display: grid;
	width: 86px;
	height: 86px;
	margin-bottom: 20px;
	place-items: center;
	background: var(--gp-dark);
	border-radius: 26px;
	color: var(--gp-accent);
	font-size: 36px;
	font-weight: 900;
	transform: rotate(-3deg);
}

.gp-empty-state p:not(.gp-kicker) {
	max-width: 600px;
	color: var(--gp-muted);
}

.gp-empty-state form {
	width: min(100%, 520px);
	margin: 20px auto;
}

.gp-button,
button.gp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	background: var(--gp-accent);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 999px;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
	cursor: pointer;
	font-size: 13px;
	font-weight: 900;
}

.gp-post-list {
	display: grid;
	gap: 16px;
	margin-top: 28px;
}

.gp-post-card {
	padding: 26px;
	background: var(--gp-surface-strong);
	border: 1px solid var(--gp-line);
	border-radius: var(--gp-radius);
}

.gp-post-card h2 {
	margin: 0;
	font-size: 1.6rem;
	letter-spacing: -0.03em;
}

.gp-post-card p:last-child {
	margin-bottom: 0;
	color: var(--gp-muted);
}

.gp-article {
	max-width: 900px;
	margin-right: auto;
	margin-left: auto;
}

.gp-article header {
	margin-bottom: 30px;
}

.gp-comments {
	max-width: 900px;
	margin-right: auto;
	margin-left: auto;
}

.gp-comments input[type="text"],
.gp-comments input[type="email"],
.gp-comments input[type="url"],
.gp-comments textarea {
	width: 100%;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid var(--gp-line);
	border-radius: var(--gp-radius-sm);
}

.gp-comments input[type="submit"] {
	min-height: 44px;
	padding: 0 18px;
	background: var(--gp-dark);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-weight: 800;
}

.gp-comments .comment-list {
	display: grid;
	gap: 14px;
	margin: 24px 0 34px;
	padding: 0;
	list-style: none;
}

.gp-comments .comment-body {
	padding: 18px;
	background: #f5f0e7;
	border: 1px solid var(--gp-line);
	border-radius: 16px;
}

.gp-comments .comment-meta {
	font-size: 12px;
}

.gp-comments .comment-author {
	display: flex;
	align-items: center;
	gap: 9px;
	font-weight: 800;
}

.gp-comments .avatar {
	border-radius: 50%;
}

.gp-comments .children {
	margin: 14px 0 0 28px;
	padding: 0;
	list-style: none;
}

.gp-pagination {
	margin-top: 30px;
}

.gp-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gp-pagination .page-numbers {
	display: grid;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	place-items: center;
	background: var(--gp-surface-strong);
	border: 1px solid var(--gp-line);
	border-radius: 10px;
	font-size: 13px;
	font-weight: 800;
}

.gp-pagination .current {
	background: var(--gp-dark);
	border-color: var(--gp-dark);
	color: #fff;
}

.gp-footer {
	margin-left: calc(var(--gp-sidebar-width) + ((100vw - min(100% - 40px, 1540px)) / 2) + 34px);
	padding: 42px 20px 100px;
	background: var(--gp-dark);
	color: #d8ccbd;
}

.gp-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 40px;
	max-width: 1180px;
	margin: 0 auto;
}

.gp-footer__brand {
	color: #fff;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.gp-footer__column h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.01em;
}

.gp-footer__about p {
	max-width: 440px;
	line-height: 1.65;
}

.gp-footer__column ul {
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
}

.gp-footer__column a {
	color: #eee5da;
	font-size: 13px;
}

.gp-footer p {
	margin: 7px 0 0;
	font-size: 12px;
}

.gp-footer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gp-footer a:hover {
	color: var(--gp-accent);
}

.gp-footer__legal {
	max-width: 1180px;
	margin: 30px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gp-mobile-nav {
	display: none;
}

@media (max-width: 1300px) {
	.gp-game-ad-layout.has-ad-rail {
		display: block;
	}

	.gp-game-ad-rail {
		display: none;
	}
}

@media (max-width: 1240px) {
	.gp-game-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1020px) {
	:root {
		--gp-topbar-height: 70px;
	}

	.gp-topbar__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 12px;
		width: min(100% - 24px, 900px);
	}

	.gp-icon-button,
	.gp-menu-toggle {
		display: grid;
		width: 42px;
		height: 42px;
		place-items: center;
		background: #f1ece3;
		border: 1px solid var(--gp-line);
		border-radius: 12px;
		cursor: pointer;
	}

	.gp-brand__copy small,
	.gp-topbar__search,
	.gp-library-link span:last-child {
		display: none;
	}

	body.gp-search-open .gp-topbar__search {
		position: fixed;
		top: calc(var(--gp-topbar-height) + 8px);
		right: 12px;
		left: 12px;
		z-index: 80;
		display: block;
		padding: 10px;
		background: var(--gp-surface-strong);
		border: 1px solid var(--gp-line);
		border-radius: 18px;
		box-shadow: var(--gp-shadow);
	}

	.gp-brand {
		justify-self: start;
	}

	.gp-brand__logo,
	.gp-brand__logo .custom-logo-link {
		max-width: 180px;
		height: 46px;
	}

	.gp-brand__logo img {
		max-height: 46px !important;
	}

	.gp-library-link {
		width: 42px;
		min-height: 42px;
		padding: 0;
	}

	.gp-layout {
		display: block;
		width: min(100% - 24px, 900px);
	}

	.gp-sidebar {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		z-index: 100;
		width: min(84vw, 300px);
		padding: 12px;
		transform: translateX(-105%);
		transition: transform 220ms ease;
	}

	.gp-sidebar.is-open {
		transform: translateX(0);
	}

	.gp-sidebar__panel {
		position: static;
		max-height: 100%;
		border-radius: 22px;
	}

	.gp-sidebar-backdrop {
		position: fixed;
		inset: 0;
		z-index: 90;
		display: block;
		background: rgba(20, 15, 10, 0.54);
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
	}

	.gp-sidebar-backdrop[hidden] {
		display: none;
	}

	.gp-footer {
		margin-left: 0;
	}
}

@media (max-width: 760px) {
	body {
		padding-bottom: 70px;
	}

	.gp-page {
		padding-top: 14px;
	}

	.gp-hero,
	.gp-single-game {
		padding: 10px;
		border-radius: 20px;
	}

	.gp-hero__heading,
	.gp-single-game__header {
		align-items: flex-start;
		padding: 8px 4px 14px;
	}

	.gp-single-game__header {
		flex-direction: column;
	}

	.gp-single-game__actions {
		width: 100%;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.gp-single-game__actions .gpc-rating {
		justify-content: flex-start;
	}

	.gp-hero h1,
	.gp-single-game h1,
	.gp-archive-header h1,
	.gp-empty-state h1,
	.gp-article h1 {
		font-size: clamp(1.8rem, 10vw, 2.7rem);
	}

	.gp-hero__badges {
		display: none;
	}

	.gp-hero__rating {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
		padding: 16px 4px 4px;
	}

	.gp-hero__rating .gpc-rating {
		justify-content: flex-start;
	}

	.gp-hero__rating .gpc-rating__message {
		text-align: left;
	}

	.gp-game-grid,
	.gp-game-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.gp-game-card__body {
		padding: 10px 11px 12px;
	}

	.gp-game-card__play {
		display: none;
	}

	.gp-guide,
	.gp-single-game__body {
		grid-template-columns: 1fr;
	}

	.gp-guide__details {
		margin-top: 4px;
	}

	.gp-game-meta {
		order: -1;
	}

	.gp-content-card {
		margin-top: 30px;
		padding: 24px 20px;
		border-radius: 20px;
	}

	.gp-section {
		margin-top: 32px;
	}

	.gp-archive-header {
		padding: 30px 24px;
		border-radius: 20px;
	}

	.gp-empty-state {
		min-height: 430px;
		padding: 32px 20px;
	}

	.gp-footer {
		padding: 36px 20px 30px;
	}

	.gp-footer__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.gp-mobile-nav {
		position: fixed;
		right: 10px;
		bottom: 10px;
		left: 10px;
		z-index: 70;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		min-height: 62px;
		padding: 7px;
		background: rgba(33, 28, 22, 0.94);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 20px;
		box-shadow: 0 12px 38px rgba(0, 0, 0, 0.24);
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
	}

	.gp-mobile-nav a,
	.gp-mobile-nav button {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2px;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 14px;
		color: #fff6e8;
		cursor: pointer;
		font-size: 9px;
		font-weight: 800;
	}

	.gp-mobile-nav span {
		font-size: 20px;
		line-height: 1;
	}
}

@media (max-width: 430px) {
	.gp-brand__logo,
	.gp-brand__logo .custom-logo-link {
		max-width: 150px;
	}

	.gp-brand__copy strong {
		max-width: 150px;
	}

	.gp-guide__details {
		grid-template-columns: 1fr;
	}

	.gp-favorite-button {
		width: 42px;
		padding: 0;
		overflow: hidden;
		font-size: 0;
	}

	.gp-favorite-button span {
		font-size: 18px;
	}

	.gp-rating-pill small {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
