/* Base styles */
body {
	margin: 0;
	background: #181818;
	color: #ccc;
	font-family: Arial, sans-serif;
	line-height: 1.6;
}

#app {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	max-width: 920px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
nav {
	padding: 20px 0;
	border-bottom: 1px solid #333;
	margin-bottom: 30px;
}

nav a {
	color: #5a5;
	text-decoration: none;
	margin-right: 15px;
	padding: 5px 10px;
	border-radius: 4px;
}

nav a:hover {
	color: #9f9;
	background: rgba(90, 170, 90, 0.1);
}

nav a.active {
	color: #9f9;
	font-weight: bold;
}

/* Typography */
h1 {
	color: #fff;
	padding-bottom: 12px;
	margin-top: 0;
}

h2 {
	color: #fff;
	padding-bottom: 8px;
	margin-top: 30px;
}

p {
	margin: 16px 0;
}

a {
	color: #5a5;
	text-decoration: none;
}

a:hover {
	color: #9f9;
	text-decoration: underline;
}

/* Blog styles (unused for now) */
.note {
	background: #333;
	border-radius: 4px;
	margin: 16px 0;
	padding: 16px;
	font-size: 16px;
	font-style: italic;
}

pre, code {
	font-family: Consolas, monospace;
	background: #111;
	border-radius: 2px;
	padding: 2px 4px;
	color: #9f9;
	font-size: 16px;
	overflow-x: auto;
}

pre {
	padding: 8px;
	border: 1px solid #555;
}

/* Responsive design */
@media (max-width: 768px) {
	#app {
		padding: 0 15px;
	}

	h1 {
		font-size: 1.8em;
	}

	h2 {
		font-size: 1.4em;
	}
}
