:root {
	--primary: #0e7dde;
	--link: #6741d9;
	--link-visited: #9c36b5;
	--bg: #f8f9fa;
	--bg-alt: #e9ecef;
	--text: #212529;
	--text-light: #6c757d;
	--border: #ced4da;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--bg);
}

body {
	margin: 0;
	font-family: 'IBM Plex Mono', monospace, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text);
	background: var(--bg);
}

main {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	margin-top: 60px;
	margin-bottom: 20px;
	line-height: 1.5;
}

h1 {
	font-size: 2.5rem;
	margin-top: 0;
}

h2 {
	font-size: 1.8rem;
	line-height: 1.6;
}

h3 {
	font-size: 1.3rem;
}

p {
	margin: 20px 0;
}

p, ul, ol, pre {
	margin: 20px 0;
}

strong {
	font-weight: 600;
}

/* Links */
a {
	color: var(--link);
	text-decoration: none;
}

a:before {
	content: "";
}

a:after {
	content: "";
}

a:hover {
	color: var(--link);
	text-decoration: underline;
}

a:not([href^="#"]):visited {
	color: var(--link-visited);
}

a:not([href^="#"]):visited:hover {
	color: var(--link-visited);
	text-decoration: underline;
}

/* Images & Media */
img, video {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

/* Lists */
ul, ol {
	padding-left: 1.5rem;
	margin: 20px 0;
}

li {
	margin: 10px 0;
}

/* Blockquotes */
blockquote {
	background: var(--bg-alt);
	border-left: 4px solid var(--text-light);
	margin: 30px 0;
	padding: 10px 10px 10px 30px;
}

blockquote p, blockquote ul, blockquote ol {
	margin: 14px 0;
}

/* Code */
code {
	font-family: 'IBM Plex Mono', monospace;
	background: var(--bg-alt);
	padding: 2px 6px;
	border-radius: 3px;
	font-size: 0.9em;
}

pre {
	background: var(--bg-alt);
	padding: 15px;
	border-radius: 4px;
	overflow-x: auto;
}

pre code {
	background: none;
	padding: 0;
}

/* Horizontal Rule */
hr {
	height: 1px;
	background: var(--border);
	border: none;
	margin: 40px 0;
}

/* Forms */
input, button {
	font-family: 'IBM Plex Mono', monospace;
	font-size: inherit;
	padding: 10px 12px;
	border: 1px solid var(--border);
	border-radius: 4px;
	background: white;
	color: var(--text);
	cursor: pointer;
}

input:focus, button:focus {
	outline: 2px solid var(--link);
	outline-offset: 2px;
}

button:hover {
	background: var(--link);
	color: white;
	border-color: var(--link);
}

/* Utility Classes */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Post Listing */
.post-item {
	margin: 30px 0;
	padding: 0;
	border: none;
	border-radius: 0;
}

.post-item a {
	display: inline;
	font-size: 1rem;
	font-weight: normal;
}

.post-meta {
	color: var(--text-light);
	font-size: 0.95rem;
	margin: 3px 0 8px 0;
}

.post-meta strong {
	color: var(--text);
}

.taxonomy-list {
	list-style: none;
	padding: 0;
	margin: 10px 0;
	display: inline;
}

.taxonomy-list li {
	display: inline;
	margin: 0;
}

.taxonomy-list a {
	display: inline;
	margin-right: 0;
	padding: 0;
	background: none;
	border-radius: 0;
	font-size: 1rem;
}

/* Page Header */
.page-header {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--border);
}

.page-header h1 {
	margin-bottom: 10px;
}

.page-title-desc {
	color: var(--text-light);
	font-size: 1.1rem;
}

/* Empty State */
.empty-state {
	text-align: center;
	padding: 40px 20px;
	color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
	main {
		padding: 20px 15px;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.post-item {
		padding: 0;
	}
}

/* Remove all animations */
* {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
}
