:root {
	--utopia-ink: #071021;
	--utopia-ink-2: #0b1430;
	--utopia-panel: #f7f9ff;
	--utopia-paper: #ffffff;
	--utopia-line: rgba(83, 111, 255, 0.62);
	--utopia-blue: #2454ff;
	--utopia-cyan: #4de7ff;
	--utopia-violet: #7357ff;
	--utopia-pink: #ff5ccc;
	--utopia-text: #111827;
	--utopia-muted: #6b7280;
	--utopia-radius: 8px;
	--utopia-shadow: 0 18px 44px rgba(5, 12, 34, 0.24);
	--utopia-pixel: 4px;
	--utopia-cursor-size: 7px;
	--utopia-cursor-color: #6a7dff;
}

html.utopia-js,
html.utopia-js body {
	min-height: 100%;
}

body.utopia-home {
	margin: 0;
	background: #060b17;
	color: var(--utopia-text);
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	letter-spacing: 0;
}

body.utopia-home * {
	box-sizing: border-box;
}

.utopia-home a {
	color: inherit;
	text-decoration: none;
}

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

.utopia-home button,
.utopia-home input {
	font: inherit;
}

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

.utopia-site {
	min-height: 100vh;
	background:
		radial-gradient(circle at 78% 10%, rgba(116, 87, 255, 0.22), transparent 32rem),
		linear-gradient(180deg, #f5f7ff 0, #071021 44rem, #071021 100%);
	overflow: hidden;
}

.utopia-header {
	position: sticky;
	top: 0;
	z-index: 30;
	display: grid;
	grid-template-columns: minmax(13rem, 1fr) auto minmax(8rem, 1fr);
	align-items: center;
	min-height: 74px;
	padding: 0 clamp(18px, 4vw, 58px);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(11, 20, 48, 0.08);
	box-shadow: 0 8px 24px rgba(8, 15, 37, 0.08);
}

.utopia-header__brand {
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 900;
	letter-spacing: 0;
	color: #050914;
}

.utopia-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(22px, 3vw, 52px);
	font-weight: 800;
	font-size: 0.95rem;
	color: #10182c;
}

.utopia-header__nav a {
	position: relative;
	padding: 28px 0;
}

.utopia-header__nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	height: 2px;
	background: var(--utopia-blue);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.utopia-header__nav a:hover::after,
.utopia-header__nav a:focus-visible::after {
	transform: scaleX(1);
}

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

.utopia-icon-button {
	position: relative;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #071021;
	cursor: pointer;
}

.utopia-icon-button:focus-visible {
	outline: 3px solid rgba(36, 84, 255, 0.45);
	outline-offset: 2px;
}

.utopia-icon-button__svg {
	width: 30px;
	height: 30px;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2.25;
	stroke-linecap: round;
	stroke-linejoin: round;
	overflow: visible;
}

.utopia-icon-button__svg path,
.utopia-icon-button__svg circle,
.utopia-icon-button__svg line {
	fill: none !important;
	stroke: currentColor !important;
}

.utopia-menu-line {
	transform-box: fill-box;
	transform-origin: center;
	transition: transform 260ms ease, opacity 180ms ease;
}

.utopia-icon-button--menu[aria-expanded="true"] .utopia-menu-line--top {
	transform: translateY(5px) rotate(45deg);
}

.utopia-icon-button--menu[aria-expanded="true"] .utopia-menu-line--middle {
	opacity: 0;
}

.utopia-icon-button--menu[aria-expanded="true"] .utopia-menu-line--bottom {
	transform: translateY(-5px) rotate(-45deg);
}

.utopia-icon-button--menu {
	width: 58px;
	height: 52px;
	grid-template-rows: 28px auto;
	gap: 1px;
}

.utopia-icon-button--menu .utopia-icon-button__svg {
	width: 30px;
	height: 30px;
}

.utopia-icon-button__label {
	display: block;
	color: #071021;
	font-size: 0.62rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.utopia-search {
	position: absolute;
	top: calc(100% + 10px);
	right: clamp(18px, 4vw, 58px);
	display: flex;
	gap: 8px;
	width: min(420px, calc(100vw - 36px));
	padding: 12px;
	background: #ffffff;
	border: 1px solid var(--utopia-line);
	border-radius: var(--utopia-radius);
	box-shadow: var(--utopia-shadow);
}

.utopia-search[hidden],
.utopia-search:not(.is-open):not(.is-closing) {
	display: none !important;
}

.utopia-search.is-open {
	display: flex !important;
}

.utopia-search input {
	flex: 1;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid rgba(11, 20, 48, 0.2);
	border-radius: 6px;
}

.utopia-search button {
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: var(--utopia-blue);
	color: #ffffff;
	font-weight: 800;
	cursor: pointer;
}

.utopia-mobile-nav {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	display: grid;
	gap: 1px;
	padding: 12px clamp(18px, 4vw, 58px) 18px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 22px 36px rgba(5, 12, 34, 0.16);
	transform-origin: top;
}

.utopia-mobile-nav[hidden],
.utopia-mobile-nav:not(.is-open):not(.is-closing) {
	display: none !important;
}

.utopia-mobile-nav.is-open,
.utopia-mobile-nav.is-closing {
	display: grid !important;
}

.utopia-mobile-nav.is-open {
	animation: utopia-menu-open 300ms ease-out both;
}

.utopia-mobile-nav.is-closing {
	animation: utopia-menu-close 260ms ease-in both;
}

.utopia-mobile-nav a {
	padding: 14px 12px;
	border-bottom: 1px solid rgba(11, 20, 48, 0.08);
	border-radius: 6px;
	font-weight: 800;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.utopia-mobile-nav a:hover,
.utopia-mobile-nav a:focus-visible {
	background: rgba(36, 84, 255, 0.1);
	color: #173ed3;
	transform: translateX(4px);
	outline: 0;
}

@keyframes utopia-menu-open {
	from {
		opacity: 0;
		transform: translateY(-12px) scaleY(0.94);
	}

	to {
		opacity: 1;
		transform: translateY(0) scaleY(1);
	}
}

@keyframes utopia-menu-close {
	from {
		opacity: 1;
		transform: translateY(0) scaleY(1);
	}

	to {
		opacity: 0;
		transform: translateY(-12px) scaleY(0.94);
	}
}

@keyframes utopia-scroll-hint {
	0%,
	100% {
		transform: translateX(0);
		opacity: 0.72;
	}

	50% {
		transform: translateX(5px);
		opacity: 1;
	}
}

@keyframes utopia-scroll-hint-arrow {
	0%,
	100% {
		transform: translateX(0) rotate(45deg);
		opacity: 0.72;
	}

	50% {
		transform: translateX(5px) rotate(45deg);
		opacity: 1;
	}
}

.utopia-main {
	color: #ffffff;
}

.utopia-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
	min-height: clamp(560px, 64vw, 720px);
	padding: clamp(42px, 7vw, 74px) clamp(22px, 5vw, 70px) 152px;
	background:
		linear-gradient(90deg, rgba(4, 8, 20, 0.9) 0%, rgba(7, 16, 33, 0.72) 43%, rgba(7, 16, 33, 0.18) 100%),
		radial-gradient(circle at 70% 25%, rgba(115, 87, 255, 0.46), transparent 18rem),
		radial-gradient(circle at 38% 28%, rgba(77, 231, 255, 0.16), transparent 20rem),
		linear-gradient(135deg, #060b17 0%, #0b1430 54%, #151041 100%);
	border-bottom: 1px solid rgba(115, 87, 255, 0.4);
	overflow: hidden;
}

.utopia-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(77, 231, 255, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(77, 231, 255, 0.08) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(90deg, #000 0%, transparent 86%);
	opacity: 0.5;
}

.utopia-hero::after {
	content: "";
	position: absolute;
	left: 7%;
	right: 8%;
	bottom: 0;
	height: 170px;
	background:
		linear-gradient(90deg, rgba(36, 84, 255, 0.14), rgba(255, 92, 204, 0.1)),
		linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.65) 100%);
	clip-path: polygon(4% 18%, 24% 3%, 54% 16%, 76% 0, 98% 24%, 100% 100%, 0 100%);
	opacity: 0.72;
}

.utopia-hero__grid {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 28% 36%, rgba(77, 231, 255, 0.12) 0 1px, transparent 2px),
		radial-gradient(circle at 18% 58%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
		radial-gradient(circle at 84% 18%, rgba(255, 92, 204, 0.2) 0 1px, transparent 2px);
	background-size: 18px 18px, 28px 28px, 34px 34px;
	opacity: 0.62;
	pointer-events: none;
}

.utopia-hero__copy,
.utopia-hero__media {
	position: relative;
	z-index: 2;
}

.utopia-hero__copy {
	align-self: center;
	padding-bottom: 22px;
}

.utopia-kicker,
.utopia-hero__tag {
	display: inline-block;
	margin: 0 0 22px;
	padding: 6px 14px;
	background: linear-gradient(90deg, var(--utopia-blue), var(--utopia-violet));
	box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.14);
	font-size: 0.82rem;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0.08em;
}

.utopia-hero__title {
	margin: 0;
	font-size: clamp(4.6rem, 10vw, 9.3rem);
	line-height: 0.92;
	font-weight: 950;
	letter-spacing: 0;
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.utopia-hero__title span {
	display: block;
}

.utopia-hero__title strong {
	color: var(--utopia-violet);
	font-size: 1.28em;
}

.utopia-hero__lead {
	margin: 24px 0 32px;
	font-weight: 800;
	line-height: 1.9;
}

.utopia-hero__message {
	display: inline-block;
	margin: 0;
	padding: 16px 26px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	background: rgba(0, 0, 0, 0.34);
	clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
	font-size: clamp(1.35rem, 2.3vw, 2rem);
	font-weight: 900;
	letter-spacing: 0.12em;
}

.utopia-hero__media {
	align-self: end;
	min-height: 560px;
	display: grid;
	align-items: end;
}

.utopia-hero__media img {
	position: relative;
	z-index: 2;
	width: min(620px, 58vw);
	margin-left: auto;
	object-fit: contain;
	filter: drop-shadow(0 0 32px rgba(115, 87, 255, 0.5));
}

.utopia-hero__character-fallback {
	position: relative;
	z-index: 2;
	width: min(440px, 52vw);
	aspect-ratio: 0.72 / 1;
	margin-left: auto;
	border: 1px solid rgba(77, 231, 255, 0.38);
	background:
		radial-gradient(circle at 50% 16%, rgba(177, 154, 255, 0.72) 0 16%, transparent 17%),
		radial-gradient(circle at 50% 34%, rgba(115, 87, 255, 0.4) 0 22%, transparent 23%),
		linear-gradient(135deg, rgba(9, 16, 36, 0.24), rgba(115, 87, 255, 0.14));
	clip-path: polygon(20% 0, 78% 0, 100% 100%, 0 100%);
	filter: drop-shadow(0 0 32px rgba(115, 87, 255, 0.5));
	opacity: 0.88;
}

.utopia-hero__character-fallback span {
	position: absolute;
	left: 24%;
	right: 24%;
	bottom: 0;
	height: 54%;
	background: linear-gradient(135deg, rgba(11, 20, 48, 0.84), rgba(0, 0, 0, 0.62));
	border: 1px solid rgba(255, 92, 204, 0.42);
	clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}

.utopia-hero__gpu {
	position: absolute;
	left: -8%;
	top: 28%;
	z-index: 1;
	width: clamp(180px, 22vw, 300px);
	height: clamp(82px, 10vw, 130px);
	display: grid;
	place-items: center;
	border: 1px solid rgba(77, 231, 255, 0.6);
	background:
		radial-gradient(circle at 22% 50%, rgba(77, 231, 255, 0.34), transparent 38px),
		linear-gradient(135deg, rgba(10, 18, 42, 0.94), rgba(0, 0, 0, 0.7));
	box-shadow: 0 0 28px rgba(115, 87, 255, 0.36);
	transform: rotate(-14deg);
	font-weight: 900;
	color: rgba(255, 255, 255, 0.72);
	letter-spacing: 0.24em;
}

.utopia-category {
	position: relative;
	z-index: 4;
	width: 100%;
	max-width: 1440px;
	margin: -138px auto 18px;
	padding: 0 14px;
}

.utopia-category::before,
.utopia-category::after {
	display: none;
}

.utopia-category__tabs {
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	gap: 0;
	filter: drop-shadow(0 18px 18px rgba(4, 8, 20, 0.24));
}

.utopia-category-tab {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	min-height: 176px;
	margin-left: -10px;
	padding: 30px 34px 26px 58px;
	border: 1px solid rgba(13, 23, 54, 0.14);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 242, 255, 0.98));
	color: #071021;
	clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
	cursor: pointer;
	text-align: left;
	box-shadow: 0 12px 28px rgba(5, 12, 34, 0.18);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.utopia-category-tab:first-child {
	margin-left: 0;
	padding-left: 62px;
}

.utopia-category-tab::before {
	content: "";
	position: absolute;
	top: 12px;
	right: 18px;
	width: 56px;
	height: 38px;
	background-image: radial-gradient(var(--utopia-blue) 2px, transparent 2px);
	background-size: 8px 8px;
	opacity: 0.75;
}

.utopia-category-tab:hover,
.utopia-category-tab:focus-visible,
.utopia-category-tab.is-active {
	transform: translateY(-9px);
	border-color: rgba(77, 231, 255, 0.95);
	box-shadow: 0 0 0 2px rgba(115, 87, 255, 0.7), 0 0 26px rgba(77, 231, 255, 0.48);
	outline: 0;
	z-index: 2;
}

.utopia-category-tab.is-active {
	background: linear-gradient(135deg, #1b4dff, #744fff);
	color: #ffffff;
}

.utopia-category-tab__number {
	display: block;
	margin-bottom: 18px;
	color: var(--utopia-blue);
	font-size: clamp(1.25rem, 1.45vw, 1.6rem);
	font-style: italic;
	font-weight: 950;
}

.utopia-category-tab.is-active .utopia-category-tab__number {
	color: #ffffff;
	text-shadow: 3px 3px 0 rgba(5, 12, 34, 0.35);
}

.utopia-category-tab__label {
	display: block;
	max-width: 100%;
	font-size: clamp(1.28rem, 1.72vw, 1.95rem);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.16;
	white-space: nowrap;
}

.utopia-category-tab__arrow {
	display: none;
}

.utopia-category__bubble {
	display: none;
}

.utopia-category__bubble::before {
	display: none;
}

.utopia-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
	gap: 22px;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px 28px;
}

.utopia-panel,
.utopia-side-card,
.utopia-guide,
.utopia-recent {
	border: 1px solid var(--utopia-line);
	border-radius: var(--utopia-radius);
	background: rgba(248, 250, 255, 0.97);
	color: var(--utopia-text);
	box-shadow: 0 0 0 2px rgba(115, 87, 255, 0.25), var(--utopia-shadow);
}

.utopia-panel {
	padding: 18px;
	background:
		linear-gradient(#f9fbff, #f9fbff) padding-box,
		linear-gradient(135deg, var(--utopia-cyan), var(--utopia-violet)) border-box;
	border: 1px solid transparent;
}

.utopia-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.utopia-section-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: #172252;
	font-size: clamp(1.25rem, 2.2vw, 1.72rem);
	letter-spacing: 0.08em;
}

.utopia-section-title > span:first-child {
	width: 22px;
	height: 22px;
	background:
		linear-gradient(90deg, var(--utopia-blue) 50%, transparent 50%),
		linear-gradient(var(--utopia-violet) 50%, transparent 50%);
	background-size: 8px 8px;
	box-shadow: 4px 4px 0 rgba(115, 87, 255, 0.22);
}

.utopia-post-panel[hidden] {
	display: none;
}

.utopia-post-panel.is-animating {
	animation: utopia-panel-soft-in 260ms ease both;
}

@keyframes utopia-panel-soft-in {
	from {
		opacity: 0;
		filter: blur(5px);
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0);
	}
}

.utopia-more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 18px;
	border: 1px solid rgba(13, 23, 54, 0.24);
	border-radius: 4px;
	background: #ffffff;
	color: #122ec4;
	box-shadow: 4px 4px 0 rgba(36, 84, 255, 0.14);
	font-size: 0.86rem;
	font-weight: 900;
	white-space: nowrap;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.utopia-more-link:hover,
.utopia-more-link:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(36, 84, 255, 0.64);
	box-shadow: 0 0 18px rgba(77, 231, 255, 0.28), 4px 4px 0 rgba(36, 84, 255, 0.18);
	outline: 0;
}

.utopia-post-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.utopia-post-card {
	position: relative;
	min-width: 0;
	border: 1px solid rgba(36, 84, 255, 0.42);
	border-radius: 6px;
	background: #ffffff;
	box-shadow: 5px 5px 0 rgba(36, 84, 255, 0.12);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.utopia-post-card::before,
.utopia-post-card::after {
	content: "";
	position: absolute;
	z-index: 2;
	width: 14px;
	height: 14px;
	border-color: var(--utopia-cyan);
	border-style: solid;
	pointer-events: none;
}

.utopia-post-card::before {
	top: 4px;
	left: 4px;
	border-width: 2px 0 0 2px;
}

.utopia-post-card::after {
	right: 4px;
	bottom: 4px;
	border-width: 0 2px 2px 0;
}

.utopia-post-card:hover,
.utopia-post-card:focus-within {
	transform: translateY(-5px);
	border-color: rgba(77, 231, 255, 0.92);
	box-shadow: 0 0 22px rgba(77, 231, 255, 0.35), 5px 5px 0 rgba(36, 84, 255, 0.18);
}

.utopia-post-card__thumb {
	aspect-ratio: 1.52 / 1;
	background: #071021;
	overflow: hidden;
}

.utopia-post-card__thumb img,
.utopia-recent__thumb img,
.utopia-popular__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.utopia-post-card:hover .utopia-post-card__thumb img,
.utopia-post-card:focus-within .utopia-post-card__thumb img {
	transform: scale(1.06);
}

.utopia-post-card__body {
	position: relative;
	display: grid;
	gap: 8px;
	padding: 10px 10px 14px;
}

.utopia-post-card__tag {
	position: absolute;
	top: -24px;
	left: 9px;
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 2px 9px;
	background: linear-gradient(90deg, var(--utopia-blue), var(--utopia-violet));
	color: #ffffff;
	border-radius: 4px 4px 0 0;
	font-size: 0.72rem;
	font-weight: 900;
}

.utopia-post-card h3 {
	display: -webkit-box;
	min-height: 3.2em;
	margin: 2px 0 0;
	font-size: 0.92rem;
	line-height: 1.55;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.utopia-post-card time,
.utopia-recent time,
.utopia-popular time {
	color: #28334c;
	font-size: 0.78rem;
	font-weight: 700;
}

.utopia-thumb-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(36, 84, 255, 0.24), rgba(115, 87, 255, 0.22)),
		linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
		#071021;
	background-size: auto, 14px 14px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.utopia-sidebar {
	display: grid;
	gap: 18px;
	align-content: start;
}

.utopia-side-card {
	padding: 22px;
}

.utopia-side-card h2,
.utopia-recent h2 {
	margin: 0 0 18px;
	color: #121a33;
	font-size: 1.18rem;
	letter-spacing: 0.08em;
}

.utopia-youtube {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	overflow: hidden;
	background:
		radial-gradient(circle at 72% 22%, rgba(255, 92, 204, 0.28), transparent 7rem),
		linear-gradient(135deg, #071021, #111a3b);
	box-shadow: inset 0 0 0 1px rgba(77, 231, 255, 0.28);
}

.utopia-youtube iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.utopia-youtube--empty {
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 800;
}

.utopia-youtube__title {
	margin: 14px 0 10px;
	font-weight: 850;
	line-height: 1.7;
}

.utopia-text-link {
	color: #173ed3;
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.utopia-popular {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: popular;
}

.utopia-popular li a {
	position: relative;
	display: grid;
	grid-template-columns: 34px 92px minmax(0, 1fr);
	grid-template-rows: auto auto;
	gap: 3px 10px;
	align-items: center;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(11, 20, 48, 0.12);
}

.utopia-popular li:last-child a {
	padding-bottom: 0;
	border-bottom: 0;
}

.utopia-popular__rank {
	grid-row: 1 / 3;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	background: #071021;
	color: #ffffff;
	border: 1px solid var(--utopia-line);
	font-size: 0.82rem;
	font-weight: 900;
}

.utopia-popular__thumb {
	grid-row: 1 / 3;
	aspect-ratio: 1.4 / 1;
	border-radius: 4px;
	overflow: hidden;
	background: #071021;
}

.utopia-popular__title {
	min-width: 0;
	font-size: 0.88rem;
	font-weight: 850;
	line-height: 1.45;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.utopia-bottom {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
	gap: 16px;
	margin-top: 18px;
}

.utopia-guide {
	min-height: 350px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(3, 8, 20, 0.92), rgba(3, 8, 20, 0.45)),
		radial-gradient(circle at 76% 42%, rgba(77, 231, 255, 0.26), transparent 9rem),
		linear-gradient(135deg, #071021, #10173a);
	color: #ffffff;
}

.utopia-guide a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 350px;
	padding: clamp(24px, 4vw, 36px);
}

.utopia-guide a::after {
	content: "";
	position: absolute;
	right: -3%;
	top: 16%;
	width: 48%;
	aspect-ratio: 0.75 / 1;
	border: 1px solid rgba(77, 231, 255, 0.42);
	background:
		linear-gradient(90deg, rgba(77, 231, 255, 0.09) 1px, transparent 1px),
		linear-gradient(rgba(77, 231, 255, 0.09) 1px, transparent 1px),
		linear-gradient(135deg, rgba(11, 20, 48, 0.86), rgba(0, 0, 0, 0.4));
	background-size: 18px 18px, 18px 18px, auto;
	clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
	opacity: 0.82;
}

.utopia-guide__tag {
	width: fit-content;
	margin-bottom: 18px;
	padding: 6px 12px;
	border: 1px solid rgba(77, 231, 255, 0.58);
	border-radius: 4px;
	background: rgba(36, 84, 255, 0.5);
	font-size: 0.78rem;
	font-weight: 900;
}

.utopia-guide h2 {
	position: relative;
	z-index: 1;
	max-width: 460px;
	margin: 0;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.35;
	letter-spacing: 0.04em;
}

.utopia-guide p {
	position: relative;
	z-index: 1;
	max-width: 420px;
	margin: 18px 0 26px;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.9;
}

.utopia-guide__button {
	position: relative;
	z-index: 1;
	display: inline-flex;
	width: fit-content;
	padding: 12px 24px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 6px;
	background: var(--utopia-blue);
	font-weight: 900;
}

.utopia-recent {
	padding: 22px;
}

.utopia-recent ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.utopia-recent__more {
	margin-top: 16px;
	width: 100%;
}

.utopia-recent li a {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	grid-template-rows: auto auto;
	gap: 3px 10px;
	align-items: center;
}

.utopia-recent__thumb {
	grid-row: 1 / 3;
	aspect-ratio: 1.45 / 1;
	border-radius: 4px;
	overflow: hidden;
	background: #071021;
}

.utopia-recent span {
	font-size: 0.88rem;
	font-weight: 850;
	line-height: 1.45;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.utopia-empty {
	display: grid;
	place-items: center;
	min-height: 170px;
	margin: 0;
	border: 1px dashed rgba(36, 84, 255, 0.38);
	border-radius: 6px;
	background: rgba(36, 84, 255, 0.05);
	color: #26345d;
	font-weight: 900;
}

.utopia-footer {
	background:
		linear-gradient(180deg, rgba(10, 16, 34, 0.96), #050914),
		#050914;
	color: rgba(255, 255, 255, 0.8);
	border-top: 1px solid rgba(77, 231, 255, 0.22);
}

.utopia-footer__inner {
	display: grid;
	grid-template-columns: 1fr 2fr 1.4fr;
	gap: 24px;
	max-width: 1240px;
	margin: 0 auto;
	padding: 28px 20px 16px;
}

.utopia-footer__brand {
	font-weight: 900;
	color: #ffffff;
}

.utopia-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	justify-content: center;
	font-size: 0.86rem;
}

.utopia-footer__inner nav:last-child {
	justify-content: flex-end;
}

.utopia-footer__copy {
	margin: 0;
	padding: 14px 20px 24px;
	text-align: center;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.68);
}

.utopia-intro {
	display: none;
}

.utopia-js .utopia-intro {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(180deg, #02050d, #071021);
	background-size: 100% 5px, auto;
	color: #ffffff;
	opacity: 1;
	transition: opacity 260ms ease, visibility 260ms ease;
}

.utopia-intro.is-finished {
	opacity: 0;
	visibility: hidden;
}

.utopia-intro__panel {
	position: relative;
	width: min(520px, calc(100vw - 44px));
	padding: 34px 28px;
	border: 1px solid rgba(77, 231, 255, 0.62);
	background:
		radial-gradient(circle at 85% 20%, rgba(115, 87, 255, 0.24), transparent 8rem),
		rgba(3, 8, 20, 0.92);
	box-shadow: 0 0 42px rgba(36, 84, 255, 0.32);
}

.utopia-intro__dots {
	position: absolute;
	right: 18px;
	top: 18px;
	width: 70px;
	height: 42px;
	background-image: radial-gradient(var(--utopia-cyan) 2px, transparent 2px);
	background-size: 10px 10px;
	opacity: 0.82;
}

.utopia-intro__label {
	margin: 0 0 22px;
	font-weight: 950;
	letter-spacing: 0.08em;
}

.utopia-intro__bar {
	height: 14px;
	padding: 2px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	background: rgba(255, 255, 255, 0.06);
}

.utopia-intro__bar span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--utopia-blue), var(--utopia-cyan));
	animation: utopia-loading 1300ms steps(12, end) forwards;
}

@keyframes utopia-loading {
	to {
		width: 100%;
	}
}

.utopia-cursor {
	--trail-x: -100px;
	--trail-y: -100px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9998;
	width: 34px;
	height: 34px;
	border: 2px solid rgba(77, 231, 255, 0.62);
	border-radius: 50%;
	background: rgba(115, 87, 255, 0.05);
	box-shadow: 0 0 18px rgba(77, 231, 255, 0.22);
	transform: translate3d(var(--trail-x), var(--trail-y), 0) translate(-50%, -50%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 120ms ease, box-shadow 120ms ease;
}

.utopia-cursor::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 16px;
	border-left: 1px solid rgba(255, 255, 255, 0.46);
	border-top: 1px solid rgba(255, 255, 255, 0.46);
	transform: translate(-50%, -50%) rotate(45deg);
	opacity: 0.7;
}

.utopia-cursor::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.75);
	transform: translate(-50%, -50%);
}

.utopia-cursor.is-visible {
	opacity: 0.62;
}

.utopia-cursor.is-link {
	border-color: rgba(255, 92, 204, 0.82);
	box-shadow: 0 0 22px rgba(255, 92, 204, 0.38);
}

@media (max-width: 1120px) {
	.utopia-header {
		grid-template-columns: 1fr auto;
	}

	.utopia-header__nav {
		display: none;
	}

	.utopia-mobile-nav.is-open {
		display: grid !important;
	}

	.utopia-hero {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
	}

	.utopia-category__tabs {
		overflow-x: auto;
		padding: 8px 22px 14px 8px;
		justify-content: flex-start;
		scroll-snap-type: x proximity;
		scroll-padding-left: 8px;
		-webkit-overflow-scrolling: touch;
		mask-image: linear-gradient(90deg, #000 0%, #000 84%, transparent 100%);
		scrollbar-color: var(--utopia-blue) rgba(255, 255, 255, 0.22);
		scrollbar-width: thin;
	}

	.utopia-category__tabs::-webkit-scrollbar {
		height: 8px;
	}

	.utopia-category__tabs::-webkit-scrollbar-track {
		background: rgba(255, 255, 255, 0.18);
		border-radius: 999px;
	}

	.utopia-category__tabs::-webkit-scrollbar-thumb {
		background: linear-gradient(90deg, var(--utopia-blue), var(--utopia-violet));
		border-radius: 999px;
	}

	.utopia-category-tab {
		flex: 0 0 218px;
		min-width: 218px;
		min-height: 150px;
		margin-left: -10px;
		scroll-snap-align: start;
	}

	.utopia-content {
		grid-template-columns: minmax(0, 1fr);
	}

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

@media (max-width: 820px) {
	.utopia-header {
		min-height: 64px;
		padding-inline: 16px;
	}

	.utopia-hero {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 42px 18px 92px;
	}

	.utopia-hero__copy {
		padding-bottom: 24px;
	}

	.utopia-hero__media {
		min-height: 360px;
		margin-top: -24px;
	}

	.utopia-hero__media img {
		width: min(430px, 92vw);
	}

	.utopia-hero__gpu {
		left: 0;
		top: 8%;
		width: 180px;
		height: 76px;
	}

	.utopia-category {
		margin-top: -82px;
		padding-inline: 12px;
	}

	.utopia-category::after {
		content: "";
		position: absolute;
		right: 8px;
		top: 52%;
		z-index: 5;
		display: block;
		width: 34px;
		height: 34px;
		border: 1px solid rgba(77, 231, 255, 0.56);
		border-radius: 999px;
		background: rgba(7, 16, 33, 0.86);
		box-shadow: 0 0 18px rgba(77, 231, 255, 0.38);
		pointer-events: none;
		animation: utopia-scroll-hint 1300ms ease-in-out infinite;
	}

	.utopia-category::before {
		content: "";
		position: absolute;
		right: 22px;
		top: calc(52% + 10px);
		z-index: 6;
		display: block;
		width: 9px;
		height: 9px;
		border-top: 3px solid #ffffff;
		border-right: 3px solid #ffffff;
		filter: drop-shadow(0 0 6px rgba(77, 231, 255, 0.8));
		pointer-events: none;
		transform: rotate(45deg);
		animation: utopia-scroll-hint-arrow 1300ms ease-in-out infinite;
	}

	.utopia-post-grid,
	.utopia-bottom,
	.utopia-sidebar,
	.utopia-footer__inner {
		grid-template-columns: 1fr;
	}

	.utopia-footer nav,
	.utopia-footer__inner nav:last-child {
		justify-content: flex-start;
	}

	.utopia-post-card__thumb img,
	.utopia-recent__thumb img,
	.utopia-popular__thumb img {
		object-fit: cover;
		object-position: center center;
		background: #071021;
	}

	.utopia-post-card__thumb {
		aspect-ratio: 16 / 9;
	}

	.utopia-recent__thumb,
	.utopia-popular__thumb {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 560px) {
	.utopia-header__brand {
		font-size: 1.05rem;
	}

	.utopia-icon-button {
		width: 40px;
		height: 40px;
	}

	.utopia-icon-button--menu {
		width: 52px;
		height: 48px;
	}

	.utopia-hero__title {
		font-size: clamp(3.2rem, 18vw, 5.2rem);
	}

	.utopia-hero__lead {
		font-size: 0.95rem;
	}

	.utopia-hero__message {
		width: 100%;
		font-size: 1.1rem;
		letter-spacing: 0.06em;
	}

	.utopia-category__bubble {
		display: none;
	}

	.utopia-category-tab {
		flex-basis: 186px;
		min-width: 186px;
		min-height: 132px;
		padding: 20px 22px 18px 38px;
	}

	.utopia-category-tab__label {
		font-size: 1.17rem;
	}

	.utopia-content {
		padding-inline: 12px;
	}

	.utopia-panel,
	.utopia-side-card,
	.utopia-recent {
		padding: 16px;
	}

	.utopia-post-card h3 {
		min-height: auto;
	}

	.utopia-popular li a {
		grid-template-columns: 32px 82px minmax(0, 1fr);
	}

	.utopia-recent li a {
		grid-template-columns: 78px minmax(0, 1fr);
	}
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
	.utopia-cursor {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.utopia-js .utopia-intro {
		display: none;
	}

	.utopia-intro__bar span,
	.utopia-post-card,
	.utopia-category-tab,
	.utopia-post-card__thumb img,
	.utopia-mobile-nav.is-open,
	.utopia-mobile-nav.is-closing,
	.utopia-category::before,
	.utopia-category::after {
		animation: none;
		transition: none;
	}
}
