:root {
	--green: #00bfff; /* Actuall y blue lol */
	--dim-green: #00063b;
	--bg-black: #050505;
}
body {
	background: var(--bg-black);
	color: var(--green);
	font-family: "IBM Plex Mono", monospace;
	margin: 0;
	overflow: hidden;
	height: 100vh;
}

/* CRT Overlay - Keep Z-index high */
body::before {
	content: " ";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.3) 50%),
		linear-gradient(
			90deg,
			rgba(255, 0, 0, 0.02),
			rgba(0, 255, 0, 0.01),
			rgba(0, 0, 255, 0.02)
		);
	z-index: 100;
	background-size: 100% 3px, 3px 100%;
	pointer-events: none;
}

/* The Terminal Container, aligned left prob */
.code-div {
	position: absolute;
	top: 0;
	left: 0;
	width: 30%;
	height: 100vh;
	background: rgba(5, 5, 5, 0.9); /* Semi-transparent black */
	padding: 40px;
	z-index: 20;
	overflow: hidden;
}

.ascii-art {
	font-size: 10px;
	line-height: 1.1;
	margin-bottom: 30px;
}

.line-meta {
	color: #555; /* Dim color for kernel logs */
	font-size: 0.8rem;
	margin: 2px 0;
}

.prompt {
	margin-top: 15px;
}
.response {
	color: #d8d8d8;
	text-shadow: 0 0 10px #fff;
}

/* Services */
.services-list {
	margin: 20px 0 20px 20px;
}
.service-item {
	margin-bottom: 8px;
}
.label {
	color: #9a9a9a;
	margin-right: 5px;
	font-size: 0.9rem;
}

.status-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #444;
	margin-right: 10px;
}
.online {
	background: var(--green);
	box-shadow: 0 0 10px var(--green);
}

/* Links */
a {
	color: var(--green);
	text-decoration: none;
	border-bottom: 1px solid var(--dim-green);
	transition: 0.2s;
}
a:hover {
	background: var(--green);
	color: black;
}

/* Parallax Melusine */
.parallax-container {
	position: absolute;
	right: 0;
	top: 0;
	width: 70%;
	height: 100vh;
	overflow: hidden;
	z-index: 1;
}

.melusine-bg {
	position: absolute;
	right: -10%;
	bottom: -10%;
	width: 110%; /* Slightly larger for movement room */
	height: 110%;
	object-fit: cover;
	opacity: 0.45;
	filter: contrast(110%) brightness(80%);
	transition: transform 0.3s ease-out; /* Smooths the parallax */
}

.cursor {
	animation: blink 1s infinite;
}

.attribution {
	position: fixed;
	bottom: 20px;
	right: 25px;
	z-index: 100;
	font-size: 0.7rem;
	letter-spacing: 1px;
	background: rgba(0, 0, 0, 0.6);
	padding: 5px 10px;
	border-right: 2px solid var(--green);
	backdrop-filter: blur(4px);
	pointer-events: auto;
}

.attr-label {
	color: #555; /* Dimmed text for the label */
	margin-right: 5px;
	font-weight: bold;
}

.attribution a {
	color: var(--green);
	text-decoration: none;
	opacity: 0.7;
	transition: all 0.3s ease;
	border: none; /* Removes the underline from previous link styles */
}

.attribution a:hover {
	opacity: 1;
	text-shadow: 0 0 8px var(--green);
	background: transparent;
	color: var(--green);
}

@media (max-width: 1200px) {
	.code-div {
		width: 50%;
	}
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}
