body {
	background: #1a0033;
	color: #e0b3ff;
	font-family: 'Courier New', Courier, monospace;
	margin: 0;
	min-height: 100vh;
	overflow-x: hidden;
}
header {
	background: #3d0066;
	padding: 1em;
	text-align: center;
	box-shadow: 0 0 20px #ff66cc44;
	border-bottom: 2px solid #ff66cc;
}
nav a {
	color: #e0b3ff;
	margin: 0 1em;
	text-decoration: none;
	font-weight: bold;
	position: relative;
	text-shadow: 0 0 6px #ff66cc, 0 0 2px #00fff7;
	animation: flicker 2.5s infinite alternate;
}
nav a:hover {
	color: #ff66cc;
	text-shadow: 0 0 10px #ff66cc, 0 0 4px #00fff7;
}
@keyframes flicker {
	0%, 100% { opacity: 1; }
	45% { opacity: 0.8; }
	50% { opacity: 0.5; }
	55% { opacity: 0.8; }
	60% { opacity: 1; }
}
main {
	max-width: 600px;
	margin: 2em auto;
	background: linear-gradient(135deg, #2a004d 80%, #3d0066 100%);
	padding: 2em;
	border-radius: 10px;
	box-shadow: 0 0 20px #ff66cc, 0 0 40px #00fff744;
	border: 2px solid #ff66cc;
	position: relative;
	overflow: hidden;
}
h1 {
	font-size: 2.5em;
	letter-spacing: 2px;
}
h2 {
	color: #ff66cc;
	text-shadow: 0 0 8px #ff66cc, 0 0 2px #00fff7;
}
/* Make all links bright yellow for visibility */
a {
	color: #fff700;
	transition: color 0.2s;
}
nav a {
	color: #fff700;
}
nav a:hover {
	color: #ff66cc;
}
ul {
	list-style: none;
	padding: 0;
}
li {
	margin: 0.5em 0;
}
iframe {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 0 12px #ff66cc44;
}
/* Glitchy scanline overlay for all main sections */
main::after {
	content: '';
	position: absolute;
	left: 0; top: 0; width: 100%; height: 100%;
	pointer-events: none;
	background: repeating-linear-gradient(to bottom, transparent 0 2px, #1a003355 2px 4px);
	opacity: 0.2;
	z-index: 2;
	animation: scanlines 1.5s linear infinite;
}
@keyframes scanlines {
	0% { background-position-y: 0; }
	100% { background-position-y: 8px; }
}
