@font-face {
  font-family: 'VCR OSD Mono';
  src: url('../fonts/VCR_OSD_MONO_1.001.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'VCR OSD Mono', monospace;
	background: 
		linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)),
		url("../img/bg.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 20px;
	box-sizing: border-box;
}

.container {
	width: 100%;
	max-width: 600px;
	height: auto;
	min-height: 500px;
	border: 3px solid white;
	position: relative;
	transition: transform;
	background: 
		linear-gradient(to top, rgb(40, 0, 0) 0%, rgb(0, 0, 0) 20%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 25px 20px 60px 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.title {
	padding: 1px 10px;
	background: rgba(0, 0, 0, 0);
	border-radius: 8px;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

.title p {
	margin: 0;
	color: white;
	font-size: clamp(1.2rem, 5vw, 2rem);
	line-height: 1.4;
	white-space: normal;
	text-align: center;
}

.button-container {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 20px 0;
	box-sizing: border-box;
}

.nav-btn {
	background: none;
	border: none;
	color: white;
	font-size: clamp(0.85rem, 3vw, 1rem);
	cursor: pointer;
	padding: 8px 12px;
	transition: transform 0.3s ease, color 0.3s ease;
	font-family: "VCR OSD Mono", monospace;
	white-space: nowrap;
}

.nav-btn:hover {
	transform: scale(1.2);
}

.nav-btn:focus {
	outline: none;
}

.nav-btn.active {
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
}

.inner-container {
	width: 100%;
	max-width: 400px;
	padding: 16px;
	background: rgba(0, 0, 0, 0);
	border-radius: 8px;
	box-sizing: border-box;
	margin: 0 auto;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.inner-container p {
	margin: 0;
	color: white;
	font-size: clamp(0.85rem, 3.5vw, 1rem);
	line-height: 1.6;
}

.footer {
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	font-size: clamp(0.65rem, 2.5vw, 0.8rem);
}

.footer p1, .footer a {
	margin: 0;
	color: rgba(255, 255, 255, 0);
}

.footer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.3);
}


/* Mobile shitshow */
@media (max-width: 768px) {
	body {
		padding: 10px;
	}
	
	.container {
		border: 2px solid white;
		min-height: 450px;
		padding: 20px 15px 60px 15px;
	}
	
	.button-container {
		gap: 10px;
		padding: 15px 0;
	}
	
	.inner-container {
		padding: 12px;
	}
}

@media (max-width: 480px) {
	.container {
		min-height: 400px;
		padding: 15px 10px 50px 10px;
	}
	
	.button-container {
		gap: 8px;
		padding: 12px 0;
	}
	
	.nav-btn {
		padding: 6px 10px;
	}
	
	.nav-btn:hover {
		transform: scale(1.1);
	}
}