* {
	cursor: none !important;
	margin: 0;
	padding: 0;
}

:root {
	--accent: #7eb8c9;
	--accent-soft: rgba(126, 184, 201, 0.14);
	--accent-glow: rgba(126, 184, 201, 0.3);
	--card-bg: rgba(12, 18, 28, 0.6);
	--card-border: rgba(126, 184, 201, 0.16);
	--card-radius: 16px;
	--text-primary: #e8eef2;
	--text-secondary: #8fa8b8;
	--text-muted: #4a6070;
}

/* pointer */
.pointer {
	--width: 2rem;
	--height: 2rem;
	position: fixed;
	top: calc(var(--height) / -2);
	left: calc(var(--width) / -2);
	width: var(--width);
	height: var(--height);
	transition:
		transform 0.18s ease-out,
		width 0.2s ease-out,
		height 0.2s ease-out;
	pointer-events: none;
	z-index: 100;
}

.pointer-dot {
	position: fixed;
	top: 0;
	left: 0;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	margin-left: -2px;
	background-color: rgb(210, 210, 210);
	border-radius: 50%;
	pointer-events: none;
	z-index: 100;
	transition:
		transform 0.2s ease-out,
		background-color 0.3s ease-in-out;
}

.pointer div {
	position: absolute;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 0;
	border-width: 0.14rem;
	border-color: rgb(210, 210, 210);
}

.pointer div:nth-child(1) {
	top: 0;
	left: 0;
	border-top-style: solid;
	border-left-style: solid;
}

.pointer div:nth-child(2) {
	top: 0;
	right: 0;
	border-top-style: solid;
	border-right-style: solid;
}

.pointer div:nth-child(3) {
	bottom: 0;
	left: 0;
	border-bottom-style: solid;
	border-left-style: solid;
}

.pointer div:nth-child(4) {
	bottom: 0;
	right: 0;
	border-bottom-style: solid;
	border-right-style: solid;
}

/* body */
body {
	font-family: "Noto Sans", "Noto Sans SC", sans-serif;
	min-height: 100vh;
	color: var(--text-primary);
	background-color: #080d14;
	background-size: cover;
	background-position: center 0%;
}

body::before {
	content: "";
	inset: 0;
	position: fixed;
	background:
		radial-gradient(
			ellipse 80% 60% at 50% 0%,
			rgba(8, 30, 50, 0.55) 0%,
			transparent 70%
		),
		linear-gradient(
			to bottom,
			rgba(4, 10, 20, 0.72) 0%,
			rgba(4, 10, 20, 0.45) 50%,
			rgba(4, 10, 20, 0.88) 100%
		);
	z-index: -1;
}

.page {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
}

header {
	position: relative;
	padding-left: 48px;
	padding-top: 28px;
}

header #site-name {
	text-align: left;
	font-weight: 300;
	letter-spacing: 2px;
	color: var(--text-secondary);
}

/* main */
.main {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	padding: 48px 24px;
}

.main .title {
	text-align: center;
}

.main .title h1 {
	font-size: clamp(2rem, 5vw, 3.8rem);
	font-weight: 400;
	letter-spacing: 0.3rem;
	animation: slideInFromLeft 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.main .title p {
	font-size: 0.8rem;
	font-weight: 300;
	color: var(--text-secondary);
	letter-spacing: 0.2rem;
	margin-top: 12px;
	animation: fadeUp 1s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav-panel {
	margin-top: 100px;
}

.nav-panel ul {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-evenly; */
	justify-content: center;
	gap: 1.5rem 3rem;
	list-style: none;
}

.nav-panel li {
	font-size: 1.5rem;
	text-align: center;
	/* width: 12rem; */
	width: clamp(9rem, 40vw, 12rem);
	height: 3.5rem;
	/* padding: 1rem 1.7rem; */
	border-width: 2px;
	border-radius: var(--card-radius);
	border-style: solid;
	border-color: var(--card-border);
	background-color: var(--card-bg);
	backdrop-filter: blur(10px);
	word-break: keep-all;
	animation: fadeUp 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
	transition:
		transform 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.nav-panel li:hover {
	color: #c8e6f0;
	background-color: var(--accent-soft);
	border-color: var(--accent);
	/* transform: translateX(4px) translateY(-2px) scale(1.03); */
	box-shadow: 0 0 10px var(--accent-glow);
}

.nav-panel .nav-link {
	font-size: 20px;
	font-weight: 300;
	color: var(--text-primary);
	letter-spacing: 0.03em;
	text-decoration: none;
	width: 100%;
	height: 100%;
	padding: 1rem 1.7rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* footer */
.footer {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 22px 24px 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(4, 10, 20, 0.5);
	backdrop-filter: blur(10px);
}

#footer-icp {
	font-size: 12px;
	color: var(--text-muted);
	letter-spacing: 0.06em;
}

#footer-icp a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.2s;
}

#footer-icp a:hover {
	color: var(--text-secondary);
}

#footer-copyright {
	margin-top: 5px;
	font-size: 11px;
	color: var(--text-muted);
	opacity: 0.55;
}

@keyframes slideInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
