@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap');

body {
	margin: 0;
	font-family: 'Rajdhani', monospace, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #010a01;
	color: #39ff14;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	text-shadow:
		0 0 5px #39ff14,
		0 0 10px #39ff14,
		0 0 20px #00ff00,
		0 0 30px #00ff00;
}

.container {
	max-width: 600px;
	background-color: #002800;
	border-radius: 15px;
	box-shadow:
		0 0 10px #39ff14,
		0 0 20px #00ff00,
		0 0 30px #00ff00;
	padding: 2.5rem;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	border: 2px solid #39ff14;
}

.logo {
	width: 120px;
	height: 120px;
	object-fit: contain;
	border-radius: 50%;
	margin-bottom: 1.5rem;
	border: 3px solid #39ff14;
	box-shadow:
		0 0 8px #39ff14,
		0 0 15px #00ff00;
	background-color: #010a01;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.1);
	box-shadow:
		0 0 12px #39ff14,
		0 0 25px #00ff00,
		0 0 40px #00ff00;
}

h1 {
	font-size: 2.8rem;
	margin-bottom: 0.5rem;
	color: #39ff14;
	text-shadow:
		0 0 3px #39ff14,
		0 0 6px #00ff00,
		0 0 9px #00ff00;
	letter-spacing: 1.5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

h2 {
	font-weight: 400;
	color: #6eff6e;
	margin-top: 0;
	margin-bottom: 2rem;
	font-size: 1.3rem;
	text-shadow:
		0 0 3px #6eff6e,
		0 0 6px #40ff40;
}

p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 1.2rem;
	color: #7fff7f;
	text-shadow:
		0 0 3px #7fff7f;
}

footer {
	margin-top: auto;
	font-size: 0.9rem;
	color: #3fff3f;
	text-align: center;
	padding: 1rem 0 0 0;
	width: 100%;
	text-shadow:
		0 0 3px #3fff3f;
}

@media (max-width: 480px) {
	body {
		padding: 1rem;
	}

	.container {
		padding: 1.8rem;
	}

	.logo {
		width: 90px;
		height: 90px;
		margin-bottom: 1rem;
	}

	h1 {
		font-size: 1.6rem;
		white-space: normal;
		/* allow wrapping */
		word-break: break-word;
	}

	h2 {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	p {
		font-size: 1rem;
	}
}

button {
	font-family: 'Rajdhani', monospace, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	color: #39ff14;
	background-color: transparent;
	border: 2px solid #39ff14;
	border-radius: 10px;
	padding: 0.7rem 1.8rem;
	cursor: pointer;
	text-shadow:
		0 0 5px #39ff14,
		0 0 10px #39ff14,
		0 0 20px #00ff00;
	box-shadow:
		0 0 5px #39ff14,
		0 0 10px #00ff00;
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

button:hover,
button:focus {
	background-color: #39ff14;
	color: #002800;
	border-color: #00ff00;
	box-shadow:
		0 0 10px #00ff00,
		0 0 20px #39ff14,
		0 0 30px #00ff00;
	outline: none;
}

.button-row {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}

.button-row button {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	font-size: 14px;
	cursor: pointer;
}

.button-row img {
	height: 16px;
	margin-right: 8px;
	vertical-align: middle;
}