/**
 * Nestopi child theme styles.
 */

:root {
	--nestopi-color-main: #F66E00;
	--nestopi-color-accent: #00FF29;
	--nestopi-color-base-gray: #c1c0bf;
	--nestopi-color-black: #000000;
	--nestopi-color-white: #ffffff;
	--nestopi-color-page-bg: #635E8B;
	--nestopi-header-height: 68px;
	--nestopi-header-height-mobile: 64px;
	--nestopi-admin-bar-height: 0px;
	--nestopi-header-bg: var(--nestopi-color-black);
	--nestopi-header-border: rgba(255, 255, 255, 0.14);
	--nestopi-text: var(--nestopi-color-white);
	--nestopi-muted: rgba(255, 255, 255, 0.72);
	--nestopi-accent: var(--nestopi-color-main);
	--nestopi-card-area-desktop-ratio: 0.55556;
	--nestopi-wide-card-area-desktop-ratio: 0.61112;
	--nestopi-card-area-desktop-padding-ratio: 0.05;
	--nestopi-card-area-desktop-gap-ratio: 0.008333;
	--nestopi-card-area-mobile-ratio: 0.66927;
	--nestopi-card-area-mobile-padding-ratio: 0.0234375;
	--nestopi-card-area-mobile-gap-ratio: 0.015625;
	--nestopi-mobile-side-gap-min: 36px;
}

body {
	padding-top: var(--nestopi-header-height);
}

body:not(.home) {
	background: var(--nestopi-color-page-bg);
}

body:not(.home) .site-content {
	background: var(--nestopi-color-page-bg);
}

body:not(.home) .site-content > .col-full {
	background: transparent;
}
a:focus,
button:focus,
input:focus,
textarea:focus {
	outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--nestopi-color-main);
	outline-offset: 3px;
}

/* Header */
body .nestopi-site-header.site-header {
	position: fixed;
	top: var(--nestopi-admin-bar-height);
	left: 0;
	z-index: 1100;
	width: 100%;
	padding: 0;
	margin: 0;
	background: var(--nestopi-header-bg);
	border-bottom: 1px solid var(--nestopi-header-border);
	box-shadow: none;
	transition: transform 0.28s ease;
}

body .nestopi-site-header.site-header.is-hidden {
	transform: translateY(-100%);
}

.nestopi-site-header .site-branding,
.nestopi-site-header .site-search,
.nestopi-site-header .storefront-primary-navigation,
.nestopi-site-header .main-navigation,
.nestopi-site-header .site-header-cart,
.nestopi-site-header .site-title,
.nestopi-site-header .site-description {
	display: none;
}

.nestopi-header__inner {
	display: grid;
	align-items: center;
	margin: 0 auto;
}

.nestopi-header__logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.nestopi-header__logo img {
	display: block;
	max-width: 100%;
}

.nestopi-header__logo--pc {
	justify-self: start;
}

.nestopi-header__logo--mobile {
	display: none;
}

.nestopi-header__logo--pc img {
	width: 180px;
	height: auto;
	max-height: 48px;
	object-fit: contain;
}

.nestopi-header__logo--mobile img {
	width: 122px;
	height: 39px;
	max-height: 40px;
}

.nestopi-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.nestopi-header__icon-link,
.nestopi-header__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 8px;
}

.nestopi-header__icon-link:hover,
.nestopi-header__icon-link:focus-visible,
.nestopi-header__menu-toggle:hover,
.nestopi-header__menu-toggle:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	outline: none;
}

.nestopi-header__icon-link img {
	display: block;
	width: 25px;
	height: 25px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.nestopi-header__menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.nestopi-header__menu-line {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--nestopi-color-white);
	border-radius: 999px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nestopi-header__menu-toggle[aria-expanded="true"] .nestopi-header__menu-line:nth-of-type(2) {
	transform: translateY(7px) rotate(45deg);
}

.nestopi-header__menu-toggle[aria-expanded="true"] .nestopi-header__menu-line:nth-of-type(3) {
	opacity: 0;
}

.nestopi-header__menu-toggle[aria-expanded="true"] .nestopi-header__menu-line:nth-of-type(4) {
	transform: translateY(-7px) rotate(-45deg);
}

.nestopi-mobile-menu {
	display: none;
	width: min(74vw, 320px);
	min-width: 240px;
	padding: 16px 18px 22px;
	background: var(--nestopi-color-black);
	border-top: 1px solid var(--nestopi-header-border);
}

.nestopi-mobile-menu a,
.nestopi-mobile-menu button {
	color: var(--nestopi-color-white);
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	white-space: nowrap;
}

.nestopi-mobile-menu a:hover,
.nestopi-mobile-menu a:focus-visible,
.nestopi-mobile-menu button:hover,
.nestopi-mobile-menu button:focus-visible {
	color: var(--nestopi-color-main);
	background: transparent;
	opacity: 1;
	outline: none;
}

@media (min-width: 768px) {
	/* Desktop header navigation */
	.nestopi-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: clamp(10px, 1.4vw, 20px);
		width: 100%;
		max-width: none;
		min-height: var(--nestopi-header-height);
		padding-left: clamp(12px, 1.5vw, 24px);
		padding-right: clamp(10px, 1.4vw, 20px);
	}

	.nestopi-header__nav {
		position: relative;
		top: 2px;
		justify-self: start;
	}

	.nestopi-nav {
		display: flex;
		align-items: center;
		gap: clamp(10px, 1.3vw, 20px);
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.nestopi-nav__item {
		position: relative;
	}

	.nestopi-nav a {
		color: var(--nestopi-text);
		font-size: 13px;
		font-weight: 400;
		text-decoration: none;
		white-space: nowrap;
	}

	.nestopi-nav > .nestopi-nav__item > a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		width: auto;
		min-width: 0;
		height: 40px;
		padding: 0 8px;
		box-sizing: border-box;
		color: var(--nestopi-color-white);
		font-size: 13px;
		font-weight: 400;
		line-height: 1;
		background: transparent;
		border: 0;
		text-decoration: none;
		transition: color 0.18s ease;
	}

	.nestopi-nav__item--has-dropdown > a::after {
		display: inline-block;
		width: 0.45em;
		height: 0.45em;
		margin-left: 2px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		content: "";
		transform: rotate(45deg) translateY(-2px);
	}

	.nestopi-nav > .nestopi-nav__item:hover > a,
	.nestopi-nav > .nestopi-nav__item:focus-within > a {
		color: var(--nestopi-color-main);
		outline: none;
	}

	.nestopi-nav__dropdown {
		--nestopi-dropdown-left: 50%;
		--nestopi-dropdown-x: -50%;

		position: absolute;
		top: 100%;
		left: var(--nestopi-dropdown-left);
		display: grid;
		width: max-content;
		min-width: 180px;
		padding: 0px 18px 20px;
		margin: 0;
		box-sizing: border-box;
		list-style: none;
		background: var(--nestopi-header-bg);
		border-radius: 8px 8px 18px 18px;
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
		opacity: 0;
		transform: translate(var(--nestopi-dropdown-x), 8px);
		visibility: hidden;
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	}

	.nestopi-nav__item--has-dropdown:hover .nestopi-nav__dropdown,
	.nestopi-nav__item--has-dropdown:focus-within .nestopi-nav__dropdown {
		opacity: 1;
		transform: translate(var(--nestopi-dropdown-x), 0);
		visibility: visible;
	}

	.nestopi-nav__dropdown a {
		display: block;
		padding: 8px 12px;
		color: var(--nestopi-color-white);
		font-size: 13px;
		font-weight: 400;
		text-decoration: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: 4px;
		white-space: nowrap;
		background: transparent;
		border-radius: 0;
		transition: color 0.18s ease;
	}

	.nestopi-nav__dropdown-note {
		display: block;
		padding: 8px 12px;
		color: rgba(255, 255, 255, 0.42);
		font-size: 13px;
		font-weight: 400;
		line-height: 1.3;
		white-space: nowrap;
		cursor: default;
	}

	.nestopi-nav__dropdown a:hover,
	.nestopi-nav__dropdown a:focus-visible {
		color: var(--nestopi-color-main);
		background: transparent;
		opacity: 1;
		outline: none;
	}

	.nestopi-nav__item--new .nestopi-nav__dropdown,
	.nestopi-nav__item--games .nestopi-nav__dropdown,
	.nestopi-nav__item--shop-info .nestopi-nav__dropdown {
		--nestopi-dropdown-left: -25px;
		--nestopi-dropdown-x: 0;
	}

	.nestopi-nav__item--new .nestopi-nav__dropdown,
	.nestopi-nav__item--games .nestopi-nav__dropdown,
	.nestopi-nav__item--shop-info .nestopi-nav__dropdown {
		width: max-content;
		min-width: 0;
		max-width: calc(100vw - 32px);
	}
}

@media (min-width: 768px) and (max-width: 1200px) {
	.nestopi-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		column-gap: clamp(8px, 1.2vw, 16px);
	}

	.nestopi-header__logo--pc img {
		width: clamp(150px, 18vw, 180px);
	}

	.nestopi-nav {
		justify-content: flex-start;
		gap: clamp(8px, 1vw, 14px);
	}

	.nestopi-nav > .nestopi-nav__item > a {
		padding-right: 4px;
		padding-left: 4px;
		font-size: 13px;
	}

	.nestopi-header__actions {
		gap: clamp(8px, 1vw, 10px);
	}

	.nestopi-header__icon-link {
		width: 36px;
		height: 36px;
	}

	.nestopi-header__icon-link img {
		width: 25px;
		height: 25px;
	}
}

@media (max-width: 767.99px) {
	body {
		padding-top: var(--nestopi-header-height-mobile);
	}

	.nestopi-site-header {
		overflow: visible;
	}

	.nestopi-header__inner {
		grid-template-columns: auto auto 1fr auto;
		gap: 10px;
		width: 100%;
		min-height: var(--nestopi-header-height-mobile);
		padding: 0 14px;
	}

	.nestopi-header__menu-toggle {
		display: inline-flex;
		justify-self: start;
	}

	.nestopi-header__menu-toggle:hover,
	.nestopi-header__menu-toggle:focus,
	.nestopi-header__menu-toggle:focus-visible {
		background: transparent;
		opacity: 1;
	}

	.nestopi-header__menu-toggle:focus-visible {
		box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.36);
	}

	.nestopi-header__logo--pc,
	.nestopi-header__nav {
		display: none;
	}

	.nestopi-header__logo--mobile {
		display: inline-flex;
		justify-self: start;
	}

	.nestopi-header__actions {
		grid-column: 4;
		gap: 10px;
	}

	.nestopi-header__icon-link {
		width: 44px;
		height: 44px;
	}

	.nestopi-header__icon-link img {
		width: 30px;
		height: 30px;
	}

	.nestopi-mobile-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1101;
		overflow: visible;
		width: min(74vw, 320px);
		min-width: 240px;
		padding-top: 22px;
		background: var(--nestopi-color-black);
		border-top: 0;
		border-right: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 0 0 8px 0;
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
		isolation: isolate;
	}

	.nestopi-mobile-menu::before {
		position: absolute;
		top: -70px;
		left: -78px;
		z-index: 1;
		width: 85%;
		height: 224px;
		background-image: url("../images/backgrounds/title_bg_01.webp");
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		content: "";
		pointer-events: none;
		rotate: -23deg;
	}

	.nestopi-mobile-menu.is-open {
		display: grid;
		gap: 0;
	}

	.nestopi-mobile-menu > * {
		position: relative;
		z-index: 2;
	}

	.nestopi-mobile-menu .nestopi-mobile-menu__login {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		z-index: 3;
		width: calc(100% - 36px);
		min-height: 40px;
		padding: 0 14px;
		margin: 16px auto 54px;
		color: var(--nestopi-color-black);
		font-weight: 600;
		background: var(--nestopi-color-accent);
		border: 1px solid var(--nestopi-color-accent);
		text-align: center;
		transition: transform 0.18s ease;
	}

	.nestopi-mobile-menu .nestopi-mobile-menu__login:hover,
	.nestopi-mobile-menu .nestopi-mobile-menu__login:focus-visible {
		color: var(--nestopi-color-black);
		background: var(--nestopi-color-accent);
		border-color: var(--nestopi-color-accent);
		opacity: 1;
		outline: none;
		box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
		transform: translateY(3px);
	}

	.nestopi-mobile-menu__link,
	.nestopi-mobile-menu__toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 44px;
		padding: 12px 0;
		color: var(--nestopi-color-white);
		font-size: 16px;
		font-weight: 700;
		text-align: left;
		background: transparent;
		border: 0;
		border-bottom: 2px solid rgba(255, 255, 255, 0.7);
		border-radius: 0;
		cursor: pointer;
	}

	.nestopi-mobile-menu__arrow {
		display: inline-block;
		margin-left: 18px;
		color: currentColor;
		transition: transform 0.18s ease;
	}

	.nestopi-mobile-menu__toggle[aria-expanded="true"] .nestopi-mobile-menu__arrow {
		transform: rotate(180deg);
	}

	.nestopi-mobile-submenu {
		display: none;
		padding: 4px 0 8px 18px;
		background: var(--nestopi-color-black);
	}

	.nestopi-mobile-menu__item.is-open .nestopi-mobile-submenu {
		display: block;
	}

	.nestopi-mobile-submenu a {
		display: block;
		padding: 10px 0;
		color: var(--nestopi-color-white);
		font-size: 14px;
		font-weight: 400;
		text-decoration: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	}

	.nestopi-mobile-submenu__note {
		display: block;
		padding: 10px 0;
		color: rgba(255, 255, 255, 0.42);
		font-size: 14px;
		font-weight: 400;
		border-bottom: 1px solid rgba(255, 255, 255, 0.35);
		cursor: default;
	}

	.nestopi-mobile-submenu a:hover,
	.nestopi-mobile-submenu a:focus-visible {
		color: var(--nestopi-color-main);
		background: transparent;
	}
}

body.admin-bar .nestopi-site-header {
	top: var(--nestopi-admin-bar-height);
}

body.admin-bar {
	--nestopi-admin-bar-height: 32px;
}

@media (max-width: 782px) {
	body.admin-bar {
		--nestopi-admin-bar-height: 46px;
	}

	body.admin-bar .nestopi-site-header {
		top: var(--nestopi-admin-bar-height);
	}
}

@media screen and (max-width: 600px) {
	body.admin-bar #wpadminbar {
		position: fixed !important;
		top: 0 !important;
	}
}

/* Front page shared */
.nestopi-front {
	position: relative;
	width: 100vw;
	min-height: 100vh;
	margin-left: calc(50% - 50vw);
	color: var(--nestopi-color-white);
	overflow: hidden;
}

.nestopi-front__background {
	position: fixed;
	inset: 0;
	z-index: 0;
	background-color: var(--nestopi-color-base-gray);
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.56)), url("../images/backgrounds/concrete_bg_02.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	pointer-events: none;
}

.nestopi-front a {
	color: inherit;
	text-decoration: none;
}

.nestopi-fixed-sns {
	position: fixed;
	top: 50%;
	right: clamp(16px, 2vw, 34px);
	z-index: 1001;
	display: grid;
	gap: 16px;
}

.nestopi-fixed-sns__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--nestopi-color-black);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.nestopi-fixed-sns__icon {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.nestopi-front-section {
	position: relative;
	z-index: 1;
	width: min(1120px, calc(100% - 40px));
	padding: clamp(56px, 8vw, 108px) 0;
	margin: 0 auto;
}

.nestopi-front-section__action {
	display: flex;
	justify-content: center;
	margin-top: clamp(28px, 4vw, 48px);
}

.nestopi-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 250px;
	min-height: 36px;
	padding: 0 28px;
	color: var(--nestopi-color-white);
	font-size: 16px;
	font-weight: 400;
	background: var(--nestopi-color-black);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 0;
	transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.nestopi-button:hover,
.nestopi-button:focus-visible {
	background-color: #1f1f1f;
	border-color: rgba(255, 255, 255, 0.42);
	color: var(--nestopi-color-white);
	outline: none;
	transform: translateY(-2px);
}

.nestopi-button--arrow::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 16px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 7px solid currentColor;
	content: "";
}

.nestopi-front-hero {
	position: relative;
	z-index: auto;
	width: min(1240px, calc(100% - 40px));
	padding-top: 0;
	padding-bottom: 0;
	/* Shared hero coordinate system for desktop and tablet layouts. */
	--nestopi-hero-width: min(100vw, 1600px);
	--nestopi-hero-visual-height: clamp(760px, calc(var(--nestopi-hero-width) * 1.0125), 1620px);
	--nestopi-hero-logo-top: calc(var(--nestopi-hero-visual-height) * 0.21);
	--nestopi-hero-logo-width: clamp(360px, calc(var(--nestopi-hero-width) * 0.38), 620px);
	--nestopi-hero-feature-top: calc(var(--nestopi-hero-visual-height) * 0.62);
	--nestopi-hero-feature-gap: clamp(20px, calc(var(--nestopi-hero-width) * 0.021), 34px);
	--nestopi-hero-feature-peek: clamp(48px, calc(var(--nestopi-hero-width) * 0.055), 88px);
	--nestopi-hero-dot-gap: clamp(16px, calc(var(--nestopi-hero-visual-height) * 0.014), 22px);
	--nestopi-front-hero-transition-overlap: calc(var(--nestopi-hero-visual-height) * -0.071);
	--nestopi-front-hero-grunge-overlap: clamp(24px, calc(var(--nestopi-hero-visual-height) * 0.043), 70px);
}

/* Hero section */
.nestopi-front-hero__visual {
	position: relative;
	display: block;
	width: 100vw;
	min-height: var(--nestopi-hero-visual-height);
	margin: 0 calc(50% - 50vw);
	background-image: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.24)), url("../images/backgrounds/top_main_image.webp");
	background-attachment: fixed;
	background-position: center 0%;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

@media (min-width: 768px) {
	body.admin-bar .nestopi-front .nestopi-front-hero__visual {
		background-position: center 32px;
	}
}

.nestopi-hero-logo {
	position: absolute;
	top: var(--nestopi-hero-logo-top);
	left: 50%;
	z-index: 5;
	width: var(--nestopi-hero-logo-width);
	max-width: 80vw;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.nestopi-hero-logo__img {
	display: block;
	width: 100%;
	height: auto;
}

.nestopi-hero-logo__img--mobile {
	display: none;
}

.nestopi-hero-feature {
	position: absolute;
	top: var(--nestopi-hero-feature-top);
	left: 50%;
	z-index: 1002;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	justify-items: center;
	width: 100vw;
	--nestopi-hero-feature-slide-size: calc((var(--nestopi-hero-width) - var(--nestopi-hero-feature-peek) - var(--nestopi-hero-feature-peek) - var(--nestopi-hero-feature-gap) - var(--nestopi-hero-feature-gap) - var(--nestopi-hero-feature-gap) - var(--nestopi-hero-feature-gap)) / 3);
	transform: translateX(-50%);
}

.nestopi-hero-feature__carousel {
	position: relative;
	width: 100%;
	min-width: 0;
}

.nestopi-hero-feature__viewport {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.nestopi-hero-feature__viewport::-webkit-scrollbar {
	display: none;
}

.nestopi-hero-feature__track {
	display: flex;
	gap: var(--nestopi-hero-feature-gap);
}

.nestopi-hero-feature__slide {
	flex: 0 0 var(--nestopi-hero-feature-slide-size);
	min-width: 0;
	scroll-snap-align: center;
}

.nestopi-hero-feature__link {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: var(--nestopi-color-black);
	border-radius: 0;
	overflow: hidden;
}

.nestopi-hero-feature__link:focus-visible {
	outline: 3px solid var(--nestopi-color-accent);
	outline-offset: 4px;
}

.nestopi-hero-feature__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.24s ease;
}

.nestopi-hero-feature__link:hover .nestopi-hero-feature__image,
.nestopi-hero-feature__link:focus-visible .nestopi-hero-feature__image {
	transform: scale(1.04);
}

.nestopi-hero-feature__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 64px;
	padding: 0;
	color: var(--nestopi-color-main);
	font-size: 48px;
	font-weight: 400;
	line-height: 1;
	background: var(--nestopi-color-white);
	border: 1px solid rgba(0, 0, 0, 0.18);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
	cursor: pointer;
	transform: translateY(-50%);
}

.nestopi-hero-feature__nav:hover,
.nestopi-hero-feature__nav:focus-visible {
	color: var(--nestopi-color-main);
	background: var(--nestopi-color-white);
	outline: none;
}

.nestopi-hero-feature__nav:disabled {
	cursor: default;
	opacity: 0.42;
	pointer-events: none;
}

.nestopi-hero-feature__nav--prev {
	left: calc(var(--nestopi-hero-feature-peek) / 2);
	transform: translate(-50%, -50%);
}

.nestopi-hero-feature__nav--next {
	right: calc(var(--nestopi-hero-feature-peek) / 2);
	transform: translate(50%, -50%);
}

.nestopi-hero-feature__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: var(--nestopi-hero-dot-gap);
}

.nestopi-hero-feature__dot {
	width: 12px;
	height: 12px;
	padding: 0;
	background: var(--nestopi-color-black);
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 0;
	cursor: pointer;
}

.nestopi-hero-feature__dot:hover,
.nestopi-hero-feature__dot:focus-visible,
.nestopi-hero-feature__dot.is-active {
	background: var(--nestopi-color-accent);
	outline: none;
}

.nestopi-front-hero__transition {
	display: block;
	width: 100vw;
	margin-top: var(--nestopi-front-hero-transition-overlap);
	margin-left: calc(50% - 50vw);
	overflow: hidden;
}

.nestopi-front-hero__grunge {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	line-height: 0;
	overflow: hidden;
	pointer-events: none;
}

.nestopi-front-hero__grunge img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.nestopi-front-hero__grunge--bottom {
	margin-top: calc(var(--nestopi-front-hero-grunge-overlap) * -1);
}

.nestopi-front-hero__grunge--bottom img {
	transform: scaleY(-1);
	transform-origin: center;
}

.nestopi-front-hero__quick-links {
	--nestopi-front-hero-quick-links-width: 1440px;
	--nestopi-front-hero-quick-links-padding-x: calc(var(--nestopi-front-hero-quick-links-width) * var(--nestopi-card-area-desktop-padding-ratio));
	--nestopi-front-hero-quick-links-gap: calc(var(--nestopi-front-hero-quick-links-width) * var(--nestopi-card-area-desktop-gap-ratio));
	position: relative;
	z-index: 2;
	isolation: isolate;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	justify-content: center;
	gap: var(--nestopi-front-hero-quick-links-gap);
	box-sizing: border-box;
	width: calc((var(--nestopi-front-hero-quick-links-width) * var(--nestopi-wide-card-area-desktop-ratio)) + (var(--nestopi-front-hero-quick-links-padding-x) * 2));
	margin: calc(var(--nestopi-front-hero-grunge-overlap) * -1) auto;
	padding: clamp(22px, 3vw, 38px) var(--nestopi-front-hero-quick-links-padding-x);
	border: 0;
}

.nestopi-front-hero__quick-links::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	z-index: -1;
	width: 100vw;
	background: #000;
	content: "";
	transform: translateX(-50%);
}

.nestopi-front-hero__quick-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(58px, 5vw, 72px);
	padding: 12px 20px;
	color: var(--nestopi-color-white);
	font-size: clamp(15px, 1.3vw, 19px);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
	background-color: var(--nestopi-color-main);
	background-image: url("../images/ui/button_01.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: filter 0.18s ease, transform 0.18s ease;
}

.nestopi-front-hero__quick-link:hover,
.nestopi-front-hero__quick-link:focus-visible {
	color: var(--nestopi-color-white);
	filter: brightness(1.12);
	outline: none;
	transform: translateY(-2px);
}

.nestopi-front-hero__quick-link span {
	display: block;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

.nestopi-product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
	color: var(--nestopi-color-black);
	background: var(--nestopi-color-white);
	border: 2px solid var(--nestopi-color-black);
	border-radius: 8px;
	overflow: hidden;
}

.nestopi-product-card__image {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 1;
	background: #d9d8d6;
	overflow: hidden;
}

.nestopi-product-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nestopi-product-card__placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 16px;
	color: rgba(0, 0, 0, 0.58);
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.nestopi-product-card__body {
	display: grid;
	align-content: start;
	text-align: center;
	gap: 8px;
	min-height: 0;
	padding: 16px 16px 32px 16px;
}

.nestopi-product-card__title {
	display: block;
	margin: 0;
	color: var(--nestopi-color-black);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

.nestopi-product-card__price {
	display: block;
	margin: 0;
	color: var(--nestopi-color-black);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.nestopi-section-divider {
	position: relative;
	z-index: 1;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	line-height: 0;
	pointer-events: none;
}

.nestopi-section-divider img {
	display: block;
	width: 100%;
	height: auto;
}

/* Section art headings */
.nestopi-new-products__heading,
.nestopi-news__heading {
	position: absolute;
	top: calc(var(--nestopi-section-art-width) * -0.19);
	left: var(--nestopi-section-heading-left);
	display: block;
	width: calc(var(--nestopi-section-art-width) * 0.45);
	aspect-ratio: 1.52 / 1;
	pointer-events: none;
}

.nestopi-new-products__heading::before,
.nestopi-news__heading::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url("../images/backgrounds/title_bg_01.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	content: "";
}

.nestopi-games__eyebrow,
.nestopi-new-products__eyebrow,
.nestopi-news__eyebrow {
	position: absolute;
	top: 43%;
	left: 33%;
	margin: 0;
	color: rgba(255, 255, 255, 0.2);
	font-size: calc(var(--nestopi-section-art-width) * 0.056944);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
	-webkit-text-stroke: clamp(1px, calc(var(--nestopi-section-art-width) * 0.003), 4.5px) var(--nestopi-color-white);
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
	transform: rotate(-9deg);
}

.nestopi-new-products__eyebrow,
.nestopi-news__eyebrow {
	z-index: 2;
}

.nestopi-news__eyebrow {
	left: 21%;
	text-transform: none;
}

.nestopi-games__eyebrow.is-flashing,
.nestopi-new-products__eyebrow.is-flashing,
.nestopi-news__eyebrow.is-flashing {
	color: var(--nestopi-color-white);
	-webkit-text-stroke-width: 0;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.86), 0 0 18px rgba(246, 110, 0, 0.44);
}

.nestopi-games__title,
.nestopi-new-products__title,
.nestopi-news__title {
	position: absolute;
	top: 61%;
	margin: 0;
	color: var(--nestopi-color-white);
	font-size: calc(var(--nestopi-section-art-width) * 0.033333);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
	white-space: nowrap;
	text-shadow: 0 3px 0 rgba(0, 0, 0, 0.22);
	transform: rotate(-9deg);
}

.nestopi-new-products__title {
	left: 25%;
	z-index: 2;
}

.nestopi-news__title {
	left: 43%;
	z-index: 2;
}

@media (min-width: 1440px) {
	.nestopi-games__eyebrow,
	.nestopi-new-products__eyebrow,
	.nestopi-news__eyebrow {
		font-size: 82px;
	}

	.nestopi-games__title,
	.nestopi-new-products__title,
	.nestopi-news__title {
		font-size: 48px;
	}
}

/* Games section */
.nestopi-games {
	/* Stage coordinate system: artwork and cards scale from the same width. */
	--nestopi-front-layout-width: min(1440px, calc(100vw - 40px));
	--nestopi-games-stage-width: 1440px;
	--nestopi-section-art-width: var(--nestopi-games-stage-width);
	--nestopi-games-stage-available-width: calc(((var(--nestopi-front-layout-width) * 0.5) - var(--nestopi-section-card-padding-x)) * 2.82);
	--nestopi-section-card-padding-x: clamp(20px, 5vw, 72px);
	--nestopi-section-heading-grid-width: min(var(--nestopi-front-layout-width), calc(980px + (var(--nestopi-section-card-padding-x) * 2)));
	--nestopi-section-heading-card-left: calc(((var(--nestopi-front-layout-width) - var(--nestopi-section-heading-grid-width)) * 0.5) + var(--nestopi-section-card-padding-x));
	--nestopi-section-heading-art-offset: calc(var(--nestopi-front-layout-width) * 0.11972);
	width: var(--nestopi-front-layout-width);
	padding-top: clamp(66px, 10.5vw, 129px);
	padding-bottom: clamp(60px, 8vw, 112px);
}

.nestopi-games__inner {
	position: relative;
	height: calc(var(--nestopi-games-stage-width) * 0.48);
	min-height: 0;
}

.nestopi-games__heading {
	position: absolute;
	top: calc(var(--nestopi-section-art-width) * -0.12);
	left: calc(var(--nestopi-section-heading-card-left) - var(--nestopi-section-heading-art-offset));
	z-index: 2;
	display: block;
	width: calc(var(--nestopi-section-art-width) * 0.45);
	aspect-ratio: 1.52 / 1;
	background-image: url("../images/backgrounds/title_bg_01.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.nestopi-games__title {
	left: 33%;
}

.nestopi-games__stage {
	position: absolute;
	top: 0;
	left: 50%;
	width: var(--nestopi-games-stage-width);
	height: 100%;
	transform: translateX(-50%);
}

.nestopi-games__background {
	position: absolute;
	top: 12%;
	left: 26%;
	z-index: 1;
	width: 55%;
	aspect-ratio: 1.338 / 1;
	pointer-events: none;
}

.nestopi-games__background-shadow,
.nestopi-games__background-cord {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}

.nestopi-games__background-shadow {
	transform: translate(2.3%, 3.4%);
	opacity: 0.78;
}

.nestopi-game-card {
	position: absolute;
	display: block;
	width: 33%;
	aspect-ratio: 1.78 / 1;
	cursor: default;
	transform-origin: center;
}

.nestopi-game-card--chill-with-you {
	top: 0%;
	left: 50%;
	z-index: 3;
	cursor: pointer;
	transform: rotate(8deg);
	transition: filter 0.24s ease, transform 0.24s ease;
}

.nestopi-game-card--coming-soon-left {
	top: 36%;
	left: 15%;
	z-index: 2;
	transform: rotate(-9deg);
}

.nestopi-game-card--coming-soon-right {
	top: 51%;
	left: 53%;
	z-index: 2;
	transform: rotate(5deg);
}

.nestopi-game-card__thumb {
	position: absolute;
	inset: 0;
	display: block;
	z-index: 2;
	overflow: visible;
}

.nestopi-game-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.nestopi-game-card--coming-soon-left,
.nestopi-game-card--coming-soon-right {
	filter: saturate(0.92);
}

@media (min-width: 768px) {
	.nestopi-game-card--chill-with-you:hover,
	.nestopi-game-card--chill-with-you:focus-visible {
		filter: drop-shadow(0 0 6px rgba(246, 110, 0, 0.95)) drop-shadow(0 0 18px rgba(246, 110, 0, 0.72)) drop-shadow(0 0 38px rgba(255, 190, 86, 0.36));
		transform: rotate(8deg) scale(1.04);
	}
}

/* New products section */
.nestopi-new-products {
	--nestopi-front-layout-width: min(1440px, calc(100vw - 40px));
	--nestopi-section-art-width: 1440px;
	--nestopi-section-card-padding-x: calc(var(--nestopi-section-art-width) * var(--nestopi-card-area-desktop-padding-ratio));
	--nestopi-new-products-card-gap: calc(var(--nestopi-section-art-width) * var(--nestopi-card-area-desktop-gap-ratio));
	--nestopi-new-products-card-grid-width: calc((var(--nestopi-section-art-width) * var(--nestopi-wide-card-area-desktop-ratio)) + (var(--nestopi-section-card-padding-x) * 2));
	--nestopi-section-heading-grid-width: min(var(--nestopi-front-layout-width), calc(980px + (var(--nestopi-section-card-padding-x) * 2)));
	--nestopi-section-heading-card-left: calc(((var(--nestopi-front-layout-width) - var(--nestopi-section-heading-grid-width)) * 0.5) + var(--nestopi-section-card-padding-x));
	--nestopi-section-heading-art-offset: calc(var(--nestopi-front-layout-width) * 0.11972);
	--nestopi-section-heading-left: calc(var(--nestopi-section-heading-card-left) - var(--nestopi-section-heading-art-offset));
	--nestopi-new-products-card-grid-left: calc(((var(--nestopi-front-layout-width) - (var(--nestopi-section-art-width) * var(--nestopi-wide-card-area-desktop-ratio))) * 0.5) - var(--nestopi-section-card-padding-x));
	width: var(--nestopi-front-layout-width);
	padding-top: calc((var(--nestopi-section-art-width) * 0.15) + 24px);
	padding-bottom: clamp(60px, 8vw, 112px);
}

.nestopi-new-products__inner {
	position: relative;
	isolation: isolate;
}

.nestopi-new-products__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	justify-content: center;
	gap: var(--nestopi-new-products-card-gap);
	box-sizing: border-box;
	width: var(--nestopi-new-products-card-grid-width);
	margin: 0 0 0 var(--nestopi-new-products-card-grid-left);
	padding: calc(var(--nestopi-section-art-width) * 0.048405) var(--nestopi-section-card-padding-x) 0;
}

.nestopi-new-products .nestopi-product-card__image {
	margin: clamp(8px, 1.1vw, 14px);
	border-radius: 4px;
}

.nestopi-new-products .nestopi-product-card__image img {
	transition: transform 0.24s ease;
}

.nestopi-new-products .nestopi-product-card:hover .nestopi-product-card__image img,
.nestopi-new-products .nestopi-product-card:focus-visible .nestopi-product-card__image img {
	transform: scale(1.04);
}

.nestopi-new-products__button {
	position: relative;
	z-index: 1;
}

/* News section */
.nestopi-news {
	--nestopi-front-layout-width: min(1440px, calc(100vw - 40px));
	--nestopi-section-art-width: 1440px;
	--nestopi-section-card-padding-x: calc(var(--nestopi-section-art-width) * var(--nestopi-card-area-desktop-padding-ratio));
	--nestopi-new-products-card-grid-width: calc((var(--nestopi-section-art-width) * var(--nestopi-wide-card-area-desktop-ratio)) + (var(--nestopi-section-card-padding-x) * 2));
	--nestopi-section-panel-width: calc(var(--nestopi-section-art-width) * var(--nestopi-wide-card-area-desktop-ratio));
	--nestopi-section-heading-grid-width: min(var(--nestopi-front-layout-width), calc(980px + (var(--nestopi-section-card-padding-x) * 2)));
	--nestopi-section-heading-card-left: calc(((var(--nestopi-front-layout-width) - var(--nestopi-section-heading-grid-width)) * 0.5) + var(--nestopi-section-card-padding-x));
	--nestopi-section-heading-art-offset: calc(var(--nestopi-front-layout-width) * 0.11972);
	--nestopi-section-heading-left: calc(var(--nestopi-section-heading-card-left) - var(--nestopi-section-heading-art-offset));
	--nestopi-new-products-card-grid-left: calc(((var(--nestopi-front-layout-width) - var(--nestopi-section-panel-width)) * 0.5) - var(--nestopi-section-card-padding-x));
	width: var(--nestopi-front-layout-width);
	padding-top: calc((var(--nestopi-section-art-width) * 0.15) + 24px);
	padding-bottom: 0;
}

.nestopi-news__inner {
	position: relative;
	padding-top: calc(var(--nestopi-section-art-width) * 0.048405);
	isolation: isolate;
}

.nestopi-news__panel {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: var(--nestopi-section-panel-width);
	margin: 0 auto;
	padding: clamp(48px, 4.4vw, 72px) clamp(44px, 7.8vw, 112px) clamp(38px, 4.4vw, 62px);
	color: var(--nestopi-color-black);
	background: rgba(255, 255, 255, 0.9);
	border-radius: clamp(14px, 2vw, 24px);
}

.nestopi-news__chara {
	position: absolute;
	top: 0;
	right: -14.3%;
	z-index: 2;
	display: block;
	width: 38%;
	height: auto;
	pointer-events: none;
	transform: translateY(-58.8%);
}

.nestopi-news__list {
	display: grid;
	gap: 0;
}

.nestopi-news-item {
	display: grid;
	gap: 12px;
	padding: 0 0 18px;
	border-bottom: 2px solid var(--nestopi-color-black);
}

.nestopi-news-item + .nestopi-news-item {
	padding-top: 20px;
}

.nestopi-news-item__date {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: start;
	min-width: 150px;
	min-height: 28px;
	padding: 2px 18px;
	color: var(--nestopi-color-white);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	background: var(--nestopi-color-black);
	border-radius: 999px;
}

.nestopi-news-item__title {
	display: block;
	margin: 0;
	color: var(--nestopi-color-black);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
}

.nestopi-news-item__title:hover,
.nestopi-news-item__title:focus-visible {
	color: var(--nestopi-color-main);
	outline: none;
}

.nestopi-news__empty {
	margin: 0;
	padding-bottom: 18px;
	color: var(--nestopi-color-black);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	border-bottom: 2px solid var(--nestopi-color-black);
}

/* Motion and tablet overrides */
@media (prefers-reduced-motion: reduce) {
	.nestopi-game-card--chill-with-you {
		transition: none;
	}

	.nestopi-game-card--chill-with-you:hover,
	.nestopi-game-card--chill-with-you:focus-visible {
		transform: rotate(8deg);
	}

	.nestopi-new-products .nestopi-product-card__image img {
		transition: none;
	}

	.nestopi-new-products .nestopi-product-card:hover .nestopi-product-card__image img,
	.nestopi-new-products .nestopi-product-card:focus-visible .nestopi-product-card__image img {
		transform: none;
	}
}

@media (max-width: 1180px) and (min-width: 768px) {
	.nestopi-games {
		--nestopi-games-stage-width: min(1440px, var(--nestopi-games-stage-available-width));
	}

	.nestopi-new-products,
	.nestopi-news {
		--nestopi-section-art-width: min(1440px, calc(((var(--nestopi-front-layout-width) * 0.5) - clamp(20px, 5vw, 72px)) * 2.82));
	}

	.nestopi-front-hero__quick-links {
		--nestopi-front-hero-quick-links-width: min(1440px, calc(((min(1440px, calc(100vw - 40px)) * 0.5) - clamp(20px, 5vw, 72px)) * 2.82));
	}
}

/* Footer */
.nestopi-footer-transition {
	position: relative;
	z-index: 2;
	width: 100vw;
	margin-bottom: -2px;
	margin-left: calc(50% - 50vw);
	line-height: 0;
	overflow: hidden;
}

.nestopi-footer-transition__img {
	display: block;
	width: 100%;
	height: clamp(120px, 13vw, 250px);
	object-fit: cover;
	object-position: center bottom;
}

body .nestopi-site-footer.site-footer {
	position: relative;
	z-index: 2;
	display: block;
	width: 100vw;
	margin-top: 0;
	margin-left: calc(50% - 50vw);
	padding: 0;
	color: var(--nestopi-color-white);
	background: var(--nestopi-color-black);
}

.nestopi-site-footer__inner {
	display: grid;
	justify-items: center;
	max-width: 1280px;
	padding: clamp(48px, 5.5vw, 76px) 24px clamp(48px, 5vw, 72px);
	margin: 0 auto;
}

.nestopi-site-footer__nav {
	width: 100%;
}

.nestopi-site-footer__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.nestopi-site-footer__link-item {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

body .site-footer.nestopi-site-footer a.nestopi-site-footer__link:not(.button):not(.components-button) {
	color: var(--nestopi-color-white);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	text-decoration: none;
	white-space: nowrap;
}

body .site-footer.nestopi-site-footer a.nestopi-site-footer__link:not(.button):not(.components-button):hover,
body .site-footer.nestopi-site-footer a.nestopi-site-footer__link:not(.button):not(.components-button):focus-visible {
	color: var(--nestopi-color-main);
	text-decoration: none;
	outline: none;
}

.nestopi-site-footer__separator {
	color: var(--nestopi-color-white);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
}

.nestopi-site-footer__logo {
	margin-top: clamp(28px, 3vw, 44px);
	line-height: 0;
}

.nestopi-site-footer__logo-img {
	display: block;
	width: clamp(190px, 14vw, 270px);
	height: auto;
}

.nestopi-site-footer__copyright {
	margin: clamp(28px, 3vw, 44px) 0 0;
	color: var(--nestopi-color-white);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

@media (max-width: 767.99px) {
	.nestopi-fixed-sns {
		top: auto;
		right: 12px;
		bottom: 78px;
		gap: 12px;
		transform: none;
	}

	.nestopi-fixed-sns__link {
		width: 32px;
		height: 32px;
		font-size: 11px;
	}

	.nestopi-front-section,
	.nestopi-front-hero {
		width: min(100% - 28px, 640px);
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.nestopi-games {
		--nestopi-front-layout-width: min(920px, max(390px, calc(100vw + 120px)));
		--nestopi-games-stage-width: var(--nestopi-front-layout-width);
		width: var(--nestopi-front-layout-width);
		padding-top: 56px;
		padding-bottom: 56px;
		left: 50%;
		margin-right: 0;
		margin-left: 0;
		transform: translateX(-50%);
	}

	/* Main visual: mobile uses a fixed layer because background-attachment is unreliable. */
	.nestopi-front-hero {
		padding-top: 0;
		padding-bottom: 0;
		/* Mobile keeps fixed-background fallback layers but uses the same ratio system. */
		--nestopi-hero-width: max(390px, 100vw);
		--nestopi-hero-visual-height: clamp(620px, calc(var(--nestopi-hero-width) * 1.95), 820px);
		--nestopi-hero-logo-top: calc(var(--nestopi-hero-visual-height) * 0.032);
		--nestopi-hero-logo-width: min(calc(var(--nestopi-hero-width) * 0.82), 320px);
		--nestopi-hero-feature-top: calc(var(--nestopi-hero-visual-height) * 0.188);
		--nestopi-hero-feature-gap: calc(var(--nestopi-hero-width) * 0.056);
		--nestopi-hero-feature-peek: clamp(24px, calc(var(--nestopi-hero-width) * 0.07), 34px);
		--nestopi-hero-feature-content-width: min(430px, 100vw);
		--nestopi-hero-dot-gap: calc(var(--nestopi-hero-width) * 0.036);
		--nestopi-front-hero-transition-overlap: calc(var(--nestopi-hero-visual-height) * -0.25);
		--nestopi-front-hero-grunge-overlap: clamp(10px, calc(var(--nestopi-hero-visual-height) * 0.026), 20px);
	}

	.nestopi-front-hero__visual {
		position: relative;
		display: grid;
		place-items: start center;
		isolation: isolate;
		min-height: var(--nestopi-hero-visual-height);
		margin-bottom: 0;
		background-image: none;
		background-attachment: scroll;
		clip-path: inset(0);
		overflow: hidden;
	}

	.nestopi-front-hero__visual::before {
		position: fixed;
		top: calc(var(--nestopi-admin-bar-height) + var(--nestopi-header-height-mobile));
		left: 0;
		z-index: -1;
		width: 100vw;
		height: calc(var(--nestopi-hero-visual-height) * 0.84);
		background-image: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.24)), url("../images/backgrounds/top_main_image.webp");
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
		content: "";
		pointer-events: none;
	}

	.nestopi-hero-logo {
		position: absolute;
		top: var(--nestopi-hero-logo-top);
		left: 50%;
		z-index: 50;
		width: var(--nestopi-hero-logo-width);
		pointer-events: none;
		transform: translateX(-50%);
	}

	.nestopi-hero-logo__img--pc {
		display: none;
	}

	.nestopi-hero-logo__img--mobile {
		display: block;
		width: 100%;
		height: auto;
	}

	.nestopi-hero-feature {
		top: var(--nestopi-hero-feature-top);
		width: 100vw;
		--nestopi-hero-feature-slide-size: calc(var(--nestopi-hero-feature-content-width) - var(--nestopi-hero-feature-peek) - var(--nestopi-hero-feature-peek) - var(--nestopi-hero-feature-gap) - var(--nestopi-hero-feature-gap));
	}

	.nestopi-hero-feature__track {
		gap: var(--nestopi-hero-feature-gap);
	}

	.nestopi-hero-feature__slide {
		flex-basis: var(--nestopi-hero-feature-slide-size);
		display: grid;
		place-items: center;
	}

	.nestopi-hero-feature__link {
		width: 100%;
	}

	.nestopi-hero-feature__nav {
		width: 36px;
		height: 58px;
		font-size: 42px;
	}

	.nestopi-hero-feature__nav--prev {
		left: calc(var(--nestopi-hero-feature-peek) / 2);
	}

	.nestopi-hero-feature__nav--next {
		right: calc(var(--nestopi-hero-feature-peek) / 2);
	}

	.nestopi-hero-feature__dots {
		gap: 8px;
		margin-top: var(--nestopi-hero-dot-gap);
	}

	.nestopi-hero-feature__dot {
		width: 11px;
		height: 11px;
	}

	.nestopi-front-hero__transition {
		width: 100vw;
		margin-top: var(--nestopi-front-hero-transition-overlap);
		margin-left: calc(50% - 50vw);
	}

	.nestopi-front-hero__quick-links {
		--nestopi-front-hero-quick-links-width: min(920px, max(390px, calc(100vw + 120px)));
		--nestopi-front-hero-quick-links-padding-x: calc(var(--nestopi-front-hero-quick-links-width) * var(--nestopi-card-area-mobile-padding-ratio));
		--nestopi-front-hero-quick-links-gap: calc(var(--nestopi-front-hero-quick-links-width) * var(--nestopi-card-area-mobile-gap-ratio));
		--nestopi-mobile-section-content-width: min(calc(var(--nestopi-front-hero-quick-links-width) * var(--nestopi-card-area-mobile-ratio)), calc(100vw - ((var(--nestopi-mobile-side-gap-min) + 8px) * 2)));
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: calc(var(--nestopi-mobile-section-content-width) + (var(--nestopi-front-hero-quick-links-padding-x) * 2));
		padding: 24px var(--nestopi-front-hero-quick-links-padding-x);
		margin-top: -2px;
		margin-bottom: 0;
	}

	.nestopi-front-hero__grunge--bottom {
		margin-top: -2px;
	}

	.nestopi-front-hero__quick-link {
		padding: 10px 12px;
		font-size: 14px;
	}

	.nestopi-games__heading {
		left: 4%;
	}

	.nestopi-new-products,
	.nestopi-news {
		--nestopi-front-layout-width: min(920px, max(390px, calc(100vw + 120px)));
		--nestopi-section-art-width: var(--nestopi-front-layout-width);
		--nestopi-section-card-padding-x: calc(var(--nestopi-section-art-width) * var(--nestopi-card-area-mobile-padding-ratio));
		--nestopi-new-products-card-gap: calc(var(--nestopi-section-art-width) * var(--nestopi-card-area-mobile-gap-ratio));
		--nestopi-mobile-section-content-width: min(calc(var(--nestopi-section-art-width) * var(--nestopi-card-area-mobile-ratio)), calc(100vw - ((var(--nestopi-mobile-side-gap-min) + 8px) * 2)));
		--nestopi-new-products-card-grid-width: calc(var(--nestopi-mobile-section-content-width) + (var(--nestopi-section-card-padding-x) * 2));
		--nestopi-section-panel-width: var(--nestopi-mobile-section-content-width);
		--nestopi-new-products-card-grid-left: calc(((var(--nestopi-front-layout-width) - var(--nestopi-mobile-section-content-width)) * 0.5) - var(--nestopi-section-card-padding-x));
		width: var(--nestopi-front-layout-width);
		padding-top: calc((var(--nestopi-section-art-width) * 0.15) + 24px);
		padding-bottom: 56px;
		left: 50%;
		margin-right: 0;
		margin-left: 0;
		transform: translateX(-50%);
	}

	.nestopi-news {
		padding-bottom: 0;
	}

	.nestopi-new-products__heading,
	.nestopi-news__heading {
		left: 4%;
	}

	.nestopi-new-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: var(--nestopi-new-products-card-grid-width);
		padding-top: calc(var(--nestopi-section-art-width) * 0.098405);
	}

	.nestopi-new-products .nestopi-product-card__image {
		margin: 8px;
	}

	.nestopi-news__inner {
		padding-top: calc(var(--nestopi-section-art-width) * 0.098405);
	}

	.nestopi-news__panel {
		padding: 20px 24px 18px;
		border-radius: 12px;
	}

	.nestopi-news__chara {
		top: 0;
		right: -11.3%;
		width: 31%;
		transform: translateY(-58.8%);
	}

	.nestopi-news-item {
		position: relative;
		gap: 8px;
		padding-bottom: 14px;
		border-bottom-width: 0;
	}

	.nestopi-news-item::after {
		position: absolute;
		right: -16px;
		bottom: 0;
		left: -16px;
		border-bottom: 1px solid var(--nestopi-color-black);
		content: "";
	}

	.nestopi-news-item + .nestopi-news-item {
		padding-top: 18px;
	}

	.nestopi-news-item__date {
		position: relative;
		left: -8px;
		min-width: 124px;
		min-height: 24px;
		padding: 2px 14px;
		font-size: 13px;
	}

	.nestopi-news-item__title,
	.nestopi-news__empty {
		font-size: 13px;
		line-height: 1.55;
	}

	.nestopi-news__empty {
		padding-bottom: 14px;
		border-bottom-width: 1px;
	}

	.nestopi-footer-transition__img {
		height: 92px;
	}

	.nestopi-site-footer__inner {
		padding: 30px 24px 28px;
	}

	.nestopi-site-footer__links {
		gap: 3px 5px;
	}

	.nestopi-site-footer__link-item {
		gap: 5px;
	}

	body .site-footer.nestopi-site-footer a.nestopi-site-footer__link:not(.button):not(.components-button) {
		font-size: 10px;
		line-height: 1.4;
	}

	.nestopi-site-footer__separator {
		font-size: 8px;
	}

	.nestopi-site-footer__logo {
		margin-top: 18px;
	}

	.nestopi-site-footer__logo-img {
		width: 72px;
	}

	.nestopi-site-footer__copyright {
		margin-top: 12px;
		font-size: 7px;
	}
}
