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;
}

.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);
	-moz-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;

	img {
		border-radius: 16px;
	}
}

.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%;
	}
}

img {
	width: 100%;
	height: 100%;
}

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

img.head {
	width: 5em;
	width: 5em;
	border-radius: 0;
}
