/* .cool-overlay class is removed as the overlay is no longer used */
.cool-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(120deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 0, 150, 0.2) 100%);
	z-index: -1;
	pointer-events: none;
	mix-blend-mode: lighten;
}
body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	min-width: 100vw;
	overflow: hidden;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: url("../images/TheTripletAdventures.png") center center/cover no-repeat;
	z-index: -2;
	filter: none;
	transition: none;
}

.container {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-shadow: 0 2px 16px #000, 0 0 8px #ff00ff99;
}

h1 {
	font-size: 3rem;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
	animation: neon-glow 2s infinite alternate;
}

@keyframes neon-glow {
	from {
		text-shadow: 0 2px 16px #000, 0 0 8px #ff00ff99;
	}
	to {
		text-shadow: 0 2px 32px #fff, 0 0 24px #00fff7cc;
	}
}

.button {
	background: rgba(255, 0, 150, 0.7);
	border: none;
	color: #fff;
	padding: 1rem 2rem;
	font-size: 1.2rem;
	border-radius: 2rem;
	box-shadow: 0 4px 32px #ff00ff55;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}
.button:hover {
	background: #00fff7cc;
	color: #222;
	transform: scale(1.08) rotate(-2deg);
}
:root {
	color-scheme: light dark;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.4;
}

.container {
	max-width: 720px;
	margin: 0 auto;
	padding: 48px 20px;
}

.message {
	padding: 12px 14px;
	border: 1px solid rgba(127, 127, 127, 0.35);
	border-radius: 10px;
	background: rgba(127, 127, 127, 0.08);
}

.button {
	margin-top: 14px;
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid rgba(127, 127, 127, 0.35);
	background: rgba(127, 127, 127, 0.12);
	cursor: pointer;
}

.button:active {
	transform: translateY(1px);
}
