:root {
	--gamenova-brand-text-size:22px;
	--gamenova-logo-icon-size:130px;
	--pink:#f56ca5;
	--pink-dark:#ed5d9a;
	--pink-light:#fff0f7;
	--ink:#202020;
	--muted:#777;
	--dark:#111214;
	--container:1200px;
	--border-radius:15px
}
* {
	box-sizing:border-box
}
html {
	scroll-behavior:smooth
}
body {
	margin:0;
	font-family:'Poppins',sans-serif;
	color:var(--ink);
	background:#fff;
	line-height:1.55
}
a {
	color:inherit;
	text-decoration:none
}
img {
	max-width:100%;
	height:auto;
	display:block
}
.container {
	width:min(var(--container),calc(100% - 32px));
	margin-left:auto;
	margin-right:auto
}
.site-header {
	background:var(--pink);
	color:#fff
}
.header-inner {
	height:88px;
	display:flex;
	align-items:center;
	justify-content:space-between
}
.brand {
	display:flex;
	align-items:center;
	gap:10px;
	font-weight:800;
	font-size:28px
}
.brand img {
	width:var(--gamenova-logo-icon-size,130px);
	height:auto;
	max-height:64px;
	object-fit:contain
}
.header-icon {
	transform-origin:50% 50%;
	animation:headerIconFloat 14s ease-in-out infinite
}
@keyframes headerIconFloat {
	0% {
	transform:translateY(0) rotate(0deg)
}
4.72% {
	transform:translateY(-8px) rotate(0deg)
}
9.43% {
	transform:translateY(0) rotate(0deg)
}
14.15% {
	transform:translateY(-8px) rotate(0deg)
}
18.87% {
	transform:translateY(0) rotate(0deg)
}
23.58% {
	transform:translateY(-8px) rotate(0deg)
}
28.30% {
	transform:translateY(0) rotate(0deg);
	animation-timing-function:linear
}
33.54% {
	transform:translateY(0) rotate(360deg);
	animation-timing-function:ease-in-out
}
38.26% {
	transform:translateY(-8px) rotate(360deg)
}
42.97% {
	transform:translateY(0) rotate(360deg)
}
47.69% {
	transform:translateY(-8px) rotate(360deg)
}
52.40% {
	transform:translateY(0) rotate(360deg)
}
57.12% {
	transform:translateY(-8px) rotate(360deg)
}
61.83% {
	transform:translateY(0) rotate(360deg);
	animation-timing-function:linear
}
67.07% {
	transform:translateY(0) rotate(720deg);
	animation-timing-function:ease-in-out
}
71.79% {
	transform:translateY(-8px) rotate(720deg)
}
76.50% {
	transform:translateY(0) rotate(720deg)
}
81.22% {
	transform:translateY(-8px) rotate(720deg)
}
85.93% {
	transform:translateY(0) rotate(720deg)
}
90.65% {
	transform:translateY(-8px) rotate(720deg)
}
95.36% {
	transform:translateY(0) rotate(720deg)
}
100% {
	transform:translateY(0) rotate(720deg)
}
}
.brand-text {
	display:flex;
	flex-direction:column;
	line-height:1.15
}
.brand-title {
	font-weight:800;
	font-size:var(--gamenova-brand-text-size,22px)
}
.brand-sub {
	font-weight:500;
	font-size:calc(var(--gamenova-brand-text-size,22px) * .545);
	opacity:.85
}
.site-nav ul {
	list-style:none;
	display:flex;
	gap:30px;
	margin:0;
	padding:0
}
.site-nav a {
	font-size:15px;
	font-weight:500
}
.menu-toggle {
	display:none;
	background:none;
	border:0;
	color:#fff;
	font-size:28px
}
.menu-close {
	display:none
}
.hero {
	background:var(--pink);
	color:#fff;
	text-align:center;
	padding:50px 0 250px;
	position:relative;
	overflow:hidden
}
.hero-wave {
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:150px;
	display:block;
	z-index:1;
	pointer-events:none
}
.hero h1 {
	font-size:50px;
	line-height:1.05;
	margin:0 0 12px;
	font-weight:800
}
.hero p {
	font-size:21px;
	margin:0 0 50px
}
.search-box {
	width:min(520px,100%);
	margin:auto;
	position:relative
}
.search-box input {
	width:100%;
	border:0;
	border-radius:30px;
	padding:18px 52px 18px 22px;
	box-shadow:0 8px 20px #0002;
	outline:0
}
.search-box button {
	position:absolute;
	right:5px;
	top:5px;
	width:41px;
	height:41px;
	border:0;
	border-radius:50%;
	color:#ffffff;
	background:var(--pink);
	font-size:30px;
	cursor: pointer;
}
.section {
	padding:45px 0
}
.section-title {
	text-align: center;
	color: var(--pink);
	font-size: 29px;
	margin: 0 0 24px;
	font-weight: 900;
	display: flex;
	justify-content: center;
	align-items: center;
}
.category-row {
	display:grid;
	grid-template-columns:repeat(8,1fr);
	gap:16px
}
.category-card {
	background:#fff;
	border-radius:var(--border-radius);
	box-shadow:0 4px 16px #0001;
	padding:15px 10px;
	text-align:center;
	font-weight:500;
	transition:.2s
}
.category-card:hover,.game-card:hover {
	transform:translateY(-3px);
	box-shadow:0 8px 22px #0002
}
.category-icon {
	font-size:31px;
}
.games-slider {
	position:relative;
	display:flex;
	align-items:center;
	gap:10px
}
.games-slider-viewport {
	overflow-x:hidden;
	overflow-y:visible;
	flex:1;
	min-width:0;
	padding:14px 0;
	margin:-14px 0
}
.games-slider-track.game-grid {
	display:flex;
	flex-wrap:nowrap
}
.games-slider-track {
	transition:transform .5s ease;
	will-change:transform
}
.games-slider-track .game-card {
	flex:0 0 auto;
	cursor:pointer
}
.slider-arrow {
	flex:0 0 auto;
	width:42px;
	height:42px;
	border-radius:50%;
	border:0;
	background:#fff;
	box-shadow:0 4px 14px #0002;
	color:var(--ink);
	font-size:20px;
	line-height:1;
	cursor:pointer;
	display:grid;
	place-items:center;
	transition:.2s
}
.slider-arrow:hover {
	background:var(--pink);
	color:#fff
}
.slider-dots {
	display:flex;
	justify-content:center;
	gap:8px;
	margin-top:18px
}
.slider-dots .dot {
	width:9px;
	height:9px;
	border-radius:50%;
	background:var(--pink);
	opacity:.35;
	border:0;
	padding:0;
	cursor:pointer;
	transition:.2s
}
.slider-dots .dot.active {
	opacity:1;
	background:var(--ink)
}
.game-grid {
	display:grid;
	grid-template-columns:repeat(6,1fr);
	gap:16px
}
.game-card {
	background:#fff;
	border-radius:var(--border-radius);
	box-shadow:0 4px 16px #0001;
	overflow:hidden;
	transition:.2s
}
.game-card img {
	width:100%;
	object-fit:cover
}
.game-card-body {
	padding:10px 11px 20px
}
.game-card-title {
	font-size:14px;
	font-weight:700;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis
}
.game-card-meta {
	color:var(--pink);
	font-size:13px;
	margin-top:3px;
	font-weight: 500;
}
.play-button {
	display: inline-block;
	background: var(--pink);
	color: #fff;
	border-radius: 20px;
	padding: 7px 30px;
	font-size: 13px;
	font-weight: 700;
	margin-top: 9px;
}
.card-center {
	text-align:center
}
.columns {
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:22px
}
.columns.columns-count-1 {
	grid-template-columns:1fr
}
.columns.columns-count-2 {
	grid-template-columns:repeat(2,1fr)
}
.columns .section-title {
	text-align:left;
	justify-content:flex-start
}
.column-list {
	display:grid;
	gap:14px
}
.list-card {
	display:flex;
	align-items:center;
	gap:12px;
	background:#fff;
	border-radius:9px;
	box-shadow:0 4px 16px #0001;
	padding:7px
}
.list-card img {
	width:100px;
	height:70px;
	object-fit:cover;
	border-radius:6px
}
.list-card-title {
	font-size:14px;
	font-weight:700;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap
}
.list-card-cat {
	font-size:11px;
	color:var(--pink)
}
.list-card-full {
	padding-right:12px
}
.list-card-full .list-card-text {
	display:flex;
	flex-direction:column;
	gap:4px;
	flex:1;
	min-width:0;
	align-self:flex-start
}
.list-card-full .list-card-title {
	white-space:normal
}
.list-card-date {
	font-size:11px;
	color:var(--muted)
}
.list-card-play {
	flex:0 0 auto;
	width:34px;
	height:34px;
	border-radius:50%;
	background:var(--pink);
	display:grid;
	place-items:center;
	color:#fff;
	margin-left:auto
}
.list-card-play svg {
	width:20px;
	height:20px
}
.load-more {
	text-align:center;
	margin-top:35px
}
.btn {
	display:inline-block;
	background:var(--pink);
	color:#fff;
	border:0;
	border-radius:22px;
	padding:10px 22px;
	font-weight:600;
	cursor:pointer;
	box-shadow:0 8px 20px color-mix(in srgb, var(--pink) 25%, transparent);
	transition:.2s
}
.btn:hover {
	transform:translateY(-2px);
	background:var(--pink-dark)
}
.site-footer {
	background:linear-gradient(#0f1012e8,#0f1012f2),url('../footer-bg.jpg') center/cover;
	color:#fff;
	margin-top:50px
}
.footer-inner {
	display:grid;
	grid-template-columns:2fr 1fr 1fr;
	gap:50px;
	padding:58px 0
}
.theme-copyright-bar {
	border-top:1px solid rgba(255,255,255,.12);
	background:rgba(0,0,0,.22)
}
.theme-copyright-inner {
	min-height:52px;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center
}
.theme-copyright-inner p {
	margin:0;
	padding:14px 0;
	color:#d8d8d8;
	font-size:13px;
	line-height:1.5
}
.footer-brand-logo {
	display:inline-flex;
	align-items:center;
	gap:10px;
	margin-bottom:18px;
	color:#fff;
	text-decoration:none
}
.footer-icon {
	width:58px;
	height:58px;
	object-fit:contain;
	filter:brightness(1.15)
}
.footer-brand-text {
	display:flex;
	flex-direction:column;
	line-height:1.1
}
.footer-brand-title {
	font-size:22px;
	font-weight:800;
	color:#fff
}
.footer-brand-sub {
	font-size:12px;
	font-weight:500;
	color:#ddd;
	opacity:.9
}
.footer-brand p {
	max-width:370px;
	color:#eee;
	font-size:14px
}
.footer-title {
	font-size:20px;
	margin:0 0 16px
}
.footer-links {
	list-style:none;
	padding:0;
	margin:0;
	display:grid;
	gap:12px
}
.footer-links a {
	color:#fff;
	font-size:14px
}
.footer-social-title {
	margin-top:22px
}
.socials {
	display:flex;
	flex-wrap:wrap;
	gap:9px;
	margin-top:16px
}
.socials a {
	width:36px;
	height:36px;
	border-radius:50%;
	display:grid;
	place-items:center;
	background:#fff;
	color:#333;
	font-weight:400;
	text-decoration:none;
	transition:transform .2s ease,opacity .2s ease
}
.socials a i {
	font-size:16px;
	line-height:1
}
.socials a:hover {
	transform: translateY(-3px);
	background: var(--pink);
	color: #ffffff;
}
.archive-header {
	text-align:center;
	padding:42px 0 24px
}
.archive-header h1 {
	color:var(--pink);
	font-size:36px;
	margin:0
}
.single-wrap {
	padding:42px 0
}
.single-grid {
	display:grid;
	grid-template-columns:310px minmax(0,1fr) 300px;
	gap:22px;
	align-items:start
}
.details-box {
	border:1px solid #bbb;
	padding:10px 16px 22px;
	text-align:center
}
.details-box img {
	width:150px;
	height:100px;
	object-fit:cover;
	margin:0 auto 12px;
	border-radius:8px
}
.details-box h2 {
	font-size:20px;
	margin:0 0 18px
}
.detail-row {
	display:grid;
	grid-template-columns:90px 1fr;
	gap:8px;
	text-align:left;
	font-size:13px;
	margin:9px 0
}
.detail-row strong {
	font-size:14px
}
.detail-row.genre-row span,.detail-row.genre-row span a {
	color:var(--pink);
	font-weight:600;
	font-size:14px
}
.detail-row.genre-row span a {
	text-decoration:none
}
.detail-row.genre-row span a:hover {
	text-decoration:underline
}
.game-frame {
	position:relative;
	background:#fafafa;
	box-shadow:0 8px 25px #0001;
	width:100%;
	height:560px;
	min-height:560px;
	overflow:hidden
}
.game-frame iframe {
	display:block;
	width:100%!important;
	height:100%!important;
	min-height:0;
	border:0;
	max-width:none;
	max-height:none
}
.game-description {
	margin-top:24px
}
.game-description h1 {
	font-size:28px;
	margin:0 0 10px
}
.single-sidebar>div {
	width:100%;
	min-width:0
}
.sidebar-title {
	width:100%;
	box-sizing:border-box;
	background:var(--pink);
	color:#fff;
	text-align:center;
	border-radius:8px 8px 0 0;
	padding:10px;
	font-weight:700
}
.sidebar-list {
	display:grid;
	gap:10px;
	background:#fff;
	min-width:0
}
.sidebar-list .list-card {
	border-radius:0 0 8px 8px;
	min-width:0
}
.sidebar-list .list-card-title {
	flex:1;
	min-width:0;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap
}
.pagination {
	display:flex;
	justify-content:center;
	gap:8px;
	margin:35px 0
}
.pagination .page-numbers {
	padding:8px 12px;
	border-radius:5px;
	background:#f7f7f7
}
.pagination .current {
	background:var(--pink);
	color:#fff
}
.cat-icon-inline {
	width:32px;
	height:32px;
	object-fit:cover;
	border-radius:5px;
	display:inline-block
}
.footer-links a {
	display:flex;
	align-items:center
}
.category-card .cat-icon-inline {
	width: 100%;
	max-width: 39px;
	height: auto;
	border-radius: 8px;
}
.archive-header h1 {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px
}
.archive-header .cat-icon-inline {
	width:34px;
	height:34px;
	margin-right:0
}
.content-page {
	padding:42px 0
}
.content-page .entry-content {
	max-width:900px;
	margin:auto
}
.content-page h1,.content-page h2 {
	color:var(--pink)
}
.content-page p,.content-page li {
	font-size:15px
}
.not-found {
	text-align:center;
	padding:80px 0
}
@media(max-width:1000px) {
	.game-grid {
	grid-template-columns:repeat(4,1fr)
}
.category-row {
	grid-template-columns:repeat(3,1fr)
}
.single-grid {
	grid-template-columns:1fr
}
.single-sidebar {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:12px
}
.footer-inner {
	grid-template-columns:1fr 1fr
}
}
@media(max-width:700px) {
	.hero {
	padding:50px 0 150px
}
.header-inner {
	height:72px
}
.site-nav {
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:auto;
	width:min(73vw,360px);
	height:100vh;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:stretch;
	background:var(--pink);
	z-index:1000;
	padding:72px 24px 24px;
	box-shadow:-12px 0 35px rgba(31,15,25,.18);
	transform:translateX(100%);
	visibility:hidden;
	pointer-events:none;
	transition:transform .32s ease,visibility 0s linear .32s
}
.site-nav.open {
	transform:translateX(0);
	visibility:visible;
	pointer-events:auto;
	transition:transform .32s ease
}
.site-nav ul {
	flex-direction:column;
	align-items:stretch;
	gap:0;
	width:100%
}
.site-nav li {
	border-bottom:1px solid rgba(255,255,255,.18)
}
.site-nav a {
	display:block;
	width:100%;
	box-sizing:border-box;
	padding:16px 4px;
	font-size:16px
}
.menu-toggle {
	display:block;
	cursor:pointer
}
.menu-close {
	display:block;
	position:absolute;
	top:18px;
	right:18px;
	width:42px;
	height:42px;
	border:0;
	border-radius:50%;
	background:rgba(255,255,255,.14);
	color:#fff;
	font-size:32px;
	line-height:1;
	cursor:pointer
}
.menu-close:hover,.menu-close:focus-visible {
	background:rgba(255,255,255,.24)
}
body.menu-open {
	overflow:hidden
}
.brand img {
	width:min(var(--gamenova-logo-icon-size,130px),105px)
}
.hero h1 {
	font-size:36px
}
.hero p {
	font-size:17px
}
.game-grid {
	grid-template-columns:repeat(2,1fr)
}
.category-row {
	grid-template-columns:repeat(3,1fr)
}
.category-card {
	font-size:13px
}
.columns {
	grid-template-columns:1fr
}
.footer-inner {
	grid-template-columns:1fr;
	gap:30px
}
.single-sidebar {
	grid-template-columns:1fr
}
.game-frame {
	height:520px;
	min-height:520px
}
.game-frame iframe {
	height:100%!important
}
}
.site-header .site-nav ul {
	display:flex;
	align-items:center;
	justify-content:flex-end;
	list-style:none;
	margin:0;
	padding:0;
	gap:30px
}
.site-header .site-nav li {
	margin:0;
	padding:0
}
.site-header .site-nav a {
	color:#fff
}
.site-header .brand {
	flex-shrink:0
}
.site-header .brand img {
	width:var(--gamenova-logo-icon-size,130px);
	max-height:68px;
	object-fit:contain
}
.site-header .brand .custom-logo {
	width:var(--gamenova-logo-icon-size,130px);
	height:auto
}
.site-footer .footer-links {
	list-style:none
}
.site-footer .footer-links li {
	list-style:none
}
/* Gamenova unified pagination — same design on all pages */
.pagination {
	width:100%;
	margin:0 0 10px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.pagination .nav-links,
.nav-links {
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
}
ul.page-numbers {
	width:100%;
	display:flex !important;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	gap:9px;
	list-style:none !important;
	margin-top: 40px;
	padding:0 !important;
}
ul.page-numbers li {
	display:block !important;
	list-style:none !important;
	margin:0 !important;
	padding:0 !important;
}
ul.page-numbers li a,
ul.page-numbers li span,
.pagination > .page-numbers:not(ul) {
	box-sizing:border-box;
	display:inline-flex !important;
	align-items:center;
	justify-content:center;
	min-width:42px;
	height:42px;
	padding:0 13px;
	border-radius:22px;
	border:1px solid color-mix(in srgb, var(--pink) 18%, #fff);
	background:#fff;
	color:var(--pink);
	font-size:15px;
	font-weight:700;
	line-height:1;
	text-decoration:none !important;
	box-shadow:0 3px 10px rgba(0,0,0,.08);
	transition:all .2s ease;
}
ul.page-numbers li a:hover,
.pagination > .page-numbers:not(ul):hover {
	background:var(--pink);
	border-color:var(--pink);
	color:#fff;
	transform:translateY(-2px);
}
ul.page-numbers li span.current,
.pagination > .page-numbers.current {
	background:var(--pink) !important;
	border-color:var(--pink) !important;
	color:#fff !important;
	box-shadow:0 5px 14px color-mix(in srgb, var(--pink) 28%, transparent);
}
ul.page-numbers li span.dots {
	min-width:34px;
	border:0;
	background:transparent;
	box-shadow:none;
	color:#999;
}
ul.page-numbers li a.prev,
ul.page-numbers li a.next {
	min-width:42px;
	padding:0 13px;
}
.blog-pagination {
	width:100%;
	margin:0 0 10px;
}
.blog-pagination ul.page-numbers {
	margin:0 0 10px !important;
}
@media(max-width:600px) {
	ul.page-numbers {
	gap:6px
}
ul.page-numbers li a,
  ul.page-numbers li span,
  .pagination > .page-numbers:not(ul) {
	min-width:38px;
	height:38px;
	padding:0 10px;
	font-size:14px;
}
}
.category-empty {
	grid-column:1/-1;
	text-align:center;
	color:#777;
	margin:10px 0 0
}
.category-card span {
	display:block;
	font-size: 14px;
}
/* Modern Blog */
.blog-page {
	background:color-mix(in srgb, var(--pink) 3%, #fff)
}
.blog-hero {
	background: linear-gradient(135deg, var(--pink) 0%, color-mix(in srgb, var(--pink) 94%, black) 60%, color-mix(in srgb, var(--pink) 82%, black) 100%);
	color:#fff;
	padding:58px 0;
	text-align:center;
	position:relative;
	overflow:hidden
}
.blog-hero:after {
	content:"";
	position:absolute;
	width:420px;
	height:420px;
	border:70px solid rgba(255,255,255,.08);
	border-radius:50%;
	right:-170px;
	top:-220px
}
.blog-eyebrow {
	display:inline-block;
	font-size:12px;
	letter-spacing:2px;
	font-weight:900;
	background:rgba(255,255,255,.16);
	border:1px solid rgba(255,255,255,.28);
	padding:7px 12px;
	border-radius:20px;
	margin-bottom:13px
}
.blog-hero h1 {
	font-size:40px;
	line-height:1.08;
	margin:0 0 12px;
}
.blog-hero p {
	max-width:650px;
	margin:0 auto;
	font-size:17px;
	opacity:.94
}
.blog-section {
	padding:42px 0 55px
}
.blog-page .blog-grid {
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:22px
}
.blog-card {
	background:#fff;
	border-radius:16px;
	overflow:hidden;
	box-shadow:0 7px 24px rgba(31,15,25,.08);
	border:1px solid color-mix(in srgb, var(--pink) 10%, #fff);
	transition:transform .22s ease,box-shadow .22s ease;
	display:flex;
	flex-direction:column
}
.blog-card:hover {
	transform:translateY(-5px);
	box-shadow:0 14px 32px rgba(31,15,25,.13)
}
.blog-card-media {
	display:block;
	aspect-ratio:1.45/1;
	overflow:hidden;
	background:color-mix(in srgb, var(--pink) 8%, #fff)
}
.blog-card-media img {
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .35s ease
}
.blog-card:hover .blog-card-media img {
	transform:scale(1.045)
}
.blog-card-placeholder {
	width:100%;
	height:100%;
	display:grid;
	place-items:center;
	font-size:52px;
	color:var(--pink);
	background:linear-gradient(135deg,var(--pink-light),color-mix(in srgb, var(--pink) 15%, #fff))
}
.blog-card-body {
	padding:17px 17px 18px;
	display:flex;
	flex-direction:column;
	flex:1
}
.blog-card-meta {
	display:flex;
	align-items:center;
	gap:8px;
	color:#999;
	font-size:11px;
	margin-bottom:8px
}
.blog-card-meta a {
	color:var(--pink);
	font-weight:800
}
.blog-card h2 {
	font-size:18px;
	line-height:1.3;
	margin:0 0 8px
}
.blog-card h2 a:hover {
	color:var(--pink)
}
.blog-card p {
	font-size:13px;
	line-height:1.6;
	color:#737373;
	margin:0 0 15px
}
.blog-read-more {
	margin-top:auto;
	color:var(--pink);
	font-size:12px;
	font-weight:900
}
.blog-read-more span {
	font-size:17px;
	vertical-align:-1px;
	margin-left:3px
}
.blog-pagination {
	margin-top:38px
}
.blog-empty {
	background:#fff;
	border-radius:16px;
	box-shadow:0 7px 24px rgba(31,15,25,.07)
}
/* Modern single blog post */
.single-blog-page {
	background:color-mix(in srgb, var(--pink) 3%, #fff);
	padding-bottom:60px
}
.blog-post-header {
	background:#fff;
	border-bottom:1px solid color-mix(in srgb, var(--pink) 6%, #fff);
	padding:30px 0
}
.blog-post-breadcrumb {
	display:flex;
	align-items:center;
	gap:8px;
	color:#999;
	font-size:12px;
	margin-bottom:25px;
	white-space:nowrap;
	overflow:hidden
}
.blog-post-breadcrumb a {
	color:#777
}
.blog-post-breadcrumb a:hover {
	color:var(--pink)
}
.blog-post-category {
	display:inline-flex;
	background:color-mix(in srgb, var(--pink) 12%, #fff);
	color:var(--pink);
	font-size:11px;
	font-weight:900;
	text-transform:uppercase;
	letter-spacing:.7px;
	padding:7px 11px;
	border-radius:20px
}
.blog-post-header h1 {
	font-size:35px;
	line-height:1.12;
	max-width:900px;
	margin:15px 0 14px;
	font-weight:900
}
.blog-post-meta {
	display:flex;
	gap:10px;
	color:#888;
	font-size:13px
}
.blog-post-layout {
	display:grid;
	grid-template-columns:minmax(0,1fr) 290px;
	gap:32px;
	padding-top:36px
}
.blog-post-main {
	min-width:0
}
.blog-post-featured {
	margin:0 0 30px;
	border-radius:16px;
	overflow:hidden;
	box-shadow:0 10px 28px rgba(31,15,25,.1);
	background:#fff
}
.blog-post-featured img {
	width:100%;
	max-height:600px;
	object-fit:cover
}
.blog-post-content {
	background:#fff;
	border-radius:16px;
	padding:34px 40px;
	box-shadow:0 7px 24px rgba(31,15,25,.07);
	font-size:16px;
	line-height:1.85;
	color:#333
}
.blog-post-content h2,.blog-post-content h3,.blog-post-content h4 {
	color:#202020;
	line-height:1.3;
	margin-top:1.7em
}
.blog-post-content a {
	color:var(--pink);
	text-decoration:underline
}
.blog-post-content img {
	border-radius:10px
}
.blog-post-content blockquote {
	margin:25px 0;
	padding:18px 22px;
	border-left:4px solid var(--pink);
	background:var(--pink-light);
	border-radius:0 10px 10px 0;
	color:#555
}
.blog-post-tags {
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:8px;
	margin:22px 0;
	font-size:12px
}
.blog-post-tags strong {
	margin-right:4px
}
.blog-post-tags a {
	background:#fff;
	border:1px solid color-mix(in srgb, var(--pink) 9%, #fff);
	color:#777;
	padding:6px 10px;
	border-radius:18px
}
.blog-post-nav {
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:15px;
	margin-top:24px
}
.blog-post-nav-card {
	background:#fff;
	border:1px solid color-mix(in srgb, var(--pink) 8%, #fff);
	border-radius:12px;
	min-width:0;
	overflow:hidden
}
.blog-post-nav-link {
	display:flex;
	align-items:center;
	gap:12px;
	padding:10px 12px;
	color:#555;
	text-decoration:none;
	min-height:76px
}
.blog-post-nav-next .blog-post-nav-link {
	justify-content:flex-end;
	text-align:right
}
.blog-post-nav-thumb,.blog-post-nav-placeholder {
	width:82px;
	height:58px;
	flex:0 0 82px;
	border-radius:8px;
	overflow:hidden;
	background:color-mix(in srgb, var(--pink) 12%, #fff)
}
.blog-post-nav-thumb img {
	display:block;
	width:100%;
	height:100%;
	object-fit:cover
}
.blog-post-nav-placeholder {
	display:grid;
	place-items:center;
	color:var(--pink);
	font-size:18px
}
.blog-post-nav-text {
	min-width:0;
	display:block
}
.blog-post-nav-text small {
	display:block;
	color:#999;
	font-size:10px;
	font-weight:700;
	margin-bottom:4px;
	text-transform:uppercase;
	letter-spacing:.35px
}
.blog-post-nav-text strong {
	display:block;
	color:#555;
	font-size:13px;
	line-height:1.35;
	overflow:hidden;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical
}
.blog-post-nav-card:hover {
	border-color:color-mix(in srgb, var(--pink) 16%, #fff)
}
.blog-post-nav-card:hover .blog-post-nav-text strong {
	color:var(--pink)
}
.blog-post-sidebar {
	min-width:0
}
.blog-sidebar-box {
	position:sticky;
	top:20px;
	background:#fff;
	border-radius:16px;
	padding:18px;
	box-shadow:0 7px 24px rgba(31,15,25,.07)
}
.blog-sidebar-box h3 {
	font-size:18px;
	margin:0 0 15px
}
.blog-sidebar-list {
	display:grid;
	gap:11px
}
.blog-mini-card {
	display:flex;
	gap:10px;
	align-items:center;
	padding:7px;
	border-radius:10px;
	background:color-mix(in srgb, var(--pink) 3%, #fff)
}
.blog-mini-card:hover {
	background:var(--pink-light)
}
.blog-mini-card img,.blog-mini-placeholder {
	width:75px;
	height:55px;
	flex:0 0 75px;
	object-fit:cover;
	border-radius:7px
}
.blog-mini-placeholder {
	display:grid;
	place-items:center;
	background:color-mix(in srgb, var(--pink) 12%, #fff);
	color:var(--pink)
}
.blog-mini-card span {
	min-width:0
}
.blog-mini-card strong {
	display:block;
	font-size:12px;
	line-height:1.35;
	overflow:hidden;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical
}
.blog-mini-card small {
	display:block;
	color:#999;
	font-size:10px;
	margin-top:4px
}
@media(max-width:1100px) {
	.blog-page .blog-grid {
	grid-template-columns:repeat(3,minmax(0,1fr))
}
.blog-post-layout {
	grid-template-columns:minmax(0,1fr) 250px
}
}
@media(max-width:850px) {
	.blog-page .blog-grid {
	grid-template-columns:repeat(2,minmax(0,1fr))
}
.blog-post-layout {
	grid-template-columns:1fr
}
.blog-post-sidebar {
	order:2
}
.blog-sidebar-box {
	position:static
}
.blog-post-header h1 {
	font-size:38px
}
}
@media(max-width:560px) {
	.blog-page .blog-grid {
	grid-template-columns:1fr
}
.blog-hero h1 {
	font-size:34px
}
.blog-hero {
	padding:42px 0 50px
}
.blog-post-header h1 {
	font-size:25px
}
.blog-post-content {
	padding:24px 20px
}
.blog-post-nav {
	grid-template-columns:1fr
}
.blog-post-nav>div:last-child {
	text-align:left
}
.blog-post-meta {
	flex-wrap:wrap
}
}
/* Modern 404 Page */
.error-404-page {
	min-height:calc(100vh - 88px);
	display:flex;
	align-items:center;
	justify-content:center;
	padding:70px 0 90px;
	background:radial-gradient(circle at 12% 18%,var(--pink-light) 0,transparent 28%),radial-gradient(circle at 88% 82%,color-mix(in srgb, var(--pink) 14%, #fff) 0,transparent 30%),#fff;
	overflow:hidden;
	position:relative
}
.error-404-page:before,.error-404-page:after {
	content:"";
	position:absolute;
	border:1px solid color-mix(in srgb, var(--pink) 13%, transparent);
	border-radius:50%;
	pointer-events:none
}
.error-404-page:before {
	width:460px;
	height:460px;
	left:-240px;
	top:-180px
}
.error-404-page:after {
	width:560px;
	height:560px;
	right:-300px;
	bottom:-310px
}
.error-404-inner {
	width:min(920px,calc(100% - 32px));
	text-align:center;
	position:relative;
	z-index:1
}
.error-404-icon {
	width:96px;
	height:96px;
	margin:0 auto 22px;
	border-radius:28px;
	padding:16px;
	background:#fff;
	box-shadow:0 14px 40px color-mix(in srgb, var(--pink) 20%, transparent);
	object-fit:contain;
	animation:errorFloat 3.5s ease-in-out infinite
}
@keyframes errorFloat {
	0%,100% {
	transform:translateY(0) rotate(-3deg)
}
50% {
	transform:translateY(-9px) rotate(3deg)
}
}
.error-404-code {
	margin:0;
	font-size:clamp(90px,18vw,190px);
	font-weight:1000;
	line-height:.82;
	letter-spacing:-10px;
	background:linear-gradient(135deg,var(--pink),color-mix(in srgb, var(--pink) 55%, black));
	-webkit-background-clip:text;
	background-clip:text;
	color:transparent;
	text-shadow:0 18px 35px color-mix(in srgb, var(--pink) 11%, transparent)
}
.error-404-title {
	margin:28px 0 8px;
	font-size:clamp(26px,4vw,42px);
	line-height:1.1;
	font-weight:900;
	color:var(--ink)
}
.error-404-text {
	max-width:590px;
	margin:0 auto;
	color:var(--muted);
	font-size:16px
}
.error-404-actions {
	display:flex;
	justify-content:center;
	gap:12px;
	flex-wrap:wrap;
	margin-top:28px
}
.error-404-actions a {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:145px;
	padding:12px 22px;
	border-radius:26px;
	font-size:14px;
	font-weight:600;
	transition:.2s
}
.error-404-home {
	background:var(--pink);
	color:#fff;
	box-shadow:0 8px 20px color-mix(in srgb, var(--pink) 25%, transparent)
}
.error-404-games {
	background:#fff;
	color:var(--pink);
	border:1px solid color-mix(in srgb, var(--pink) 18%, #fff);
	box-shadow:0 5px 16px #0000000d
}
.error-404-actions a:hover {
	transform:translateY(-2px)
}
.error-404-home:hover {
	background:var(--pink-dark)
}
.error-404-games:hover {
	background:var(--pink-light)
}
.error-404-hint {
	margin-top:24px;
	font-size:12px;
	color:#aaa
}
@media(max-width:600px) {
	.error-404-page {
	min-height:calc(100vh - 72px);
	padding:55px 0 70px
}
.error-404-code {
	letter-spacing:-6px
}
.error-404-title {
	margin-top:22px
}
.error-404-text {
	font-size:15px
}
}
/* Gamenova typography */
.section-title,
.blog-post-header h1,
.blog-card h2,
.archive-header h1,
.hero h1 {
	font-family:'Baloo 2','Poppins',sans-serif;
}
/* Blog page fallback when WordPress uses the default page template */
/* Blog archives use the same four-column card design as the Blog page. */
.blog-archive-page .blog-grid {
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:22px
}
.blog-archive-page .archive-header {
	margin:0 0 28px
}
.blog-archive-page .archive-header h1 {
	font-family:'Baloo 2','Poppins',sans-serif;
	font-size:34px;
	line-height:1.15;
	margin:0;
	font-weight:800
}
.blog-card p {
	display:none
}
@media(max-width:1100px) {
	.blog-archive-page .blog-grid {
	grid-template-columns:repeat(3,minmax(0,1fr))
}
}
@media(max-width:850px) {
	.blog-archive-page .blog-grid {
	grid-template-columns:repeat(2,minmax(0,1fr))
}
}
@media(max-width:560px) {
	.blog-archive-page .blog-grid {
	grid-template-columns:1fr
}
}
/* =========================================================
   GameNova Modern Search Page
   ========================================================= */
.gamenova-search-page {
	background:#faf7fb;
	min-height:520px;
}
.gamenova-search-hero {
	position:relative;
	overflow:hidden;
	color:#fff;
	background:
        radial-gradient(circle at 14% 20%, color-mix(in srgb, var(--pink) 28%, transparent), transparent 28%),
        radial-gradient(circle at 88% 72%, color-mix(in srgb, var(--pink) 24%, transparent), transparent 30%),
        linear-gradient(135deg, #17101d 0%, #28132e 46%, #3a1034 100%);
	padding:68px 0 82px;
}
.gamenova-search-hero:before {
	content:"";
	position:absolute;
	inset:0;
	opacity:.22;
	background-image:radial-gradient(#fff 1px,transparent 1px);
	background-size:28px 28px;
	mask-image:linear-gradient(to bottom,rgba(0,0,0,.8),transparent);
	pointer-events:none;
}
.search-hero-inner {
	position:relative;
	z-index:2;
	text-align:center;
}
.search-kicker,.empty-kicker,.results-label {
	display:inline-flex;
	align-items:center;
	gap:7px;
	color: var(--pink);
	font-size:11px;
	font-weight:900;
	letter-spacing:1.8px;
	text-transform:uppercase;
}
.search-kicker:before,.search-kicker:after {
	content:"";
	width:22px;
	height:2px;
	background:var(--pink);
	border-radius:2px;
}
.gamenova-search-hero h1 {
	max-width:950px;
	margin:14px auto 10px;
	font-family:'Baloo 2','Poppins',sans-serif;
	font-size:50px;
	line-height:1.05;
	font-weight:900;
	letter-spacing:-.7px;
}
.gamenova-search-hero h1 span {
	color: var(--pink);
}
.gamenova-search-hero p {
	margin:0 auto 30px;
	color:#e8dce8;
	font-size:15px;
}
.gamenova-search-form {
	width:min(690px,100%);
	margin:0 auto;
	position:relative;
	display:flex;
	padding:6px;
	background:rgba(255,255,255,.1);
	border:1px solid rgba(255,255,255,.2);
	border-radius:18px;
	backdrop-filter:blur(12px);
	box-shadow:0 18px 50px rgba(0,0,0,.25);
}
.gamenova-search-form input {
	flex:1;
	min-width:0;
	border:0;
	outline:0;
	background:transparent;
	color:#fff;
	padding:14px 18px;
	font:600 14px 'Poppins',sans-serif;
}
.gamenova-search-form input::placeholder {
	color:#c9b7c8
}
.gamenova-search-form button {
	width:52px;
	height:52px;
	border:0;
	border-radius:14px;
	background:linear-gradient(135deg,var(--pink),color-mix(in srgb, var(--pink) 70%, black));
	color:#fff;
	font-size:27px;
	cursor:pointer;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--pink) 25%, transparent);
	transition:.2s ease;
}
.gamenova-search-form button:hover {
	transform:translateY(-2px) scale(1.02)
}
.search-orb {
	position:absolute;
	border:1px solid rgba(255,111,173,.22);
	border-radius:50%;
	pointer-events:none;
}
.search-orb-one {
	width:250px;
	height:250px;
	left:-110px;
	top:20px
}
.search-orb-two {
	width:370px;
	height:370px;
	right:-190px;
	bottom:-230px
}
.gamenova-search-results {
	position:relative;
	margin-top:-28px;
	z-index:3;
	padding:0 0 65px;
}
.search-results-top {
	display:flex;
	align-items:end;
	justify-content:space-between;
	gap:20px;
	background:#fff;
	border:1px solid #f0e1e9;
	border-radius:18px;
	padding:20px 24px;
	margin-bottom:24px;
	box-shadow:0 10px 30px rgba(44,20,36,.07);
}
.search-results-top h2 {
	margin:4px 0 0;
	font-family:'Baloo 2','Poppins',sans-serif;
	font-size:26px;
	line-height:1;
}
.search-back-link {
	color:var(--pink);
	font-size:13px;
	font-weight:800;
	white-space:nowrap;
}
.search-results-grid {
	margin-top:0
}
.search-pagination {
	display:flex;
	justify-content:center
}
.search-pagination ul {
	list-style:none;
	display:flex;
	gap:7px;
	padding:0;
	margin:32px 0 0;
}
.search-pagination a,.search-pagination span {
	display:grid;
	place-items:center;
	min-width:40px;
	height:40px;
	padding:0 12px;
	border-radius:12px;
	background:#fff;
	border:1px solid #eddde6;
	color:#666;
	font-size:13px;
	font-weight:800;
}
.search-pagination .current {
	background:var(--pink);
	border-color:var(--pink);
	color:#fff
}
.gamenova-empty-search {
	position:relative;
	overflow:hidden;
	max-width:900px;
	margin:0 auto;
	padding:54px 32px 58px;
	text-align:center;
	background:linear-gradient(145deg,#fff,#fff8fc);
	border:1px solid #efdde7;
	border-radius:24px;
	box-shadow:0 18px 55px rgba(42,18,36,.09);
}
.gamenova-empty-search:before,.gamenova-empty-search:after {
	content:"";
	position:absolute;
	border-radius:50%;
	pointer-events:none;
}
.gamenova-empty-search:before {
	width:220px;
	height:220px;
	left:-125px;
	top:-125px;
	background:radial-gradient(circle,#ffd7e8 0,transparent 70%);
}
.gamenova-empty-search:after {
	width:250px;
	height:250px;
	right:-145px;
	bottom:-155px;
	background:radial-gradient(circle,#efd6ff 0,transparent 70%);
}
.empty-search-icon {
	position:relative;
	z-index:1;
	width:105px;
	height:105px;
	margin:0 auto 24px;
	border-radius:30px;
	background: color-mix(in srgb, var(--pink) 12%, #fff);
	border:1px solid var(--pink);
	box-shadow: 0 8px 20px color-mix(in srgb, var(--pink) 25%, transparent);
	transform:rotate(-5deg);
}
.empty-lens {
	position:absolute;
	width:49px;
	height:49px;
	left:25px;
	top:23px;
	border:9px solid var(--pink);
	border-radius:50%;
	box-shadow:inset 0 0 0 2px #fff;
}
.empty-handle {
	position:absolute;
	width:35px;
	height:9px;
	left:63px;
	top:69px;
	border-radius:9px;
	background:#3a2936;
	transform:rotate(45deg);
}
.gamenova-empty-search h2 {
	position:relative;
	z-index:1;
	margin:10px 0 9px;
	font-family:'Baloo 2','Poppins',sans-serif;
	font-size:clamp(28px,4vw,40px);
	line-height:1.1;
	font-weight:900;
}
.gamenova-empty-search h2 span {
	color:var(--pink)
}
.gamenova-empty-search p {
	position:relative;
	z-index:1;
	max-width:580px;
	margin:0 auto;
	color:#777;
	font-size:14px;
	line-height:1.75;
}
.empty-actions {
	position:relative;
	z-index:1;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	gap:10px;
	margin-top:27px;
}
.empty-actions a,.empty-actions button {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	min-height:46px;
	padding:0 20px;
	border-radius:24px;
	font:600 13px 'Poppins',sans-serif;
	cursor:pointer;
	transition:.2s ease;
}
.empty-action-icon {
	width:18px;
	height:18px;
	flex:0 0 18px;
	display:block;
}
.empty-primary {
	color:#fff;
	background: var(--pink);
	box-shadow: 0 8px 20px color-mix(in srgb, var(--pink) 25%, transparent);
}
.empty-secondary {
	color:var(--pink);
	background:#fff;
	border:1px solid var(--pink);
}
.empty-secondary:hover {
	border-color:var(--pink-dark);
}
.empty-actions a:hover,.empty-actions button:hover {
	transform:translateY(-2px);
	background: var(--pink-dark);
	color: #fff;
}

@media(max-width:700px) {
	.gamenova-search-hero {
	padding:52px 0 70px
}
.gamenova-search-hero h1 {
	font-size:34px
}
.gamenova-search-form {
	border-radius:15px
}
.gamenova-search-form button {
	width:46px;
	height:46px
}
.search-results-top {
	align-items:flex-start;
	flex-direction:column
}
.gamenova-empty-search {
	padding:42px 20px 45px;
	border-radius:20px
}
}
/* Search results: game searches use the same compact game cards as the game archive. */
.search-results-grid.game-grid {
	width:100%;
	min-width:0;
	grid-template-columns:repeat(6,minmax(0,1fr));
}
.search-results-grid.game-grid .game-card {
	min-width:0;
}
.search-results-grid.game-grid .game-card > a:first-child {
	display:block;
	width:100%;
}
@media(max-width:1000px) {
	.search-results-grid.game-grid {
	grid-template-columns:repeat(4,minmax(0,1fr))
}
}
@media(max-width:700px) {
	.search-results-grid.game-grid {
	grid-template-columns:repeat(2,minmax(0,1fr))
}
}
/* =========================================================
   GameNova — Game/Product Card Thumbnail Ratio
   All game/product card images use a consistent 3:2 frame.
   ========================================================= */
.game-card .game-card-image,
.game-card .game-thumbnail,
.game-card .game-card-media,
.game-product-card .game-card-image,
.game-product-card .game-thumbnail,
.game-product-card .game-card-media,
.product-card .product-card-image,
.product-card .product-thumbnail,
.product-card .product-card-media,
.game-grid .game-card > a:first-child,
.games-grid .game-card > a:first-child {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.game-card .game-card-image img,
.game-card .game-thumbnail img,
.game-card .game-card-media img,
.game-product-card .game-card-image img,
.game-product-card .game-thumbnail img,
.game-product-card .game-card-media img,
.product-card .product-card-image img,
.product-card .product-thumbnail img,
.product-card .product-card-media img,
.game-grid .game-card > a:first-child img,
.games-grid .game-card > a:first-child img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}
/* Common WordPress thumbnail wrappers inside cards */
.game-card .post-thumbnail,
.game-card .thumbnail,
.game-product-card .post-thumbnail,
.game-product-card .thumbnail,
.product-card .post-thumbnail,
.product-card .thumbnail {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.game-card .post-thumbnail img,
.game-card .thumbnail img,
.game-product-card .post-thumbnail img,
.game-product-card .thumbnail img,
.product-card .post-thumbnail img,
.product-card .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Main menu hover underline */
.site-header .site-nav a {
	position:relative;
	display:inline-block;
	padding-bottom:6px;
	text-decoration:none;
}
.site-header .site-nav a::after {
	content:"";
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	height:2px;
	background:#fff;
	transform:scaleX(0);
	transform-origin:center;
	transition:transform .2s ease;
}
.site-header .site-nav a:hover::after,
.site-header .site-nav a:focus-visible::after {
	transform:scaleX(1);
}
@media (max-width:768px) {
	.hero-wave {
	height:80px
}
.archive-header h1 {
	font-size: 25px;
}
}
@media(max-width:700px) {
	.theme-copyright-inner {
	min-height:48px
}
.theme-copyright-inner p {
	font-size:12px;
	padding:12px 16px
}
}
/* WordPress Footer Menu (assigned to the Footer Menu location). */
.site-footer .footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}
.site-footer .footer-links li {
	margin: 0;
	padding: 0;
}
.site-footer .footer-links a {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	line-height: 1.45;
	text-decoration: none;
	transition: color .2s ease, transform .2s ease, opacity .2s ease;
}
.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
	color: var(--pink, #f56ca5);
	transform: translateX(2px);
}
/* Advertainment ad placements: center any pasted ad/embed code regardless
   of its own fixed width, and add breathing room around it. */
.gamenova-ad {
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
	text-align:center;
	padding:20px 0;
	overflow-x:auto;
}
.gamenova-ad:empty {
	display:none;
	padding:0
}
.gamenova-ad img {
	margin-left:auto;
	margin-right:auto
}