body {
	background-color: #0a0a12;
	color: white;
	font-family: 'Courier New', monospace;
	overflow-x: hidden;
	position: relative;
}

.menu {
	width: 200px;
	float: left;
	padding: 20px;
	background: rgba(10, 10, 25, 0.8);
	border-right: 1px solid rgba(0, 217, 255, 0.3);
	height: 100vh;
	position: fixed;
	z-index: 100;
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
	transition: box-shadow 0.3s ease-in-out;
}

.menu a {
	display: block;
	color: cyan;
	padding: 10px;
	text-decoration: none;
	font-weight: bold;
	margin: 8px 0;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

.menu a:hover {
	background-color: rgba(0, 217, 255, 0.1);
	border-left: 3px solid #ff00aa;
	text-shadow: 0 0 10px #00d9ff;
}



.content {
	margin-left: 240px;
	padding: 30px;
	background: rgba(10, 10, 25, 0.85);
	min-height: 100vh;
	position: relative;
	z-index: 10;
	border-left: 1px solid rgba(255, 0, 170, 0.2);
}

table {
	border-collapse: collapse;
	width: 100%;
}

th,
td {
	border: 1px solid #444;
	padding: 8px;
	text-align: left;
}

th {
	background-color: rgba(17, 17, 34, 0.8);
}

input,
button,
textarea {
	background-color: #111;
	color: white;
	border: 1px solid #555;
	padding: 5px;
}

button:hover {
	background-color: cyan;
	color: black;
}

.month-overlay {
	position: fixed;
	bottom: 10px;
	right: 20px;
	background-color: rgba(0, 0, 0, 0.7);
	color: cyan;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 1.1em;
	font-weight: bold;
	font-family: 'Courier New', monospace;
}

.menu-logo {
	width: 100%;
	max-width: 180px;
	margin-bottom: 15px;
	border-radius: 10px;
	border: 1px solid rgba(0, 217, 255, 0.5);
	box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

h1,
h2 {
	color: cyan;
	text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

hr {
	border: none;
	height: 1px;
	background: linear-gradient(to right, cyan, magenta);
	margin: 25px 0;
	box-shadow: 0 0 10px rgba(255, 0, 170, 0.3);
}

.highlight {
	color: #ff00aa;
	text-shadow: 0 0 10px rgba(255, 0, 170, 0.7);
}

ul {
	list-style: none;
	padding-left: 20px;
}

ul li {
	margin: 12px 0;
	position: relative;
	padding-left: 20px;
}

ul li::before {
	content: "■";
	color: #ff00aa;
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 0.8em;
	text-shadow: 0 0 5px #ff00aa;
}

.centered {
	text-align: center;
	margin-top: 30px;
	font-size: 1.2em;
}

p {
	line-height: 1.6em;
	margin: 15px 0;
}

.discord-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 16px 10px;
	background: linear-gradient(45deg, #5865f2, #9b59b6);
	color: white;
	border-radius: 6px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.2s ease;
	margin-top: 25px;
	box-sizing: border-box;
	font-family: 'Courier New', monospace;
	font-size: 1.2em;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.discord-button:hover {
	background: linear-gradient(45deg, #4752c4, #8e44ad);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(88, 101, 242, 0.6);
}

.discord-icon {
	width: 28px;
	height: 28px;
	margin-right: 8px;
	margin-left: 6px;
	vertical-align: middle;
	filter: drop-shadow(0 0 2px white);
}

.discord-text {
	display: inline-block;
	vertical-align: middle;
}

.content:hover {
	box-shadow: 0 0 40px rgba(0, 217, 255, 0.2);
	transition: box-shadow 0.3s ease-in-out;
}

.menu:hover {
	box-shadow: 0 0 30px rgba(255, 0, 170, 0.2);
	transition: box-shadow 0.3s ease-in-out;
}

body::after {
	content: "";
	position: fixed;
	top: -100px;
	left: -100px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle closest-side,
			rgba(0, 217, 255, 0.1) 0%,
			transparent 100%);
	pointer-events: none;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 50%;
	filter: blur(10px);
	transform: translate(-50%, -50%);
}

body:hover::after {
	opacity: 1;
}

body.mouse-move::after {
	transform: translate(var(--mouse-x), var(--mouse-y));
	transition: transform 0.1s linear;
}

body {
	overflow-x: hidden;
}

.mouse-spotlight {
	position: fixed;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle,
			rgba(0, 217, 255, 0.4) 0%,
			rgba(0, 217, 255, 0.1) 50%,
			transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	filter: blur(20px);
	opacity: 0.8;
	mix-blend-mode: screen;
	display: none;
}

body:hover .mouse-spotlight {
	display: block;
}


@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.footer-overlay {
	position: fixed;
	left: 20px;
	bottom: 10px;
	background: rgba(10, 10, 25, 0.8);
	color: cyan;
	padding: 4px 8px;
	/* smaller padding */
	border-radius: 6px;
	font-family: 'Courier New', monospace;
	font-size: 0.75em;
	/* smaller text */
	border: 1px solid rgba(0, 217, 255, 0.4);
	box-shadow: 0 0 8px rgba(0, 217, 255, 0.3);
	z-index: 1000;
	user-select: none;
	display: flex;
	align-items: center;
	gap: 4px;
}

.footer-overlay .copyright {
	font-size: 1.5em;
	/* keep copyright symbol normal size */
	line-height: 1;
}

        .month-overlay {
            position: fixed;
            bottom: 10px;
            right: 20px;
            background: rgba(10, 10, 25, 0.8);
            color: cyan;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: bold;
            font-family: 'Courier New', monospace;
            border: 1px solid rgba(0, 217, 255, 0.5);
            box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
            text-shadow: 0 0 5px rgba(0, 217, 255, 0.7);
            z-index: 100;
        }

@media (max-width: 768px) {
	.menu {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: center;
		float: none;
		box-sizing: border-box;
		width: 100%;
		height: auto;
		position: relative;
		border-right: none;
		border-bottom: 1px solid rgba(0, 217, 255, 0.3);
	}
	.menu a {
		display: inline-block;

	}

	.content {
		margin-left: 0px;
		padding: 20px;
		width: 100%;
		box-sizing: border-box;
	}

	.menu-logo {
		width: 100%;
		max-width: 120px;
		height: auto;
		margin: 0;
	}

	.discord-button {
		font-size: 1em;
		padding: 12px 8px;
		width: 100%;
		max-width: 150px;
	}

	h1 {
		font-size: 1.5em;
	}

	h2 {
		font-size: 1.2em;
	}

	p,
	li {
		font-size: 0.9em;
	}
	.footer-overlay {
		position: fixed;
		left: 10px;
		bottom: 5px;
		background: rgba(10, 10, 25, 0.8);
		color: cyan;
		padding: 2px 4px;
		border-radius: 6px;
		font-family: 'Courier New', monospace;
		font-size: 0.75em;
		border: 1px solid rgba(0, 217, 255, 0.4);
		box-shadow: 0 0 8px rgba(0, 217, 255, 0.3);
		z-index: 1000;
		user-select: none;
		display: flex;
		align-items: center;
		gap: 4px;
	}

	.footer-overlay .copyright {
		font-size: 0.7em;
		line-height: 0.5;
	}
        .month-overlay {
            position: fixed;
            bottom: 5px;
            right: 10px;
            background: rgba(10, 10, 25, 0.8);
            color: cyan;
            padding: 4px 6px;
            border-radius: 8px;
            font-size: 0.7em;
            font-weight: bold;
            font-family: 'Courier New', monospace;
            border: 1px solid rgba(0, 217, 255, 0.5);
            box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
            text-shadow: 0 0 5px rgba(0, 217, 255, 0.7);
            z-index: 100;
        }
}