/* Reset and base */
*,
*::before,
*::after {
	box-sizing: border-box;
}
body,
html {
	margin: 0;
	padding: 0;
	background: #0a0a1a;
	color: #eee;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	height: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
}

header {
	background: #111126;
	padding: 1.2rem 2rem;
	text-align: center;
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 2px;
	color: #7fffd4;
	box-shadow: 0 2px 8px rgba(127, 255, 212, 0.4);
	user-select: none;
	z-index: 3;
	position: relative;
}

header,
nav.navbar-desktop,
nav.navbar-mobile {
	width: 100vw;
	padding: 1.2rem 2rem;
	min-height: auto;
	display: flex;
	align-items: center;
}

main {
	position: relative;
	flex: 1 0 auto;
	padding: 2rem 1.5rem;
	overflow: hidden;
	background: #0a0a1a;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	z-index: 0;
}

main .content-text {
	position: relative;
	max-width: 700px;
	z-index: 10;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.6rem;
	background: rgba(10, 10, 26, 0.75);
	padding: 1.5rem 2rem;
	border-radius: 12px;
	box-shadow: 0 0 40px #4fffe599;
	color: #dffefe;
	user-select: text;
}

footer {
	background: #111126;
	text-align: center;
	padding: 1rem 1rem;
	color: #7fffd4;
	font-size: 0.9rem;
	box-shadow: 0 -2px 8px rgba(127, 255, 212, 0.3);
	user-select: none;
	z-index: 3;
	position: relative;
}

#auroraCanvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	mix-blend-mode: screen;
	background: transparent;
	display: block;
}

/* Desktop Navbar */
.navbar-desktop {
	justify-content: space-between;
	background: #111126;
	/* box-shadow: 0 2px 8px rgba(127, 255, 212, 0.4); */
	user-select: none;
	position: relative;
	z-index: 3;
	/* border: 2px solid #7fffd4; */
	border-radius: 8px;
	height: 4rem;
}

.navbar-desktop .navbar-title {
	color: #7fffd4;
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 2px;
	margin: 0;
}

.navbar-desktop .navbar-links {
	list-style: none;
	display: flex;
	flex-direction: row;
	margin: 0;
	padding: 0;
}

.navbar-desktop .navbar-links li {
	margin-left: 1.5rem;
}

.navbar-desktop .navbar-links a {
	color: #7fffd4;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
	position: relative;
}

.navbar-desktop .navbar-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background-color: #4fffe5;
	transition: width 0.3s ease;
	border-radius: 2px;
}

.navbar-desktop .navbar-links a:hover::after,
.navbar-desktop .navbar-links a:focus::after {
	width: 100%;
}

.navbar-desktop .navbar-links a:hover,
.navbar-desktop .navbar-links a:focus {
	color: #4fffe5;
	outline: none;
}

/* Mobile Navbar */
.navbar-mobile-top {
	display: none;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	background: #111126;
	/* border: 2px solid #7fffd4; */
	/* border-radius: 0 0 8px 8px; */
	box-shadow: 0 0px 8px rgba(127, 255, 212, 0.4);
	user-select: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 6rem;
	z-index: 1001;
}

.navbar-mobile-top .navbar-title {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: #7fffd4;
	margin: 0;
	cursor: default;
}

.navbar-toggle {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 22px;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
	background-color: rgba(127, 255, 212, 0.2);
	outline: none;
	border-radius: 6px;
}

.navbar-toggle .bar {
	height: 3px;
	width: 100%;
	background-color: #7fffd4;
	border-radius: 10px;
	transition: background-color 0.3s ease;
}

.navbar-toggle:hover .bar,
.navbar-toggle:focus .bar {
	background-color: #4fffe5;
}

.navbar-mobile-bottom {
	display: none;
	position: fixed;
	top: 3.5rem;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #111126;
	z-index: 1000;
	box-sizing: border-box;
	overflow-y: auto;
	border-radius: 0 0 8px 8px;
}

.navbar-links {
	display: none;
	flex-direction: column;
	padding: 2rem 0;
	justify-content: flex-start;
	align-items: center;
	overflow-y: auto;
}

.navbar-mobile-bottom.active {
	display: block;
}

.navbar-mobile-bottom.active .navbar-links {
	display: flex;
}

.navbar-links li {
	margin: 1.5rem 0;
	text-align: center;
	font-size: 1.5rem;
	width: 100%;
	padding-left: 0;
}

.navbar-links a {
	color: #7fffd4;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
	position: relative;
}

.navbar-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background-color: #4fffe5;
	transition: width 0.3s ease;
	border-radius: 2px;
}

.navbar-links a:hover::after,
.navbar-links a:focus::after {
	width: 100%;
}

.navbar-links a:hover,
.navbar-links a:focus {
	color: #4fffe5;
	outline: none;
}

@media (max-width: 768px) {
	.navbar-desktop {
		display: none !important;
	}

	.navbar-mobile-top {
		display: flex !important;
	}

	.navbar-mobile-bottom {
		display: none;
	}

	.navbar-mobile-bottom.active {
		display: block;
	}
}

@media (min-width: 769px) {
	.navbar-desktop {
		display: flex !important;
	}

	.navbar-mobile-top {
		display: none !important;
	}

	.navbar-mobile-bottom {
		display: none !important;
	}
}
