@charset "utf-8";

/* CSS Document */
body {
	margin: 0;
	background: #272822;
	min-height: 100vh;
	padding-top: 140px;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, #1a1a1a 0%, #272822 100%);
	padding: 40px 20px;
	text-align: center;
	border-bottom: 2px solid #00ff41;
	box-shadow: 0 4px 20px rgba(0, 255, 65, 0.3);
	z-index: 1000;
}

.site-header h1 {
	margin: 0;
	color: #00ff41;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 2.5em;
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.5), 0 0 20px rgba(0, 255, 65, 0.3);
	letter-spacing: 4px;
	font-weight: 300;
}

#app {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px 100px 20px;
}

pre[class*="language-"] {
	margin: 0;
	border-radius: 0;
	padding: 30px 0;
	background: transparent !important;
}

div.code-container {
	color: #f8f8f2;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	margin: 0 auto;
	line-height: 1.6;
	white-space: pre-wrap;
}

.user-prompt {
	color: #00ff41;
	text-align: center;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	margin: 30px 0;
	animation: blink 1.5s infinite;
	font-size: 1.1em;
}

@keyframes blink {

	0%,
	50% {
		opacity: 1;
	}

	51%,
	100% {
		opacity: 0.3;
	}
}

/* Hide all control elements */
.controls,
button {
	display: none !important;
}

.hidden {
	display: none;
}
