body.pillar-page {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #ffffff;
    position: relative;
    min-height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.navbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(12, 16, 22, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0.6rem 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.navbar-logo a {
	font-weight: 700;
	font-size: 2.0rem;
	text-decoration: none;
	color: #f9fafb;
	letter-spacing: 0.03em;
}

.navbar-links {
	margin-left: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.navbar-links a {
	text-decoration: none;
	padding: 0.35rem 0.75rem;
	border-radius: 10px;
	font-size: 0.9rem;
	color: #d1d5db;
	border: 1px solid transparent;
	transition:
		background-color 120ms ease,
		color 120ms ease,
		border-color 120ms ease,
		transform 80ms ease;
}

.navbar-links a:hover {
	background: #00fbff33;
	border-color: #00fcff;
	color: #e5edff;
}

.menu-toggle {
	display: none;
	margin-left: auto;
	font-size: 1.6rem;
	color: #f9fafb;
	cursor: pointer;
	user-select: none;
}

@media (max-width: 640px) {
	.navbar-inner {
		position: relative;
		padding: 0.6rem 1rem;
	}

	.menu-toggle {
		display: block;
	}

	.navbar-links {
		display: flex;
		flex-direction: column;

		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		margin-left: 0;
		padding: 0 1rem 0.4rem;

		background: rgba(12, 16, 22, 0.98);
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		gap: 0.4rem;

		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transform: translateY(-8px);
		pointer-events: none;
		transition:
			max-height 0.25s ease,
			opacity 0.2s ease,
			transform 0.25s ease;
	}

	.navbar-links.open {
		max-height: 300px;
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
		padding-top: 0.5rem;
		padding-bottom: 0.8rem;
	}

	.navbar-links a {
		width: 100%;
		padding: 0.45rem 0;
	}
}

.pillar {
	width: min(900px, 95vw);
	margin: 1.5rem auto 2rem auto;
	padding: 1.5rem 1.25rem;
	background: rgba(11, 15, 20, 0.75) 100%;
	border-radius: 16px;
	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.7),
		0 0 0 1px rgba(255, 255, 255, 0.03);

	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	gap: 1rem;
}

@media (min-width: 768px) {
	.pillar {
		margin-top: 2rem;
		padding: 2rem 2.25rem;
	}
}

@media (max-width: 640px) {
	.pillar {
		margin: 1rem auto 1.5rem auto;
		padding: 1.25rem 1rem;
	}
}

.pillar h1,
.pillar h2,
.pillar h3,
.pillar h4 {
	margin: 0;
	color: #f9fafb;
}

.pillar h1 {
	margin: 0;
	font-size: 1.6rem;
}

.pillar p {
	margin: 0;
	color: #d1d5db;
}

.pillar a {
	color: var(--secondary);
	text-decoration: none;
}

.pillar a:hover {
	text-decoration: underline;
}

.pillar ul {
	margin: 0;
}

.pillar-footer {
	margin: 0 auto 1.5rem auto;
	font-size: 0.8rem;
	color: #ffffff;
	text-align: center;
	text-shadow:
		0 0 4px #000,
		0 0 10px #000,
		0 0 20px #000,
		1px 1px 2px #000,
		-1px -1px 2px #000
}

@media (max-width: 640px) {
	.pillar-footer {
		width: 95%;
	}
}

.rounded-container {
	background: rgba(15, 20, 30, 0.55);
	padding: 0.6rem 0.8rem;
	border-radius: 16px;

	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 2px 12px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.03);

	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	width: 50%;
	transition:
		box-shadow 0.35s ease,
		border-color 0.35s ease;

	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	gap: 0.4rem;
}

.rounded-container:hover {
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow:
		0 0 8px #00fbff1c,
		0 0 16px #00fbff1e,
		0 0 28px #00fbff1e;
}

.rounded-container.disabled {
	opacity: 50%;
}

.rounded-container.disabled:hover {
	box-shadow: none;
}

@media (max-width: 640px) {
	.rounded-container {
		width: 100%;
	}
}

.rounded-container input[type="text"],
.rounded-container input[type="number"],
.rounded-container input[type="email"],
.rounded-container input[type="password"] {
	width: 100%;
	box-sizing: border-box;
	background: rgba(15, 20, 30, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.rounded-container input[type="submit"] {
	width: 100%;
	box-sizing: border-box;
}

.rounded-container ul {
	text-align: left !important;
	width: 100%;
}

a.blue,
a.blue:visited {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

a.blue:hover {
    background-color: #2980b9;
}

.image {
	max-width: 75%;
	height: auto;
	border-radius: 10px;
}

.navbar-inner {
	height: 3.75rem;
	margin: 0 auto;
	padding: 0 1rem;

	display: flex;
	align-items: center;
	gap: 1rem;
}

.navbar-logo {
	display: flex;
	align-items: center;
	height: 100%;
}

.navbar-logo a {
	text-decoration: none;
	color: #f9fafb;
}

.logo-9b9t {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	height: 40px;
	line-height: 1;

	font-weight: 800;
	font-size: 32px;
	letter-spacing: -2px;
	color: white;

	transform: translateY(4px);
}

.logo-left,
.logo-right {
	display: inline-block;
	line-height: 1;
}

.logo-left {
	transform: rotate(180deg) translateY(-1px);
	transform-origin: center;
}

.logo-right {
	transform: translateY(-5px);
}

.color-1 {
	color: var(--primary);
}

.color-2 {
	color: var(--secondary);
}

.logo-9b9t,
.logo-left-wrapper,
.logo-right-wrapper {
	transition:
		transform 0.18s ease,
		filter 0.18s ease,
		text-shadow 0.18s ease;
}

.logo-9b9t:hover {
	filter: drop-shadow(0 0 8px rgb(var(--secondary-rgb) / 0.53));
	text-shadow:
		0 0 6px oklch(from var(--secondary) calc(l - 0.27) calc(c - 0.02) calc(h + 35) / 0.31),
		0 0 12px rgb(from var(--secondary) r g calc(b - 1) / 0.247);

	.logo-left-wrapper {
		transform: translateY(5px) scale(1.03);
	}

	.logo-right-wrapper {
		transform: translateY(-5px) scale(1.03);
	}
}
