* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #050505;
	color: #00ff88;
	font-family: "Courier New", monospace;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Animated background grid */
.grid {
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(rgba(0,255,136,.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0,255,136,.08) 1px, transparent 1px);
	background-size: 40px 40px;
	animation: drift 15s linear infinite;
}

@keyframes drift {
	from { transform: translateY(0); }
	to { transform: translateY(40px); }
}

.container {
	position: relative;
	width: min(800px, 90vw);
	padding: 40px;
	border: 1px solid rgba(0,255,136,.4);
	background: rgba(0,0,0,.75);
	box-shadow:
		0 0 15px rgba(0,255,136,.3),
		0 0 40px rgba(0,255,136,.15);
	backdrop-filter: blur(4px);
}

.header {
	color: #ffffff;
	font-size: 1.1rem;
	letter-spacing: 3px;
	margin-bottom: 25px;
	text-transform: uppercase;
}

#message {
	font-size: 1.4rem;
	line-height: 1.8;
	min-height: 250px;
	white-space: pre-wrap;
}

.cursor {
	display: inline-block;
	width: 10px;
	animation: blink .8s infinite;
}

@keyframes blink {
	50% { opacity: 0; }
}

a {
	color: #7fffd4;
	text-decoration: none;
	border-bottom: 1px dotted #7fffd4;
}

a:hover {
	color: white;
}

.scanline {
	position: fixed;
	left: 0;
	right: 0;
	height: 2px;
	background: rgba(0,255,136,.3);
	animation: scan 4s linear infinite;
}

@keyframes scan {
	from { top: -5px; }
	to { top: 100%; }
}